:root {
  --blue: #004777;
  --blue-dark: #022f4f;
  --gold: #b38d5a;
  --gold-light: #d7b880;
  --ink: #12324a;
  --text: #23445e;
  --bg: #fbf8f2;
  --white: #ffffff;
  --cream: #f4efe7;
  --line: rgba(0, 71, 119, 0.12);
  --shadow: 0 20px 50px rgba(10, 33, 51, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(179, 141, 90, 0.18), transparent 32%),
    linear-gradient(180deg, #fffefc 0%, var(--bg) 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.hidden {
  position: absolute;
  left: -9999px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(0, 71, 119, 0.08);
}

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

.brand img {
  width: auto;
  height: 72px;
}

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

.topbar__phone {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, #0a5d97, var(--blue));
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(0, 71, 119, 0.2);
}

.button:hover {
  transform: translateY(-1px);
}

.button--small {
  min-height: 46px;
  padding: 0 22px;
}

.button--ghost,
.button--soft {
  background: rgba(0, 71, 119, 0.08);
  color: var(--blue);
  box-shadow: none;
}

.button--calendar {
  background: linear-gradient(135deg, #ead2a5, var(--gold));
  color: var(--blue-dark);
  box-shadow: 0 18px 34px rgba(179, 141, 90, 0.34);
}

.button--calendar:hover {
  box-shadow: 0 20px 38px rgba(179, 141, 90, 0.4);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 0 0 40px;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 23, 39, 0.88) 0%, rgba(2, 23, 39, 0.64) 40%, rgba(2, 23, 39, 0.12) 78%, rgba(2, 23, 39, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.hero__media img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: center;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 760px;
}

.hero__copy {
  max-width: 760px;
  color: var(--white);
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: clamp(1rem, 0.8rem + 0.55vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--gold-light);
}

.section-label {
  margin: 0 0 14px;
  font-size: clamp(1rem, 0.8rem + 0.55vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero h1,
.section-head h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 0.95;
}

.hero h1 {
  max-width: 10.5ch;
  font-size: clamp(3rem, 6.2vw, 5.15rem);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.hero h1 span {
  display: block;
  color: #fff7ea;
}

.hero__lead,
.lead {
  font-size: 1.12rem;
  max-width: 52ch;
}

.hero__lead {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__meta {
  margin-top: 22px;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.84);
}

.trust-strip {
  margin-top: -24px;
  position: relative;
  z-index: 2;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-strip__grid span {
  padding: 18px 20px;
  text-align: center;
  background: var(--white);
  font-weight: 700;
  color: var(--blue);
}

.trust-strip__grid span + span {
  box-shadow: inset 1px 0 0 rgba(0, 71, 119, 0.12);
}

.section {
  padding: 88px 0;
}

.section--intro {
  padding-bottom: 36px;
}

.section--blue {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(215, 184, 128, 0.18), transparent 30%),
    linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.section--cream {
  background: linear-gradient(180deg, #fbf6ee 0%, #f7f2e9 100%);
}

.section--contact {
  background:
    radial-gradient(circle at bottom left, rgba(179, 141, 90, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbf6ef 100%);
}

.section-head {
  max-width: 860px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  color: var(--blue);
}

.section-head--light h2,
.section-head--light .lead {
  color: var(--white);
}

.lead {
  margin: 18px 0 0;
}

.lead--light {
  color: rgba(255, 255, 255, 0.86);
}

.section-label--light {
  color: #dfeaf5;
}

.cards--two,
.price-grid,
.why-grid__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.choice-card,
.info-card,
.price-card,
.contact__form-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 71, 119, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.choice-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.choice-card__body {
  padding: 28px;
}

.choice-card__badge {
  display: inline-flex;
  margin: 20px 20px 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(179, 141, 90, 0.14);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.choice-card h3,
.info-card h3,
.price-card h3,
.step h3,
.contact h2 {
  margin: 0;
  color: var(--blue);
}

.choice-card h3,
.price-card h3 {
  font-size: 1.7rem;
}

.feature-list {
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-top: 12px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 0 5px rgba(179, 141, 90, 0.16);
}

.section-note {
  margin: 24px 0 0;
  font-weight: 600;
  color: var(--ink);
}

.why-grid {
  display: grid;
  gap: 28px;
}

.why-grid__cards {
  margin-top: 10px;
}

.info-card {
  padding: 28px;
  color: var(--text);
}

.process {
  display: grid;
  gap: 36px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
}

.step__num {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--blue);
  font-weight: 800;
  font-size: 1.25rem;
}

.process__media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process__media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.price-card {
  padding: 30px;
}

.price-card__label {
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
}

.price-card--secondary {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.faq-wrap {
  display: grid;
  gap: 24px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.92);
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 700;
  color: var(--blue);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 22px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.contact h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.3vw, 3.35rem);
  line-height: 1;
  max-width: none;
}

.contact-points {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  font-weight: 600;
}

.contact-points a {
  color: var(--blue);
  text-decoration: none;
}

.contact__copy {
  max-width: none;
}

.contact__copy .lead {
  max-width: none;
  text-align: justify;
}

.footer {
  padding: 26px 0 94px;
  border-top: 1px solid rgba(0, 71, 119, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.footer__inner,
.footer__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
}

.footer__links a {
  text-decoration: none;
  color: var(--blue);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  gap: 10px;
  z-index: 40;
}

.sticky-cta__phone,
.sticky-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.sticky-cta__phone {
  flex: 0.95;
  background: rgba(255, 255, 255, 0.96);
  color: var(--blue);
  border: 1px solid rgba(0, 71, 119, 0.14);
  box-shadow: 0 12px 24px rgba(0, 71, 119, 0.1);
}

.sticky-cta__button {
  flex: 1.2;
  background: linear-gradient(135deg, #0a5d97, var(--blue));
  color: var(--white);
  box-shadow: 0 18px 34px rgba(0, 71, 119, 0.22);
}

.thanks {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 0;
}

.thanks__card {
  max-width: 760px;
  padding: 44px;
  text-align: center;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 71, 119, 0.08);
  box-shadow: var(--shadow);
}

.thanks__logo {
  width: 200px;
  margin: 0 auto 22px;
}

.thanks h1 {
  margin: 0;
  color: var(--blue);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.95;
}

.thanks p:not(.section-label) {
  margin: 18px auto 0;
  max-width: 40ch;
  font-size: 1.08rem;
}

@media (max-width: 980px) {
  .cards--two,
  .price-grid,
  .why-grid__cards,
  .contact,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card--secondary {
    grid-column: auto;
  }

  .hero__content {
    min-height: 700px;
  }

  .hero__media img {
    min-height: 700px;
  }
}

@media (max-width: 760px) {
  .topbar__phone {
    display: none;
  }

  .topbar__inner {
    min-height: 74px;
  }

  .brand img {
    height: 54px;
  }

  .hero__media::after {
    background:
      linear-gradient(180deg, rgba(2, 23, 39, 0.78) 0%, rgba(2, 23, 39, 0.74) 38%, rgba(2, 23, 39, 0.22) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  }

  .hero__content,
  .hero__media img {
    min-height: 720px;
  }

  .hero__copy {
    padding: 52px 0 96px;
  }

  .hero h1 {
    max-width: 8.6ch;
    font-size: clamp(2.55rem, 12vw, 3.7rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .section {
    padding: 72px 0;
  }

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

  .sticky-cta {
    display: grid;
    grid-template-columns: 0.95fr 1.2fr;
  }

  .footer {
    padding-bottom: 110px;
  }
}

@media (max-width: 460px) {
  .trust-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip__grid span {
    padding: 14px 12px;
    font-size: 0.88rem;
  }
}
