/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  color: #211C28;
  background: #FAF6EF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: #2B1A3D; color: #FAF6EF; }
img { display: block; max-width: 100%; }
a { transition: color 0.2s; }
button { cursor: pointer; }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 74px;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
  background: rgba(28, 16, 41, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 rgba(216, 195, 154, 0.16);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  color: #FAF6EF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 13px;
}
.wordmark-icon {
  width: 30px;
  height: 30px;
  border-radius: 5px;
}
.wordmark-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 17.5px;
  letter-spacing: 0.15em;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  color: rgba(250, 246, 239, 0.82);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-link:hover { color: #D8C39A; }
.header-cta {
  background: #BE9E62;
  color: #1C1029;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}
.header-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #FAF6EF;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: #1C1029;
  color: #FAF6EF;
  overflow: hidden;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 82% 8%, rgba(190, 158, 98, 0.16) 0%, rgba(190, 158, 98, 0) 46%),
    radial-gradient(90% 80% at 0% 100%, rgba(125, 86, 168, 0.30) 0%, rgba(125, 86, 168, 0) 55%);
}
.hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 172px 40px 104px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.hero-content {
  animation: riseIn 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
}
.eyebrow--centered {
  justify-content: center;
}
.eyebrow-line {
  width: 30px;
  height: 1px;
  background: #BE9E62;
}
.eyebrow-text {
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #D8C39A;
}
.eyebrow-text--dark { color: #9A7B3E; }
.hero-heading {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: 68px;
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.hero-heading em {
  font-style: italic;
  color: #D8C39A;
}
.hero-sub {
  font-size: 18.5px;
  line-height: 1.65;
  color: rgba(250, 246, 239, 0.74);
  max-width: 486px;
  margin-bottom: 42px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #BE9E62;
  color: #1C1029;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  padding: 17px 30px;
  border-radius: 2px;
  text-decoration: none;
  box-shadow: 0 14px 34px -14px rgba(190, 158, 98, 0.7);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -14px rgba(190, 158, 98, 0.8);
}
.btn-primary .arrow {
  font-size: 17px;
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #FAF6EF;
  font-weight: 500;
  font-size: 15.5px;
  text-decoration: none;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(250, 246, 239, 0.32);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  border-color: #BE9E62;
  color: #D8C39A;
}
.hero-meta {
  margin-top: 54px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(250, 246, 239, 0.6);
  font-size: 13.5px;
}
.status-badge {
  display: flex;
  align-items: center;
  gap: 9px;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7CC79B;
}
.meta-divider {
  width: 1px;
  height: 14px;
  background: rgba(250, 246, 239, 0.2);
}

/* Hero Portrait */
.hero-portrait {
  position: relative;
  animation: fadeIn 1.2s ease both;
}
.portrait-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(216, 195, 154, 0.28);
  background-image: repeating-linear-gradient(135deg, rgba(216, 195, 154, 0.10) 0 2px, transparent 2px 13px);
  background-color: #241334;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 50px 90px -40px rgba(0, 0, 0, 0.7);
}
.portrait-placeholder {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(216, 195, 154, 0.62);
  position: absolute;
  top: 18px;
  left: 18px;
}
.portrait-overlay {
  position: relative;
  width: 100%;
  padding: 26px;
  background: linear-gradient(0deg, rgba(28, 16, 41, 0.92) 0%, rgba(28, 16, 41, 0) 100%);
}
.portrait-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.13em;
}
.portrait-title {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D8C39A;
  margin-top: 7px;
}
.portrait-chip {
  position: absolute;
  top: -26px;
  right: -22px;
  background: #FAF6EF;
  color: #1C1029;
  padding: 18px 22px;
  border-radius: 3px;
  box-shadow: 0 24px 50px -22px rgba(0, 0, 0, 0.55);
}
.chip-figure {
  font-family: 'Newsreader', serif;
  font-size: 30px;
  line-height: 1;
}
.chip-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6E6678;
  margin-top: 6px;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: #1C1029;
  border-top: 1px solid rgba(216, 195, 154, 0.16);
}
.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(216, 195, 154, 0.7);
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 46px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}
.partner-name {
  font-family: 'Newsreader', serif;
  font-size: 19px;
  color: rgba(250, 246, 239, 0.5);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ===== SERVICES ===== */
.services {
  background: #FAF6EF;
  padding: 118px 40px;
}
.services-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 62px;
  flex-wrap: wrap;
}
.services-header-left {
  max-width: 620px;
}
.section-heading {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.services-intro {
  font-size: 16.5px;
  line-height: 1.62;
  color: #6E6678;
  max-width: 330px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid #ECE3D3;
  border-radius: 4px;
  padding: 38px 34px 34px;
  display: flex;
  flex-direction: column;
  min-height: 436px;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s, border-color 0.35s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -34px rgba(43, 26, 61, 0.4);
  border-color: #D8C39A;
}
.service-num {
  font-family: 'Newsreader', serif;
  font-size: 14px;
  color: #BE9E62;
}
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #E4D7BE;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0 26px;
  color: #2B1A3D;
}
.service-icon span {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 22px;
}
.service-title {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.12;
  margin-bottom: 14px;
}
.service-body {
  font-size: 15.5px;
  line-height: 1.6;
  color: #6E6678;
  margin-bottom: 24px;
  flex: 1;
}
.service-points {
  border-top: 1px solid #ECE3D3;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-point {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  color: #3A3340;
}
.point-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #BE9E62;
  flex: none;
}

/* ===== APPROACH ===== */
.approach {
  background: #F2EBDD;
  padding: 124px 40px;
}
.approach-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 84px;
  align-items: center;
}
.approach-image-col {
  position: relative;
}
.approach-image-frame {
  aspect-ratio: 5/6;
  border-radius: 4px;
  background-image: repeating-linear-gradient(135deg, rgba(43, 26, 61, 0.07) 0 2px, transparent 2px 14px);
  background-color: #E7DCC8;
  border: 1px solid #DECFB4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.approach-placeholder {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(43, 26, 61, 0.5);
}
.approach-quote-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 64%;
  background: #2B1A3D;
  color: #FAF6EF;
  padding: 30px;
  border-radius: 3px;
  box-shadow: 0 30px 60px -28px rgba(43, 26, 61, 0.6);
}
.approach-quote-card p {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.4;
}
.approach-heading {
  margin-bottom: 26px;
  max-width: 560px;
  font-size: 44px;
  line-height: 1.1;
}
.approach-body {
  font-size: 17px;
  line-height: 1.7;
  color: #54505C;
  max-width: 540px;
  margin-bottom: 40px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 36px;
  border-top: 1px solid #DECFB4;
  padding-top: 38px;
}
.stat-figure {
  font-family: 'Newsreader', serif;
  font-size: 42px;
  line-height: 1;
  color: #2B1A3D;
}
.stat-label {
  font-size: 14px;
  line-height: 1.5;
  color: #6E6678;
  margin-top: 10px;
}

/* ===== PROCESS ===== */
.process {
  background: #FAF6EF;
  padding: 118px 40px;
}
.process-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.process-header {
  text-align: center;
  margin-bottom: 66px;
}
.process-header .eyebrow {
  margin-bottom: 22px;
  display: flex;
  justify-content: center;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #ECE3D3;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.process-step {
  padding: 42px 32px 48px;
  border-right: 1px solid #ECE3D3;
  transition: background 0.3s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: #FBF8F1; }
.step-num {
  font-family: 'Newsreader', serif;
  font-size: 15px;
  color: #BE9E62;
  margin-bottom: 30px;
}
.step-title {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 13px;
}
.step-body {
  font-size: 14.5px;
  line-height: 1.62;
  color: #6E6678;
}

/* ===== BOOKING ===== */
.booking {
  background: #2B1A3D;
  color: #FAF6EF;
  padding: 120px 40px;
}
.booking-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 80px;
  align-items: center;
}
.booking-heading {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.booking-sub {
  font-size: 17.5px;
  line-height: 1.7;
  color: rgba(250, 246, 239, 0.74);
  max-width: 480px;
  margin-bottom: 40px;
}
.assurances {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.assurance {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15.5px;
  color: rgba(250, 246, 239, 0.9);
}
.assurance-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #BE9E62;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D8C39A;
  font-size: 12px;
  flex: none;
}

/* Booking Form */
.booking-form-card {
  background: #FAF6EF;
  color: #211C28;
  border-radius: 6px;
  padding: 40px 38px;
  box-shadow: 0 40px 80px -36px rgba(0, 0, 0, 0.6);
}
.form-title {
  font-family: 'Newsreader', serif;
  font-size: 24px;
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 13.5px;
  color: #6E6678;
  margin-bottom: 28px;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-input {
  width: 100%;
  background: #fff;
  border: 1px solid #E2D8C7;
  border-radius: 2px;
  padding: 14px 15px;
  font-family: inherit;
  font-size: 15px;
  color: #211C28;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: #BE9E62; }
.select-wrapper {
  position: relative;
}
.form-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #E2D8C7;
  border-radius: 2px;
  padding: 14px 15px;
  font-family: inherit;
  font-size: 15px;
  color: #211C28;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.form-select:focus { border-color: #BE9E62; }
.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #6E6678;
  font-size: 12px;
}
.form-submit {
  margin-top: 6px;
  background: #2B1A3D;
  color: #FAF6EF;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  border: none;
  padding: 17px;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}
.form-submit:hover {
  background: #3A2455;
  transform: translateY(-1px);
}
.form-submit.submitted {
  background: #2E7D4F;
  pointer-events: none;
}
.form-disclaimer {
  font-size: 12px;
  color: #8A8392;
  line-height: 1.5;
  text-align: center;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #150C1F;
  color: rgba(250, 246, 239, 0.72);
  padding: 72px 40px 40px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(216, 195, 154, 0.14);
}
.footer-wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
}
.footer-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.14em;
  color: #FAF6EF;
}
.footer-desc {
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 330px;
}
.footer-contact {
  margin-top: 22px;
  font-size: 13.5px;
  line-height: 1.8;
}
.footer-col-head {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #BE9E62;
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(250, 246, 239, 0.72);
  text-decoration: none;
}
.footer-links a:hover { color: #D8C39A; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(250, 246, 239, 0.5);
}
.footer-legal {
  max-width: 560px;
  line-height: 1.5;
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(28, 16, 41, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mobile-nav-links a {
  font-family: 'Newsreader', serif;
  font-size: 32px;
  color: #FAF6EF;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav-links a:hover { color: #D8C39A; }
.mobile-nav-cta {
  margin-top: 16px;
  background: #BE9E62;
  color: #1C1029 !important;
  font-family: 'Hanken Grotesk', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 140px 40px 80px;
    gap: 56px;
  }
  .hero-portrait { max-width: 420px; }
  .approach-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .approach-image-col { max-width: 500px; }
  .booking-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid #ECE3D3; }
  .process-step:nth-child(odd) { border-right: 1px solid #ECE3D3; }
  .process-step:nth-last-child(-n+2) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 60px; }
}

@media (max-width: 768px) {
  .header-inner { padding: 0 24px; }
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-inner { padding: 130px 24px 64px; }
  .hero-heading { font-size: 44px; }
  .hero-sub { font-size: 16.5px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .meta-divider { display: none; }
  .portrait-chip { top: -16px; right: -10px; padding: 14px 16px; }
  .chip-figure { font-size: 24px; }
  .trust-inner { justify-content: center; padding: 24px; }
  .trust-logos { justify-content: center; gap: 24px; }
  .services { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .section-heading { font-size: 36px; }
  .approach { padding: 80px 24px; }
  .approach-quote-card {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: -20px;
  }
  .approach-heading { font-size: 34px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-figure { font-size: 32px; }
  .process { padding: 80px 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; border-bottom: 1px solid #ECE3D3; }
  .process-step:last-child { border-bottom: none; }
  .booking { padding: 80px 24px; }
  .booking-heading { font-size: 36px; }
  .booking-form-card { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer { padding: 56px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-heading { font-size: 36px; }
  .btn-primary { width: 100%; justify-content: center; }
  .booking-heading { font-size: 30px; }
}
