/* ============================================================
   PADMA REAL ESTATE — Premium dark editorial design system
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --navy-900: #061A2B;
  --navy-800: #09243A;
  --navy-700: #0D3048;
  --navy-600: #102D42;

  --gold: #D9AA4A;
  --gold-soft: #E7C878;
  --gold-dim: rgba(217, 170, 74, 0.35);
  --gold-line: rgba(217, 170, 74, 0.35);

  --white: #F7F4EC;
  --muted: #B9C4CB;
  --muted-2: #8FA0AB;

  --card: #102D42;
  --border: rgba(217, 170, 74, 0.35);
  --border-soft: rgba(185, 196, 203, 0.14);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1240px;
  --radius: 16px;
  --radius-sm: 10px;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  --space-16: 128px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-soft: 0 24px 60px -30px rgba(0, 0, 0, 0.85);
  --shadow-card: 0 30px 70px -40px rgba(0, 0, 0, 0.9);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

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

ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0; }

::selection { background: var(--gold); color: var(--navy-900); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

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

.accent { color: var(--gold-soft); font-style: italic; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.section-head.center .eyebrow::before { display: none; }

.section-title {
  font-size: clamp(30px, 3.6vw, 50px);
  color: var(--white);
}

.section-sub {
  color: var(--muted);
  max-width: 620px;
  margin-top: var(--space-3);
  font-size: 16.5px;
}

.section {
  padding: var(--space-16) 0;
  position: relative;
}

.section-head { max-width: 760px; margin-bottom: var(--space-8); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  --btn-pad-y: 15px;
  --btn-pad-x: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
              color 0.35s var(--ease), border-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
  white-space: nowrap;
}
.btn-sm { --btn-pad-y: 10px; --btn-pad-x: 20px; font-size: 12px; }

.btn .arrow {
  width: 17px; height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.35s var(--ease);
}
.btn:hover .arrow { transform: translateX(5px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #201503;
  box-shadow: 0 14px 34px -16px rgba(217, 170, 74, 0.65);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px -16px rgba(217, 170, 74, 0.8);
}

.btn-outline {
  border-color: var(--gold-line);
  color: var(--white);
  background: rgba(6, 26, 43, 0.35);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  transform: translateY(-2px);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease),
              box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(6, 26, 43, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(217, 170, 74, 0.18);
  box-shadow: 0 20px 50px -30px rgba(0, 0, 0, 0.9);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 42px; height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.brand:hover .brand-mark { background: rgba(217, 170, 74, 0.12); transform: rotate(-4deg); }
.brand-mark svg { width: 22px; height: 22px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-name em { color: var(--gold-soft); font-style: italic; font-weight: 400; }
.brand-tagline {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: var(--space-5); }
.nav-list { display: flex; align-items: center; gap: var(--space-4); }
.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--gold-soft); }
.nav-link.is-active::after { transform: scaleX(1); }

.hamburger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: rgba(6, 26, 43, 0.4);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 50%; top: 50%;
  width: 19px; height: 1.5px;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}
.hamburger span:nth-child(1) { transform: translate(-50%, -7px); }
.hamburger span:nth-child(3) { transform: translate(-50%, 6px); }
.hamburger.is-open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  padding: 120px 32px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease), visibility 0.5s;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-link {
  font-family: var(--serif);
  font-size: clamp(28px, 7vw, 38px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--white);
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.mobile-link:hover, .mobile-link:focus-visible { color: var(--gold-soft); padding-left: 10px; }
.mobile-menu-foot p {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 6px;
}
.mobile-menu-foot a {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold-soft);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 160px 0 96px;
  overflow: hidden;
}
.hero-media { position: absolute; inset: -10% 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(6, 26, 43, 0.96) 0%, rgba(6, 26, 43, 0.78) 42%, rgba(6, 26, 43, 0.35) 78%, rgba(6, 26, 43, 0.6) 100%),
    linear-gradient(to top, var(--navy-900) 2%, transparent 45%);
}

.hero-content { position: relative; z-index: 2; max-width: 880px; }
.hero-title {
  font-size: clamp(42px, 6.6vw, 92px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}
.hero-title .accent { display: inline-block; }

.hero-copy {
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 18.5px);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-bottom: var(--space-5);
}
.badges li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.badges .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 170, 74, 0.16);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-5); }
.hero-actions.center { justify-content: center; }

.trust {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--muted);
}
.trust strong { color: var(--white); font-weight: 600; }
.trust .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 15px;
}
.trust-sep { width: 1px; height: 18px; background: var(--border-soft); }

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px; height: 44px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 3px; height: 8px;
  border-radius: 2px;
  background: var(--gold);
  animation: cue 2s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: translateY(0); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* ============================================================
   ANNIVERSARY OFFER
   ============================================================ */
.offer {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: var(--space-12) 0;
  position: relative;
  overflow: hidden;
}
.offer::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(217, 170, 74, 0.12), transparent 65%);
  pointer-events: none;
}
.offer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
  z-index: 1;
}
.offer-title { font-size: clamp(30px, 3.6vw, 46px); margin-bottom: var(--space-3); }
.offer-copy { color: var(--muted); max-width: 620px; }

.offer-meta {
  margin-top: var(--space-5);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.offer-seats { flex: 1 1 320px; max-width: 420px; }
.offer-seats-head {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 10px;
}
.offer-seats-head strong { color: var(--gold-soft); }
.offer-progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(185, 196, 203, 0.14);
  overflow: hidden;
}
.offer-progress span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transition: width 1.6s var(--ease);
}
.offer-note { margin-top: 10px; font-size: 13.5px; color: var(--muted); }
.offer-note strong { color: var(--white); }

.offer-timer {
  background: rgba(16, 45, 66, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  backdrop-filter: blur(8px);
}
.offer-timer-label {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.cd-cell {
  text-align: center;
  padding: 14px 6px;
  border-radius: var(--radius-sm);
  background: rgba(6, 26, 43, 0.7);
  border: 1px solid var(--border-soft);
}
.cd-cell span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  color: var(--gold-soft);
  line-height: 1;
}
.cd-cell small {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.offer-terms { margin-top: var(--space-3); font-size: 12px; color: var(--muted-2); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.about-copy .section-title { margin-bottom: var(--space-4); }
.about-copy > p { color: var(--muted); margin-bottom: var(--space-3); max-width: 560px; }

.about-points { margin: var(--space-4) 0 var(--space-5); display: grid; gap: 14px; }
.about-points li { display: flex; align-items: center; gap: 12px; color: var(--white); font-size: 15px; }
.tick {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  font-size: 12px;
  line-height: 1;
}

/* Collage */
.about-collage {
  position: relative;
  min-height: 540px;
}
.collage-main,
.collage-secondary {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.collage-main {
  top: 0; left: 0;
  width: 72%;
  height: 62%;
}
.collage-secondary {
  bottom: 0; right: 0;
  width: 58%;
  height: 52%;
  border-color: var(--border-soft);
}
.collage-main img, .collage-secondary img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.about-collage:hover .collage-main img { transform: scale(1.05); }
.about-collage:hover .collage-secondary img { transform: scale(1.06); }

.collage-badge {
  position: absolute;
  left: 6%;
  bottom: 8%;
  z-index: 3;
  background: linear-gradient(135deg, rgba(13, 48, 72, 0.96), rgba(6, 26, 43, 0.96));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card);
}
.collage-num {
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
  color: var(--gold-soft);
}
.collage-num span { font-size: 24px; }
.collage-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}
.collage-brand {
  position: absolute;
  top: 8%;
  right: 4%;
  z-index: 3;
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  border: 1px solid var(--gold-line);
  color: var(--gold);
}
.collage-brand svg { width: 28px; height: 28px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: linear-gradient(180deg, var(--navy-900), var(--navy-800)); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.card {
  position: relative;
  background: linear-gradient(160deg, rgba(16, 45, 66, 0.75), rgba(9, 36, 58, 0.9));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: var(--space-5) var(--space-4) var(--space-4);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease),
              box-shadow 0.45s var(--ease), background 0.45s var(--ease);
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.card:hover {
  transform: translateY(-8px);
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}
.card:hover::after { opacity: 1; }

.card-icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: rgba(6, 26, 43, 0.55);
  color: var(--muted);
  margin-bottom: var(--space-3);
  transition: color 0.45s var(--ease), border-color 0.45s var(--ease), transform 0.45s var(--ease);
}
.card-icon svg {
  width: 25px; height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card:hover .card-icon { color: var(--gold); border-color: var(--border); transform: translateY(-2px); }

.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 14.5px; line-height: 1.75; }

.card-arrow {
  display: inline-block;
  margin-top: var(--space-3);
  color: var(--gold);
  font-size: 18px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.card:hover .card-arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   FEATURED
   ============================================================ */
.featured {
  position: relative;
  padding: var(--space-16) 0;
  overflow: hidden;
}
.featured-media { position: absolute; inset: 0; }
.featured-media img { width: 100%; height: 100%; object-fit: cover; }
.featured-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(6, 26, 43, 0.97) 0%, rgba(6, 26, 43, 0.82) 45%, rgba(6, 26, 43, 0.4) 100%),
    linear-gradient(to top, rgba(6, 26, 43, 0.9), transparent 60%);
}
.featured-content { position: relative; z-index: 2; max-width: 640px; }
.featured-content .section-title { margin-bottom: var(--space-4); }
.featured-copy { color: var(--muted); margin-bottom: var(--space-5); }

.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; margin-bottom: var(--space-6); }
.feature-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--white); }

/* ============================================================
   RESIDENCES
   ============================================================ */
.residences { background: var(--navy-900); }
.res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.res-card {
  background: linear-gradient(160deg, rgba(16, 45, 66, 0.7), rgba(9, 36, 58, 0.92));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.res-card:hover { transform: translateY(-8px); border-color: var(--border); box-shadow: var(--shadow-card); }
.res-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.res-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.res-card:hover .res-media img { transform: scale(1.07); }
.res-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6, 26, 43, 0.75), transparent 55%);
}
.res-tag {
  position: absolute;
  z-index: 2;
  top: 16px; left: 16px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(6, 26, 43, 0.72);
  border: 1px solid var(--gold-line);
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.res-body { padding: var(--space-4); }
.res-body h3 { font-size: 23px; margin-bottom: 6px; }
.res-loc { color: var(--muted-2); font-size: 13.5px; letter-spacing: 0.04em; }
.res-foot {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.res-price { font-family: var(--serif); font-size: 21px; color: var(--gold-soft); }
.res-price em { font-family: var(--sans); font-size: 11px; font-style: normal; color: var(--muted-2); letter-spacing: 0.1em; text-transform: uppercase; }
.res-link { font-size: 13px; font-weight: 600; color: var(--white); transition: color 0.35s var(--ease); }
.res-link:hover { color: var(--gold-soft); }

/* ============================================================
   STATS
   ============================================================ */
.stats-section { padding: var(--space-10) 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: 8px var(--space-3);
  border-right: 1px solid var(--border-soft);
}
.stat:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1;
  color: var(--gold-soft);
  margin-bottom: 12px;
}
.stat-label {
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: linear-gradient(180deg, var(--navy-900), var(--navy-800)); }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.quote-card {
  position: relative;
  margin: 0;
  background: linear-gradient(160deg, rgba(16, 45, 66, 0.72), rgba(9, 36, 58, 0.92));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: var(--space-5) var(--space-4);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.quote-card:hover { transform: translateY(-6px); border-color: var(--border); box-shadow: var(--shadow-card); }
.quote-mark {
  position: absolute;
  top: 14px; right: 24px;
  font-family: var(--serif);
  font-size: 84px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.16;
}
.quote-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: var(--space-3); font-size: 14px; }
.quote-card h3 {
  position: relative;
  z-index: 1;
  font-size: 22px;
  margin-bottom: 12px;
}
.quote-card blockquote { position: relative; z-index: 1; }
.quote-card blockquote {
  margin: 0 0 var(--space-4);
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--white);
}
.quote-card figcaption { display: flex; align-items: center; gap: 14px; }
.avatar {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  background: rgba(6, 26, 43, 0.6);
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 15px;
}
.quote-card figcaption span:last-child { display: flex; flex-direction: column; line-height: 1.35; }
.quote-card figcaption strong { font-size: 14.5px; font-weight: 600; }
.quote-card figcaption small { font-size: 12px; color: var(--muted-2); letter-spacing: 0.04em; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { position: relative; padding: var(--space-16) 0; overflow: hidden; }
.final-cta-media { position: absolute; inset: 0; }
.final-cta-media img { width: 100%; height: 100%; object-fit: cover; }
.final-cta-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 26, 43, 0.9), rgba(6, 26, 43, 0.94)),
    radial-gradient(circle at 50% 0%, rgba(217, 170, 74, 0.16), transparent 60%);
}
.final-cta-content { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; }
.final-cta-content .eyebrow { justify-content: center; }
.final-cta-content .eyebrow::before { display: none; }
.final-cta-content .section-title { margin-bottom: var(--space-3); }
.final-cta-copy { color: var(--muted); margin-bottom: var(--space-5); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-900);
  border-top: 1px solid var(--border-soft);
  padding-top: var(--space-12);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr 1.5fr;
  gap: var(--space-5);
  padding-bottom: var(--space-10);
}
.footer-brand .brand { margin-bottom: var(--space-3); }
.footer-brand > p { color: var(--muted); font-size: 14px; max-width: 300px; margin-bottom: var(--space-4); }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  color: var(--muted);
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.socials a:hover { color: var(--gold-soft); border-color: var(--border); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.footer-col h4, .footer-news h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col li, .footer-col a { color: var(--muted); font-size: 14px; line-height: 1.6; }
.footer-col a { transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold-soft); }

.footer-news p { color: var(--muted); font-size: 13.5px; margin-bottom: var(--space-3); }
.news-form {
  display: flex;
  gap: 8px;
  background: rgba(16, 45, 66, 0.5);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
  transition: border-color 0.35s var(--ease);
}
.news-form:focus-within { border-color: var(--border); }
.news-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
}
.news-form input::placeholder { color: var(--muted-2); }
.news-msg { margin-top: 10px; font-size: 12.5px; color: var(--gold-soft); min-height: 16px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  padding: var(--space-4) 32px;
  border-top: 1px solid var(--border-soft);
}
.footer-bottom p, .footer-bottom a { color: var(--muted-2); font-size: 13px; }
.footer-bottom ul { display: flex; gap: var(--space-3); }
.footer-bottom a { transition: color 0.3s var(--ease); }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; row-gap: var(--space-6); }
  .footer-news { grid-column: 1 / -1; max-width: 460px; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .nav { display: none; }
  .hamburger { display: block; }

  .about-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .about-collage { min-height: 460px; }

  .offer-inner { grid-template-columns: 1fr; gap: var(--space-6); }

  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .res-grid { grid-template-columns: repeat(2, 1fr); }
  .res-card:last-child { grid-column: 1 / -1; }
  .quote-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }

  .stats { grid-template-columns: repeat(2, 1fr); row-gap: var(--space-6); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(-n+2) { padding-bottom: var(--space-5); border-bottom: 1px solid var(--border-soft); }
  .stat:nth-child(n+3) { padding-top: var(--space-5); }
}

@media (max-width: 640px) {
  .container { padding: 0 22px; }
  .section { padding: var(--space-12) 0; }

  .site-header { padding: 12px 0; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-name { font-size: 17px; }
  .brand-tagline { letter-spacing: 0.24em; }

  .hero { min-height: 92svh; padding: 130px 0 90px; }
  .hero-copy { font-size: 16px; }
  .badges { gap: 10px 18px; }
  .badges li { font-size: 12.5px; }
  .trust { flex-wrap: wrap; gap: 10px; font-size: 13px; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-actions.center { flex-direction: column; }

  .offer { padding: var(--space-10) 0; }
  .offer-meta { flex-direction: column; align-items: stretch; }
  .offer-meta .btn { width: 100%; }
  .countdown { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .cd-cell { padding: 12px 2px; }
  .cd-cell small { letter-spacing: 0.08em; font-size: 9px; }

  .about-collage { min-height: 400px; }
  .collage-main { width: 80%; height: 58%; }
  .collage-secondary { width: 62%; height: 46%; }
  .collage-badge { left: 4%; bottom: 4%; padding: 16px 18px; gap: 12px; }
  .collage-num { font-size: 34px; }
  .collage-brand { width: 48px; height: 48px; }

  .card-grid { grid-template-columns: 1fr; }
  .res-grid { grid-template-columns: 1fr; }
  .res-card:last-child { grid-column: auto; }

  .feature-list { grid-template-columns: 1fr; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 8px 12px; }
  .stat-label { font-size: 10.5px; letter-spacing: 0.12em; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-news { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; padding: 28px 22px; }
}

@media (max-width: 420px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
