:root {
  --primary: #120011;
  --secondary: #ffd900;
  --text: #534c53;
  --accent: #4691ff;
  --background: #fff6e5;
  --background-secondary: #f8efdd;
  --surface: #fffaf0;
  --border: rgba(18, 0, 17, 0.12);
  --shadow: 0 24px 60px rgba(18, 0, 17, 0.12);
  --shadow-soft: 0 12px 30px rgba(18, 0, 17, 0.08);
  --radius: 22px;
  --radius-lg: 30px;
  --container: 1180px;
  --sticky-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 217, 0, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(70, 145, 255, 0.1), transparent 24%),
    var(--background);
  color: var(--text);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: calc(var(--sticky-height) + 28px);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(70, 145, 255, 0.45);
  outline-offset: 2px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section--alt {
  background: var(--background-secondary);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--secondary);
  border-top: 4px solid var(--primary);
  border-bottom: 1px solid rgba(18, 0, 17, 0.15);
  backdrop-filter: blur(12px);
}

.topbar__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand__mark {
  width: 176px;
  height: 58px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  flex: 0 0 auto;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0);
  transform-origin: left center;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  border: 1px solid rgba(18, 0, 17, 0.85);
  background: rgba(255, 246, 229, 0.9);
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 0 rgba(18, 0, 17, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(18, 0, 17, 0.12);
  background: #fff9ee;
}

.header-cta__icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 2px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  line-height: 1;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-heading--left {
  text-align: left;
  margin: 0 0 30px;
}

.section-heading h2,
.hero h1,
.pricing-card__name,
.info-card h3 {
  font-family: "Arial Narrow", "Inter Tight", Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-heading h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(2rem, 4.3vw, 3.75rem);
  line-height: 0.9;
}

.section-heading p {
  margin: 16px auto 0;
  max-width: 650px;
}

.hero {
  padding-top: 42px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.hero__copy {
  max-width: 650px;
}

.hero h1 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(3rem, 7vw, 6.45rem);
  line-height: 0.88;
}

.hero__lead {
  margin: 22px 0 0;
  max-width: 58ch;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn--primary {
  background: var(--secondary);
  color: var(--primary);
}

.btn--secondary {
  background: var(--primary);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  border-color: rgba(18, 0, 17, 0.18);
  color: var(--primary);
}

.btn--full {
  width: 100%;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(18, 0, 17, 0.12);
  background: rgba(255, 255, 255, 0.54);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
}

.hero__info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero__info > div {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.8);
  border: 1px solid rgba(18, 0, 17, 0.08);
}

.hero__label {
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.hero__info strong {
  color: var(--primary);
  font-size: 0.95rem;
}

.hero__visual {
  position: relative;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(18, 0, 17, 0.04), rgba(18, 0, 17, 0.02));
  border: 1px solid rgba(18, 0, 17, 0.08);
  box-shadow: var(--shadow);
}

.hero-card__badge {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(18, 0, 17, 0.92);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-card__image {
  width: 100%;
  aspect-ratio: 0.84;
  object-fit: cover;
  border-radius: 24px;
}

.hero-card__overlay {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 246, 229, 0.9);
  border: 1px solid rgba(18, 0, 17, 0.08);
  backdrop-filter: blur(8px);
}

.hero-card__overlay span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 3px;
}

.hero-card__overlay strong {
  display: block;
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.3;
}

.overlay-link {
  flex: 0 0 auto;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 240, 0.92);
  border: 1px solid rgba(18, 0, 17, 0.1);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 217, 0, 0.6);
}

.pricing-card--featured {
  background: linear-gradient(180deg, #fffdf5 0%, #fff7d7 100%);
  border-color: rgba(255, 217, 0, 0.65);
  transform: translateY(-10px);
}

.featured-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pricing-card__name {
  margin: 0;
  color: var(--primary);
  font-size: 1.7rem;
  line-height: 1;
  padding-right: 86px;
}

.pricing-card__price {
  color: var(--primary);
  font-family: "Arial Narrow", "Inter Tight", Inter, sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.9;
  font-weight: 900;
}

.pricing-card__desc {
  margin: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 4px rgba(255, 217, 0, 0.14);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-card {
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid rgba(18, 0, 17, 0.08);
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: start;
}

.contact-panel,
.info-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid rgba(18, 0, 17, 0.1);
  box-shadow: var(--shadow-soft);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span,
.info-list dt {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 0, 17, 0.14);
  border-radius: 18px;
  background: #fff;
  color: var(--primary);
  padding: 15px 16px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(70, 145, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(70, 145, 255, 0.12);
}

.contact-form__message {
  grid-column: 1 / -1;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.info-card h3 {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 0.96;
}

.info-list {
  margin: 0;
  display: grid;
  gap: 16px;
}

.info-list div {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(18, 0, 17, 0.08);
}

.info-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-list dd {
  margin: 6px 0 0;
  color: var(--primary);
  font-weight: 600;
}

.info-card__actions {
  margin-top: 22px;
}

.page-hero {
  padding: 54px 0 72px;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.page-copy {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 240, 0.92);
  border: 1px solid rgba(18, 0, 17, 0.1);
  box-shadow: var(--shadow-soft);
}

.page-copy h1 {
  margin: 0;
  color: var(--primary);
  font-family: "Arial Narrow", "Inter Tight", Inter, sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5.3vw, 4.8rem);
  line-height: 0.92;
}

.page-copy p {
  margin: 16px 0 0;
  font-size: 1.02rem;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 240, 0.92);
  border: 1px solid rgba(18, 0, 17, 0.1);
  box-shadow: var(--shadow-soft);
}

.page-card h2 {
  margin: 0 0 18px;
  color: var(--primary);
  font-family: "Arial Narrow", "Inter Tight", Inter, sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.95;
}

.page-card__note {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 217, 0, 0.14);
  border: 1px solid rgba(255, 217, 0, 0.35);
  color: var(--primary);
  font-weight: 600;
}

.thankyou-shell {
  min-height: calc(100vh - 180px);
  display: grid;
  place-items: center;
  padding: 54px 0 90px;
}

.thankyou-card {
  width: min(100%, 760px);
  padding: 34px;
  border-radius: 34px;
  background: rgba(255, 250, 240, 0.96);
  border: 1px solid rgba(18, 0, 17, 0.1);
  box-shadow: var(--shadow);
  text-align: center;
}

.thankyou-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.thankyou-card h1 {
  margin: 18px 0 0;
  color: var(--primary);
  font-family: "Arial Narrow", "Inter Tight", Inter, sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.9;
}

.thankyou-card p {
  max-width: 56ch;
  margin: 18px auto 0;
  font-size: 1.03rem;
}

.thankyou-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.footer {
  padding: 36px 0 22px;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.88);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__brand .brand__mark {
  width: 96px;
  height: 58px;
  background: transparent;
}

.footer__brand strong {
  display: block;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__brand p {
  margin: 4px 0 0;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.72);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 700;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 60;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(18, 0, 17, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.sticky-cta__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 1 1 0;
  min-height: 56px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 246, 229, 0.92);
  color: var(--primary);
  text-align: center;
  border: 1px solid rgba(18, 0, 17, 0.08);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.sticky-cta__item:hover {
  transform: translateY(-2px);
  background: #fffdf6;
}

.sticky-cta__item--accent {
  background: var(--secondary);
  color: var(--primary);
  border-color: transparent;
}

.sticky-cta__item--accent span {
  color: rgba(18, 0, 17, 0.72);
}

.sticky-cta__item--accent:hover {
  background: #ffe24d;
}

.sticky-cta__icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex: 0 0 auto;
}

@media (max-width: 1080px) {
  .hero__grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card--featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  :root {
    --sticky-height: 74px;
  }

  .section {
    padding: 66px 0;
  }

  .topbar__inner {
    min-height: 74px;
  }

  .hero__visual {
    order: -1;
  }

  .hero__copy {
    order: 1;
  }

  .page-card {
    order: -1;
  }

  .page-copy {
    order: 1;
  }

  .brand__mark {
    width: 140px;
    height: 46px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 14vw, 4.4rem);
  }

  .section-heading h2 {
    font-size: clamp(1.85rem, 10vw, 3rem);
  }

  .hero__info {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 34px;
  }

  .pricing-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    width: min(100% - 24px, var(--container));
    bottom: 10px;
    gap: 8px;
    padding: 10px;
  }

  .sticky-cta__item {
    min-height: 46px;
    padding: 10px;
    border-radius: 18px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .thankyou-card {
    padding: 26px;
    border-radius: 28px;
  }
}
