/* ========== Adriatik Residences — full landing ========== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #0a1420;
  --bg-2: #0e1a2a;
  --bg-3: #122236;
  --fg: #ece5d2;
  --fg-dim: rgba(236,229,210,0.65);
  --fg-faint: rgba(236,229,210,0.35);
  --line: rgba(236,229,210,0.14);
  --line-strong: rgba(236,229,210,0.28);
  --accent: #d8c9a3;
  --accent-2: #b8a472;
  --accent-fg: #0a1420;
  --warm: #efe7d7;
  --warm-fg: #2a2620;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-weight: 300;
}

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

.serif { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 400; color: var(--fg);
}
.eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: currentColor; opacity: 0.6;
}
.eyebrow.center::before { display: none; }

.section {
  position: relative;
  padding: 140px 64px;
}
.section--alt { background: var(--bg-2); }
.section--warm { background: var(--warm); color: var(--warm-fg); }
.section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.section__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-top: 22px;
  max-width: 14ch;
}
.section__title em { font-style: italic; }
.section__lede {
  font-size: 15px; line-height: 1.7; max-width: 48ch;
  color: var(--fg-dim);
}
.section--warm .section__lede { color: rgba(42,38,32,0.7); }
.section--warm .section__title em { color: #9a6a3a; }

.container { max-width: 1440px; margin: 0 auto; }

/* ────────── NAV (fixed top) ────────── */
.topnav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  padding: 22px 56px;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.topnav.scrolled {
  background: rgba(10,20,32,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 14px 56px;
}
.topnav__brand { display: flex; align-items: center; gap: 14px; }
.topnav__brand img { height: 52px; width: auto; }
.topnav__brand .logo-light {
  /* tint black PNG to accent gold (#d8c9a3) */
  filter: invert(89%) sepia(13%) saturate(550%) hue-rotate(7deg) brightness(94%) contrast(86%);
}
.topnav__links { display: flex; gap: 30px; list-style: none; }
.topnav__links a {
  color: var(--fg); text-decoration: none;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 400;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: opacity 0.3s, border-color 0.3s;
}
.topnav__links a:hover { opacity: 0.65; }
.topnav__links a.active { border-bottom-color: var(--accent); }

.topnav__right { display: flex; align-items: center; gap: 24px; }
.lang { display: flex; font-size: 10px; letter-spacing: 0.18em; }
.lang button {
  background: none; border: none; color: var(--fg);
  padding: 4px 8px; font: inherit; letter-spacing: inherit;
  text-transform: uppercase; cursor: pointer; opacity: 0.45;
  transition: opacity 0.2s;
}
.lang button:hover, .lang button.active { opacity: 1; }
.lang button + button { border-left: 1px solid var(--line-strong); }

.btn {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 500;
  padding: 16px 28px; cursor: pointer;
  border: 1px solid currentColor; background: transparent; color: var(--fg);
  text-decoration: none; display: inline-flex; align-items: center; gap: 14px;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
}
.btn--primary {
  background: var(--accent); color: var(--accent-fg); border-color: var(--accent);
}
.btn--primary:hover { background: #e6d8b3; border-color: #e6d8b3; transform: translateY(-2px); }
.btn--ghost { border-color: var(--line-strong); color: var(--fg); }
.btn--ghost:hover { border-color: var(--fg); }
.btn--sm { padding: 12px 22px; font-size: 10px; }
.btn .arrow { display: inline-block; transition: transform 0.4s; }
.btn:hover .arrow { transform: translateX(6px); }

.section--warm .btn--ghost { color: var(--warm-fg); border-color: rgba(42,38,32,0.3); }
.section--warm .btn--ghost:hover { border-color: var(--warm-fg); }

/* ────────── HERO ────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  max-height: 1100px;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video, .hero__media .ph-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  position: absolute; inset: 0;
}
.hero__veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8,15,26,0.55) 0%, rgba(8,15,26,0.15) 28%, rgba(8,15,26,0.85) 100%),
    linear-gradient(90deg, rgba(8,15,26,0.65) 0%, rgba(8,15,26,0) 55%);
}
.hero__chrome {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 120px 64px 40px;
}
.hero__body {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 80px;
}
.hero__copy { min-width: 0; }
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(52px, 6.4vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.012em;
  margin: 28px 0 24px;
  max-width: 14ch;
}
.hero__title em { font-style: italic; }
.hero__sub {
  font-size: 15px; line-height: 1.6; max-width: 48ch;
  color: var(--fg-dim); margin-bottom: 32px; font-weight: 300;
}
.hero__ctas { display: flex; gap: 22px; flex-wrap: wrap; }

.hero__foot {
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px; margin-top: 32px;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--fg-dim);
}
.partner-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 13px;
  border: 1px solid var(--line-strong);
  font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase;
}
.partner-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.scroll { display: flex; align-items: center; gap: 12px; }
.scroll-line { display: inline-block; width: 36px; height: 1px; background: currentColor; opacity: 0.6; }

/* ken burns */
@keyframes kenburns {
  0%   { transform: scale(1.05) translate(0, 0); }
  50%  { transform: scale(1.13) translate(-1.4%, -0.8%); }
  100% { transform: scale(1.05) translate(0, 0); }
}
.kenburns { animation: kenburns 28s ease-in-out infinite; transform-origin: center; }

@keyframes fadeup {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in > * { opacity: 0; animation: fadeup 1.3s cubic-bezier(.2,.7,.2,1) forwards; }
.fade-in > *:nth-child(1) { animation-delay: 0.35s; }
.fade-in > *:nth-child(2) { animation-delay: 0.55s; }
.fade-in > *:nth-child(3) { animation-delay: 0.75s; }
.fade-in > *:nth-child(4) { animation-delay: 0.95s; }
.fade-in > *:nth-child(5) { animation-delay: 1.15s; }

/* late hero pieces — delayed entrance after the copy block has settled */
.hero__late {
  opacity: 0;
  animation: fadeup 1.2s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: var(--late-delay, 1.1s);
}

/* stats column */
.stats { display: flex; flex-direction: column; gap: 24px; min-width: 240px; }
.stat {
  display: flex; flex-direction: column; align-items: flex-end;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  text-align: right;
}
.stat__value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 40px; line-height: 1; letter-spacing: -0.01em;
}
.stat__value sup { font-size: 0.5em; vertical-align: super; margin-left: 2px; }
.stat__label {
  font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--fg-dim); margin-top: 8px;
}

/* on-scroll reveal — supports per-element stagger via --reveal-delay */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1.1s cubic-bezier(.2,.7,.2,1),
    transform 1.1s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Slower, more cinematic variant for hero pieces and section title blocks */
.reveal--slow {
  transform: translateY(36px);
  transition-duration: 1.4s;
}

/* Image reveal: gentle fade with a slight scale settle */
.reveal--image {
  transform: translateY(24px) scale(1.03);
  transition:
    opacity 1.4s cubic-bezier(.2,.7,.2,1),
    transform 1.6s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal--image.in { opacity: 1; transform: translateY(0) scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--slow, .reveal--image,
  .fade-in > *, .kenburns {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ────────── ARCHITECTURE ────────── */
.arch__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.arch__caption {
  position: absolute; left: 24px; top: 24px; right: 24px;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: start;
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--fg);
  text-shadow: 0 1px 2px rgba(0,0,0,0.6), 0 2px 12px rgba(0,0,0,0.55);
}
.arch__tile {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  aspect-ratio: 4 / 3;
}
/* Soft top vignette so caption text stays legible over any image */
.arch__tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 38%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0) 100%);
  z-index: 1;
  pointer-events: none;
}
.arch__tile .ph-img, .arch__tile img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}

.arch__notes {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.arch__note h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 22px;
  margin-bottom: 12px;
}
.arch__note p {
  font-size: 13px; line-height: 1.7; color: var(--fg-dim);
}
.arch__note .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px; color: var(--accent);
  margin-bottom: 14px;
}

/* ────────── RESIDENCES / FLOOR PLANS ────────── */
.res {
  display: grid;
  grid-template-columns: 280px 1fr 320px;
  gap: 64px;
  align-items: start;
}
.res__nav { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.res__nav button {
  background: none; border: none; color: var(--fg);
  text-align: left; padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font: inherit; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  transition: color 0.3s;
}
.res__nav button:hover { color: var(--accent); }
.res__nav button.active { color: var(--accent); }
.res__nav button .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400;
}
.res__nav button .name em { font-style: italic; }
.res__nav button .meta {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-faint); margin-top: 4px; display: block;
}
.res__nav button .arrow {
  font-size: 14px; color: var(--fg-faint);
  transition: transform 0.3s, color 0.3s;
}
.res__nav button.active .arrow { color: var(--accent); transform: translateX(4px); }
.res__nav .left-col { display: flex; flex-direction: column; gap: 4px; }

.res__plan {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(180deg, rgba(216,201,163,0.04) 0%, rgba(216,201,163,0.01) 100%),
    var(--bg-2);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.res__plan svg { width: 86%; height: 86%; }
.res__plan-fade {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at center, transparent 50%, rgba(10,20,32,0.4) 100%);
}
.res__compass {
  position: absolute; top: 18px; right: 18px;
  font-size: 10px; letter-spacing: 0.24em;
  color: var(--accent); display: flex; align-items: center; gap: 8px;
}

.res__detail { display: flex; flex-direction: column; gap: 22px; }
.res__detail h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 36px; line-height: 1.05;
}
.res__detail h3 em { font-style: italic; }
.res__detail .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; color: var(--accent);
}
.res__detail .price-label {
  font-size: 9.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--fg-faint); margin-bottom: 6px;
}
.res__detail .desc { font-size: 13px; line-height: 1.7; color: var(--fg-dim); }

.spec-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.spec-list .row {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.spec-list .row .k { color: var(--fg-faint); letter-spacing: 0.18em; text-transform: uppercase; font-size: 10px; }
.spec-list .row .v { font-family: 'Cormorant Garamond', serif; font-size: 17px; }

/* ────────── AMENITIES ────────── */
.amen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.amen-card {
  background: var(--bg);
  padding: 44px 36px 40px;
  display: flex; flex-direction: column;
  gap: 16px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  transition: background 0.5s;
}
.amen-card:hover { background: var(--bg-2); }
.amen-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--accent);
  font-size: 14px;
}
.amen-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 28px; line-height: 1.1;
}
.amen-card p {
  font-size: 13px; line-height: 1.7; color: var(--fg-dim);
  flex: 1;
}
.amen-card .tag {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--fg-faint);
}
.amen-card .glyph {
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 6px;
}

/* ────────── INVESTMENT (warm section) ────────── */
.invest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.invest .roi-card {
  background: #fff;
  padding: 44px;
  border: 1px solid rgba(42,38,32,0.12);
}
.invest .roi-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(42,38,32,0.12);
}
.invest .roi-row:last-child { border-bottom: none; }
.invest .roi-row .k {
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(42,38,32,0.6);
}
.invest .roi-row .v {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 400;
  color: var(--warm-fg);
}
.invest .roi-row .v em { color: #9a6a3a; font-style: italic; }
.invest .roi-row .v .dim { color: rgba(42,38,32,0.45); font-size: 0.7em; }

.invest .schedule {
  margin-top: 28px;
}
.invest .schedule h5 {
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(42,38,32,0.6); margin-bottom: 14px;
}
.invest .bar {
  display: flex; height: 8px; gap: 2px;
  margin-bottom: 14px;
}
.invest .bar > div { background: #9a6a3a; flex-shrink: 0; }
.invest .bar > div:nth-child(1) { background: #9a6a3a; }
.invest .bar > div:nth-child(2) { background: #b8895c; }
.invest .bar > div:nth-child(3) { background: #d2ae84; }
.invest .bar > div:nth-child(4) { background: #e6c8a6; }
.invest .legend {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  font-size: 11px;
}
.invest .legend .leg-k { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(42,38,32,0.55); }
.invest .legend .leg-v { font-family: 'Cormorant Garamond', serif; font-size: 18px; }

.invest__why h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 56px; line-height: 1.05; letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.invest__why h2 em { font-style: italic; color: #9a6a3a; }
.invest__why .lede {
  font-size: 15px; line-height: 1.7;
  color: rgba(42,38,32,0.72);
  margin-bottom: 36px; max-width: 46ch;
}
.invest__bullets { display: flex; flex-direction: column; gap: 18px; }
.invest__bullet {
  display: grid; grid-template-columns: 60px 1fr; gap: 22px;
  padding-bottom: 18px; border-bottom: 1px solid rgba(42,38,32,0.14);
}
.invest__bullet .ix {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 28px; color: #9a6a3a; line-height: 1;
}
.invest__bullet h5 {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 22px; margin-bottom: 4px;
}
.invest__bullet p {
  font-size: 13px; line-height: 1.65;
  color: rgba(42,38,32,0.7);
}

/* ────────── LOCATION (map) ────────── */
.loc {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 64px;
  align-items: start;
}
.loc__map {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
}
.loc__map svg { width: 100%; height: 100%; display: block; }

.loc__points { display: flex; flex-direction: column; gap: 0; }
.loc__points .p {
  display: grid; grid-template-columns: 60px 1fr 90px;
  gap: 22px; align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.loc__points .p:first-child { border-top: 1px solid var(--line); }
.loc__points .p .ix {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--accent); font-size: 18px;
}
.loc__points .p h5 {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 22px;
}
.loc__points .p .desc {
  font-size: 12px; color: var(--fg-dim); margin-top: 4px; line-height: 1.6;
}
.loc__points .p .dist {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--fg);
  text-align: right;
}
.loc__points .p .dist span {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--fg-faint); margin-top: 2px;
}

/* ────────── HERITAGE ────────── */
.heritage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.heritage__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-3);
  overflow: hidden;
}
.heritage__media .ph-img, .heritage__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: sepia(0.2) contrast(0.95);
}
.heritage__media .stamp {
  position: absolute; top: 24px; left: 24px;
  border: 1px solid var(--line-strong);
  padding: 10px 14px;
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  background: rgba(10,20,32,0.5);
  backdrop-filter: blur(6px);
}
.heritage__copy h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(40px, 4.5vw, 64px); line-height: 1.05; letter-spacing: -0.01em;
  margin: 22px 0 22px;
}
.heritage__copy h2 em { font-style: italic; }
.heritage__copy p {
  font-size: 14px; line-height: 1.75; color: var(--fg-dim);
  margin-bottom: 16px; max-width: 52ch;
}
.heritage__sig {
  margin-top: 30px;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 22px;
}
.heritage__sig .role {
  font-family: 'Inter', sans-serif; font-style: normal;
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--fg-faint); margin-top: 6px;
}

.partner-strip {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0; align-items: center;
  margin-top: 90px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partner-strip > .v { background: var(--line); height: 60%; align-self: center; }
.partner-strip > div:not(.v) {
  padding: 28px 36px;
  display: flex; flex-direction: column; gap: 8px;
}
.partner-strip h6 {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 22px;
}
.partner-strip p { font-size: 11.5px; letter-spacing: 0.04em; color: var(--fg-dim); line-height: 1.5; }
.partner-strip .label {
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent);
}

/* ────────── RESERVE / CONTACT ────────── */
.reserve {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.reserve h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(48px, 5vw, 80px); line-height: 1; letter-spacing: -0.01em;
  margin: 22px 0 22px;
  max-width: 12ch;
}
.reserve h2 em { font-style: italic; }
.reserve p { font-size: 14px; line-height: 1.7; color: var(--fg-dim); margin-bottom: 16px; max-width: 46ch; }

.reserve form { display: grid; gap: 22px; }
.reserve .row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.reserve label {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 9.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--fg-faint);
}
.reserve input, .reserve select, .reserve textarea {
  background: transparent; border: none;
  border-bottom: 1px solid var(--line-strong);
  color: var(--fg); padding: 10px 0;
  font: inherit; font-size: 15px;
  font-family: 'Cormorant Garamond', serif;
  outline: none;
  transition: border-color 0.3s;
}
.reserve input:focus, .reserve select:focus, .reserve textarea:focus { border-color: var(--accent); }
.reserve textarea { resize: vertical; min-height: 80px; font-family: 'Inter', sans-serif; font-size: 13px; line-height: 1.6; }
.reserve select option { background: var(--bg); color: var(--fg); }

.reserve .submit {
  display: flex; gap: 18px; align-items: center; margin-top: 18px;
}
.reserve .privacy {
  font-size: 11px; color: var(--fg-faint); line-height: 1.6;
}

/* ────────── FOOTER ────────── */
.footer {
  background: #06101c;
  border-top: 1px solid var(--line);
  padding: 80px 64px 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px; max-width: 1440px; margin: 0 auto 60px;
  align-items: start;
}
.footer__brand img { height: 64px; }
.footer__brand .logo-light {
  filter: invert(89%) sepia(13%) saturate(550%) hue-rotate(7deg) brightness(94%) contrast(86%);
}
.footer__brand p { margin-top: 22px; font-size: 12px; line-height: 1.7; color: var(--fg-dim); max-width: 36ch; }
.footer__col h6 {
  font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--fg-faint); margin-bottom: 18px;
}
.footer__col a {
  display: block;
  color: var(--fg); text-decoration: none;
  font-size: 12.5px; padding: 6px 0;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex; justify-content: space-between;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-faint);
  max-width: 1440px; margin: 0 auto;
  padding-top: 26px; border-top: 1px solid var(--line);
}
.footer__bottom .links { display: flex; gap: 28px; }
.footer__bottom a { color: inherit; text-decoration: none; }
.footer__bottom a:hover { color: var(--fg); }

/* placeholder striped image (used for renders we don't have) */
.ph-img {
  background:
    linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.55) 100%),
    repeating-linear-gradient(45deg, var(--ph-a, #122236) 0 14px, var(--ph-b, #08111d) 14px 28px);
  position: relative;
}
.ph-img.warm { --ph-a: #d6c6a8; --ph-b: #c2ad84; }
.ph-img .ph-label {
  position: absolute; left: 14px; bottom: 14px;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.4); padding: 6px 8px;
  border: 1px solid rgba(255,255,255,0.18);
}
.ph-img.warm .ph-label { color: rgba(0,0,0,0.65); background: rgba(255,255,255,0.55); border-color: rgba(0,0,0,0.18); }

/* responsive (basic) */
@media (max-width: 1100px) {
  .section { padding: 96px 32px; }
  .topnav { padding: 18px 24px; }
  .topnav.scrolled { padding: 12px 24px; }
  .topnav__links { display: none; }
  .hero__chrome { padding: 0 24px 36px; }
  .hero__body { grid-template-columns: 1fr; gap: 32px; }
  .stats { flex-direction: row; flex-wrap: wrap; gap: 16px 28px; }
  .stat { flex: 1 1 140px; align-items: flex-start; text-align: left; }
  .arch__grid, .res, .invest, .loc, .heritage, .reserve { grid-template-columns: 1fr; gap: 40px; }
  .arch__notes, .amen-grid, .footer__top { grid-template-columns: 1fr 1fr; }
  .section__head { grid-template-columns: 1fr; gap: 22px; margin-bottom: 48px; }
  .partner-strip { grid-template-columns: 1fr; }
  .partner-strip > .v { display: none; }
}
