@font-face {
  font-family: "Cormorant Garamond";
  src: url("./CormorantGaramond-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Montserrat";
  src: url("./Montserrat-Medium.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Montserrat";
  src: url("./Montserrat-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600 700;
}

:root {
  --blue: #0d1b2a;
  --blue-soft: #172b3d;
  --gold: #b8904d;
  --gold-dark: #8e6c35;
  --ivory: #f4f1eb;
  --sand: #dcc9a3;
  --stone: #676b70;
  --white: #ffffff;
  --line: rgba(13, 27, 42, 0.14);
  --shadow: 0 24px 70px rgba(13, 27, 42, 0.13);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--blue);
  background: var(--ivory);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 15%, rgba(184, 144, 77, 0.11), transparent 30rem),
    radial-gradient(circle at 90% 45%, rgba(13, 27, 42, 0.07), transparent 34rem);
  content: "";
  pointer-events: none;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 15px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(92%, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(13, 27, 42, 0.09);
  background: rgba(244, 241, 235, 0.94);
  backdrop-filter: blur(14px);
}

.navbar {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand img {
  width: 64px;
  height: 64px;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.24rem;
  letter-spacing: 0.06em;
}

.brand-copy small {
  color: var(--gold-dark);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.82rem;
  font-weight: 700;
}

.nav > a:not(.button):hover,
.footer a:hover {
  color: var(--gold-dark);
}

.language-switch {
  min-width: 38px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-align: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--ivory);
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(13, 27, 42, 0.17);
}

.button-primary:hover {
  background: var(--blue-soft);
}

.button-secondary {
  color: var(--blue);
  background: transparent;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.66);
}

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

.hero::after {
  position: absolute;
  top: -140px;
  right: -170px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(184, 144, 77, 0.27);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(46px, 7vw, 90px);
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 25px;
  font-size: clamp(3.35rem, 6.4vw, 6.2rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 4.6vw, 4.6rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.75rem;
  letter-spacing: -0.015em;
}

.lead {
  max-width: 700px;
  margin: 0 0 30px;
  color: #37434e;
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
}

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

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.hero-points li::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 30px;
  color: var(--ivory);
  background: var(--blue);
  box-shadow: var(--shadow);
}

.hero-card::before {
  position: absolute;
  right: -75px;
  bottom: -90px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(220, 201, 163, 0.2);
  border-radius: 50%;
  content: "";
}

.hero-card-logo {
  width: 138px;
  margin: 0 0 32px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.hero-card .eyebrow {
  color: var(--sand);
}

.hero-card h2 {
  margin-bottom: 17px;
  color: var(--ivory);
  font-size: clamp(2.35rem, 4vw, 3.7rem);
}

.hero-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 27px;
  color: rgba(244, 241, 235, 0.82);
}

.hero-card .button {
  position: relative;
  z-index: 1;
  border-color: var(--sand);
  color: var(--blue);
  background: var(--sand);
}

.proof-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 128px;
  padding: 25px 30px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.proof-item span {
  color: var(--stone);
  font-size: 0.8rem;
}

.section {
  padding: 100px 0;
}

.section-white {
  background: rgba(255, 255, 255, 0.6);
}

.section-dark {
  color: var(--ivory);
  background: var(--blue);
}

.section-dark h2,
.section-dark h3 {
  color: var(--ivory);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 45px;
}

.section-heading p {
  margin: 0;
  color: var(--stone);
  font-size: 1.04rem;
}

.section-dark .section-heading p {
  color: rgba(244, 241, 235, 0.72);
}

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

.card {
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
}

.card-number {
  display: inline-grid;
  width: 35px;
  height: 35px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(184, 144, 77, 0.45);
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
}

.card p {
  margin: 0;
  color: var(--stone);
  font-size: 0.9rem;
}

.method-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(220, 201, 163, 0.22);
}

.method-step {
  min-height: 245px;
  padding: 30px;
  background: var(--blue);
}

.method-step span {
  display: block;
  margin-bottom: 30px;
  color: var(--sand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.method-step p {
  margin: 0;
  color: rgba(244, 241, 235, 0.7);
  font-size: 0.87rem;
}

.service-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
}

.service-price {
  margin-bottom: 26px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-card p {
  margin: 0 0 22px;
  color: var(--stone);
  font-size: 0.9rem;
}

.text-link {
  margin-top: auto;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(184, 144, 77, 0.65);
  text-underline-offset: 5px;
}

.lead-layout {
  display: grid;
  align-items: start;
  gap: clamp(40px, 7vw, 90px);
  grid-template-columns: 0.78fr 1.22fr;
}

.lead-intro {
  position: sticky;
  top: 125px;
}

.lead-intro p {
  color: rgba(244, 241, 235, 0.76);
}

.lead-intro ul {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.lead-intro li {
  display: flex;
  gap: 11px;
  color: rgba(244, 241, 235, 0.85);
  font-size: 0.9rem;
}

.lead-intro li::before {
  color: var(--sand);
  content: "✓";
}

.lead-form {
  padding: clamp(27px, 5vw, 48px);
  border-radius: 28px;
  color: var(--blue);
  background: var(--ivory);
}

.form-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.78rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 51px;
  padding: 12px 14px;
  border: 1px solid rgba(13, 27, 42, 0.22);
  border-radius: 12px;
  color: var(--blue);
  background: var(--white);
  outline: none;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(184, 144, 77, 0.15);
}

.form-note {
  margin: 20px 0;
  color: var(--stone);
  font-size: 0.72rem;
}

.form-note a {
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  min-height: 56px;
}

.form-secondary {
  margin: 15px 0 0;
  text-align: center;
  font-size: 0.78rem;
}

.form-secondary a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-list {
  display: grid;
  max-width: 900px;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
}

.faq-item summary {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 23px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  color: var(--gold-dark);
  content: "+";
  font-size: 1.4rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 23px 23px;
  color: var(--stone);
  font-size: 0.9rem;
}

.final-cta {
  padding: 88px 0;
  text-align: center;
}

.final-cta h2 {
  max-width: 860px;
  margin-inline: auto;
}

.final-cta p {
  max-width: 650px;
  margin: 0 auto 28px;
  color: var(--stone);
}

.final-cta .button-row {
  justify-content: center;
}

.footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  color: var(--stone);
  background: rgba(255, 255, 255, 0.45);
  font-size: 0.76rem;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand img {
  width: 66px;
  height: 66px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px 18px;
}

.privacy-choice-button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  width: min(440px, calc(100% - 48px));
  padding: 24px;
  border: 1px solid rgba(13, 27, 42, 0.14);
  border-radius: 24px;
  background: var(--ivory);
  box-shadow: 0 24px 70px rgba(13, 27, 42, 0.2);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0 0 16px;
  color: var(--stone);
  font-size: 0.78rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-actions button {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-reject {
  color: var(--blue);
  background: transparent;
}

.cookie-accept {
  color: var(--ivory);
  background: var(--blue);
}

.mobile-cta {
  display: none;
}

@media (max-width: 940px) {
  .nav > a:not(.button, .language-switch) {
    display: none;
  }

  .hero-grid,
  .lead-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-card {
    max-width: 680px;
  }

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

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

  .lead-intro {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

  .container {
    width: min(90%, var(--max));
  }

  .navbar {
    min-height: 74px;
    gap: 12px;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand-copy {
    display: none;
  }

  .nav {
    gap: 9px;
  }

  .nav .button {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 0.72rem;
  }

  .hero {
    padding: 46px 0 52px;
  }

  h1 {
    font-size: clamp(3.15rem, 15vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.55rem, 12vw, 3.55rem);
  }

  .hero-card {
    padding: 28px;
    border-radius: 22px;
  }

  .hero-card-logo {
    width: 112px;
    margin-bottom: 23px;
  }

  .proof-item {
    min-height: 116px;
    padding: 20px;
  }

  .proof-item strong {
    font-size: 1.23rem;
  }

  .section {
    padding: 72px 0;
  }

  .audience-grid,
  .services-grid,
  .method-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .method-step,
  .service-card {
    min-height: auto;
  }

  .field-full {
    grid-column: auto;
  }

  .lead-form {
    padding: 23px;
  }

  .footer-grid,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--ivory);
    background: var(--blue);
    font-size: 0.8rem;
    font-weight: 700;
  }

  .cookie-banner {
    right: 12px;
    bottom: 80px;
    width: calc(100% - 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
