/* =================================================================
   Navrang Square Mall — Boutique Edition (v2)
   Theme: Cream + Emerald · Cinematic · Editorial
   ================================================================= */

:root {
  /* Palette */
  --cream: #F4EEE2;
  --cream-2: #ECE5D5;
  --cream-3: #E4DCC9;
  --paper: #FAF6EE;
  --emerald: #0E4D3A;
  --emerald-2: #136B52;
  --emerald-deep: #082E22;
  --champagne: #C8A96A;
  --ink: #1A1F1D;
  --ink-soft: #3A4140;
  --muted: #8A8B83;
  --line: rgba(26, 31, 29, 0.12);
  --line-strong: rgba(26, 31, 29, 0.22);

  /* Typography */
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Inter Tight", system-ui, sans-serif;

  color-scheme: light;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--cream); }
html.lenis { height: auto; }
html.lenis.lenis-smooth { scroll-behavior: auto !important; }
html.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
html.lenis.lenis-stopped { overflow: clip; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
  overflow-x: hidden;
}
@media (max-width: 900px) {
  body { cursor: auto; }
}

img, video { max-width: 100%; display: block; }
button { font: inherit; cursor: none; background: none; border: 0; color: inherit; }
@media (max-width: 900px) { button { cursor: pointer; } }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--emerald); color: var(--cream); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--emerald); }

/* ===========================================================
   LOADER
   =========================================================== */
.loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--emerald);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: transform 1.1s cubic-bezier(.86,0,.07,1) 0.3s;
}
.loader.done { transform: translateY(-100%); }
.loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 32px;
  width: min(90%, 480px);
}
.loader-mark {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 96px);
  letter-spacing: -0.04em;
  font-weight: 500;
  font-style: italic;
}
.loader-bar {
  width: 100%;
  height: 1px;
  background: rgba(244, 238, 226, 0.2);
  overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0%;
  background: var(--cream);
  transition: width 1.4s cubic-bezier(.65,.05,.36,1);
}
.loader.go .loader-fill { width: 100%; }
.loader-counter {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  align-self: flex-end;
  font-feature-settings: "tnum";
}

/* ===========================================================
   CUSTOM CURSOR
   =========================================================== */
.cursor, .cursor-dot {
  position: fixed;
  pointer-events: none;
  z-index: 999;
  top: 0; left: 0;
  transition: transform 0.18s ease-out, width 0.3s, height 0.3s, opacity 0.3s, background 0.3s, border-color 0.3s;
  mix-blend-mode: difference;
}
.cursor {
  width: 36px; height: 36px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--cream);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor.hover {
  width: 80px; height: 80px;
  background: var(--cream);
  mix-blend-mode: difference;
}
.cursor.hover ~ .cursor-dot { opacity: 0; }
@media (max-width: 900px) {
  .cursor, .cursor-dot { display: none; }
}

/* ===========================================================
   HEADER
   =========================================================== */
.logo-image {
    max-width: 200px;
    width: 100%;
    padding: 0px;
}
.site-header {
    width: 100%;
    left: 0;
    top: 0;
  position: fixed;
  z-index: 90;
  padding: 18px 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  /*mix-blend-mode: difference;*/
  color: var(--cream);
  transition: all 0.5s;
}
.site-header.solid {
    /*mix-blend-mode: normal;*/
    width: 100%;
    left: 0;
    top: 0;
    padding: 4px 12px;
    background: rgb(255 255 255 / 82%);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 5px rgba(0,0,0,0.4);
}
.site-header.solid .nav-link{
    color: #343434;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-mono {
  width: 44px; height: 44px;
  border: 1px solid currentColor;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.brand-mono.dark {
  border-color: var(--emerald);
  color: var(--emerald);
  mix-blend-mode: normal;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-title { font-family: var(--serif); font-size: 17px; letter-spacing: -0.01em; font-weight: 500; }
.brand-sub { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.7; margin-top: 4px; }

.nav-desktop {
  display: none;
  justify-content: center;
  gap: 28px;
}
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-link {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-size: 13px;
  font-weight: 500;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(.65,.05,.36,1);
}
.nav-link:hover::after { transform-origin: left; transform: scaleX(1); }
.nav-num {
  font-family: var(--serif);
  font-size: 10px;
  font-style: italic;
  opacity: 0.7;
}

.header-actions { display: flex; align-items: center; gap: 12px; justify-self: end; }
.menu-toggle {
  width: 44px; height: 44px;
  border: 1px solid currentColor;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.menu-toggle span {
  width: 18px; height: 1px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.hide-sm { display: none; }
@media (min-width: 640px) { .hide-sm { display: inline-flex; } }

.mobile-drawer {
  position: fixed; inset: 0;
  z-index: 80;
  background: var(--emerald);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  clip-path: circle(0% at 100% 0%);
  transition: clip-path 0.7s cubic-bezier(.86,0,.07,1);
}
.mobile-drawer.open { clip-path: circle(150% at 100% 0%); }
.mobile-drawer-inner {
  display: flex; flex-direction: column; gap: 24px;
  text-align: center;
}
.mobile-drawer-inner a {
  font-family: var(--serif);
  font-size: clamp(28px, 6vw, 56px);
  font-weight: 400;
  font-style: italic;
}
.mobile-drawer-inner .btn { font-family: var(--sans); font-style: normal; font-size: 14px; }

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 12px;
  padding: 14px 26px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(.65,.05,.36,1);
  position: relative;
  overflow: hidden;
}
.btn.big {
  padding: 18px 32px;
  font-size: 15px;
}
.btn-emerald {
  background: var(--emerald);
  color: var(--cream);
}
.btn-emerald:hover {
  background: var(--emerald-deep);
}
.btn-emerald::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--cream);
  border-radius: 999px;
  transform: translateY(101%);
  transition: transform 0.6s cubic-bezier(.86,0,.07,1);
  z-index: -1;
}
.btn-emerald:hover { color: var(--emerald); }
.btn-emerald:hover::before { transform: translateY(0); }
.btn-emerald > * { position: relative; z-index: 1; }
.arrow-svg {
  display: inline-block;
  font-size: 18px;
  transition: transform 0.4s cubic-bezier(.65,.05,.36,1);
}
.btn:hover .arrow-svg { transform: translate(3px, -3px); }

.btn-ghost {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}
.btn-ghost::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(.65,.05,.36,1);
}
.btn-ghost:hover::after { transform-origin: left; transform: scaleX(0.6); }
.btn-ghost-num { font-family: var(--serif); font-style: italic; font-size: 12px; opacity: 0.6; }

/* ===========================================================
   TYPOGRAPHY
   =========================================================== */
.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.95;
  font-size: clamp(40px, 7vw, 110px);
}
.display.sm { font-size: clamp(32px, 4vw, 56px); }
.display em { font-style: italic; font-weight: 300; color: var(--emerald); }
.display.light { color: var(--cream); }
.display.light em { color: var(--champagne); }

.ed-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--emerald);
  margin-bottom: 32px;
}
.ed-eyebrow.light { color: var(--champagne); }
.ed-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.ed-num {
  font-family: var(--serif);
  font-size: clamp(72px, 14vw, 200px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--emerald);
}

.ed-cap {
  display: block;
  margin-top: 24px;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 16rem;
  font-style: italic;
  font-family: var(--serif);
}

.section-lede {
  max-width: 28rem;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
  color: var(--ink-soft);
}
.section-lede.light { color: rgba(244, 238, 226, 0.75); }

.emerald { color: var(--emerald); }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  overflow: hidden;
  background: var(--emerald-deep);
  color: var(--cream);
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.05) brightness(0.7);
    will-change: transform;
}
.hero-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,46,34,0.55) 0%, rgba(8,46,34,0.15) 35%, rgba(8,46,34,0.85) 100%),
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 0%, rgba(8,46,34,0.5) 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.35;
  mix-blend-mode: overlay;
}

.hero-meta {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-side {
  position: absolute;
  top: 50%;
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.2em;
  opacity: 0.7;
  white-space: nowrap;
}
.hero-side-l { left: 32px; transform: translateY(-50%) rotate(-90deg); transform-origin: left center; }
.hero-side-r { right: 32px; transform: translateY(-50%) rotate(90deg); transform-origin: right center; }
@media (max-width: 768px) { .hero-side { display: none; } }

.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 max(24px, 4vw) 64px;
  max-width: 1600px;
  margin: 0 auto;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 36px;
  align-self: flex-start;
}
.dot-pulse {
  width: 8px; height: 8px;
  background: var(--champagne);
  border-radius: 50%;
  position: relative;
}
.dot-pulse::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--champagne);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(3); opacity: 0; }
  100% { transform: scale(3); opacity: 0; }
}

.hero-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 11vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  max-width: 1500px;
}
.hero-headline .line-italic {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--champagne);
  padding-left: 6vw;
}

.hero-bottom {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
}
@media (min-width: 768px) {
  .hero-bottom { grid-template-columns: 1fr auto; gap: 64px; }
}
.hero-lede {
  max-width: 32rem;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
  opacity: 0.85;
}
.hero-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
@media (min-width: 768px) { .hero-cta-stack { align-items: flex-end; } }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.75;
  z-index: 5;
}
.hero-scroll svg { animation: scrollLine 2.4s ease-in-out infinite; }
@keyframes scrollLine {
  0%, 100% { stroke-dasharray: 64 0; transform: translateY(0); }
  50% { transform: translateY(8px); }
}

#whiteLogo
{
    display: block;
}
img#blackLogo {
    display: none;
    padding: 0 30px;
}
.site-header.solid
#whiteLogo
{
    display: none;
}
.site-header.solid
img#blackLogo {
    display: block;
    padding: 0 30px;
}

/* ===========================================================
   REVEAL ANIMATIONS
   =========================================================== */

/* Split text reveal */
[data-split] { overflow: hidden; }
[data-split] .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
}
[data-split] .word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s cubic-bezier(.65,.05,.36,1);
}
[data-split].in .word-inner { transform: translateY(0); }
[data-split].in .word:nth-child(1) .word-inner { transition-delay: 0.05s; }
[data-split].in .word:nth-child(2) .word-inner { transition-delay: 0.1s; }
[data-split].in .word:nth-child(3) .word-inner { transition-delay: 0.15s; }
[data-split].in .word:nth-child(4) .word-inner { transition-delay: 0.2s; }
[data-split].in .word:nth-child(5) .word-inner { transition-delay: 0.25s; }
[data-split].in .word:nth-child(6) .word-inner { transition-delay: 0.3s; }
[data-split].in .word:nth-child(7) .word-inner { transition-delay: 0.35s; }
[data-split].in .word:nth-child(8) .word-inner { transition-delay: 0.4s; }
[data-split].in .word:nth-child(9) .word-inner { transition-delay: 0.45s; }

/* Generic reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s cubic-bezier(.65,.05,.36,1), transform 1s cubic-bezier(.65,.05,.36,1);
}
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* Image reveal mask */
[data-reveal-mask] {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
[data-reveal-mask]::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--emerald);
  z-index: 2;
  transform-origin: bottom;
  transform: scaleY(1);
  transition: transform 1.4s cubic-bezier(.86,0,.07,1);
}
[data-reveal-mask].in::before { transform: scaleY(0); }
[data-reveal-mask] img,
[data-reveal-mask] iframe {
  transform: scale(1.18);
  transition: transform 1.6s cubic-bezier(.86,0,.07,1);
}
[data-reveal-mask].in img,
[data-reveal-mask].in iframe { transform: scale(1); }

/* ===========================================================
   MARQUEE
   =========================================================== */
.marquee-section {
  background: var(--cream);
  border-block: 1px solid var(--line);
  padding: 24px 0;
  overflow: hidden;
}
.marquee-section.reverse { background: var(--emerald-deep); color: var(--cream); border-block-color: rgba(244,238,226,0.1); }

.marquee-track {
  display: flex;
  white-space: nowrap;
  gap: 48px;
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.02em;
  animation: marquee 38s linear infinite;
}
.marquee-track.reverse-track { animation: marquee-r 32s linear infinite; }
.marquee-track em { color: var(--emerald); font-style: italic; font-weight: 300; }
.reverse .marquee-track em { color: var(--champagne); }
.marquee-track span { padding-right: 48px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.33%); }
}
@keyframes marquee-r {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ===========================================================
   SECTIONS - GENERIC
   =========================================================== */
.section {
  padding: 120px max(24px, 4vw);
  position: relative;
}
@media (min-width: 768px) { .section { padding: 160px max(32px, 5vw); } }
.section-cream-deep {
  background: var(--cream-2);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 80px;
  max-width: 1600px;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .section-head { grid-template-columns: 1.5fr 1fr; }
}

/* ===========================================================
   STORY
   =========================================================== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1600px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 80px;
    align-items: start;
  }
}

.story-num { padding-top: 32px; }
@media (min-width: 1024px) { .story-num { position: sticky; top: 140px; } }

.story-copy h2 { margin-bottom: 48px; }
.story-copy p {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 36rem;
  color: var(--ink-soft);
}
.story-copy p:first-of-type::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 4em;
  line-height: 0.9;
  float: left;
  margin: 0.05em 0.1em 0 -0.05em;
  color: var(--emerald);
  font-weight: 300;
}

.story-dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.story-dl > div { display: flex; flex-direction: column; gap: 6px; }
.story-dl dt {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.story-dl dd {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.story-figure {
  position: relative;
  aspect-ratio: 3/4;
  margin-top: 48px;
}
@media (min-width: 1024px) { .story-figure { margin-top: 80px; } }
.story-figure img { width: 100%; height: 100%; object-fit: cover; }
.story-figure figcaption {
  position: absolute;
  left: -16px; bottom: -32px;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 16px 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  max-width: 14rem;
  line-height: 1.4;
  color: var(--ink-soft);
}

/* ===========================================================
   HIGHLIGHTS BENTO
   =========================================================== */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 12px;
  max-width: 1600px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .bento { gap: 16px; grid-auto-rows: 240px; }
}

.bento-cell {
  position: relative;
  overflow: hidden;
  padding: 24px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  background: var(--cream-3);
  transition: transform 0.5s cubic-bezier(.65,.05,.36,1);
  border-radius: 4px;
}
.bento-cell:hover { transform: scale(1.005); }
.bento-cell img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cell-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,46,34,0.92) 0%, rgba(8,46,34,0.2) 50%, transparent 80%);
}
.cell-overlay.dark { background: rgba(8,46,34,0.55); }
.cell-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 12px;
  color: var(--cream);
}
.cell-content.end { justify-content: flex-end; }
.cell-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--cream);
  opacity: 0.8;
}
.cell-num.dark { color: var(--emerald); opacity: 0.7; }
.cell-num.light { color: var(--cream); opacity: 0.85; }
.cell-content h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 400;
  line-height: 1.1;
}
.cell-content p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.85;
  max-width: 22rem;
}

.hero-cell { grid-column: span 12; grid-row: span 2; }
.solid-cell {
  grid-column: span 12;
  background: var(--emerald);
  color: var(--cream);
}
.solid-cell .big-number {
  font-family: var(--serif);
  font-size: clamp(64px, 7vw, 120px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.85;
  display: block;
}
.solid-cell .cell-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 8px;
  display: block;
}
.line-cell {
  grid-column: span 6;
  background: transparent;
  border: 1px solid var(--line-strong);
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.line-cell h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.1;
}
.line-cell .cell-label {
  display: block;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.tall-cell { grid-column: span 12; grid-row: span 2; }
.image-cell { grid-column: span 12; }
.line-cell.mini { grid-column: span 6; }
.food-cell {
  grid-column: span 12;
  background: var(--emerald-deep);
  color: var(--cream);
}
.food-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
}
.food-cell h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 300;
  font-style: italic;
}
.food-cell .cell-label {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--champagne);
}

@media (min-width: 768px) {
  .hero-cell { grid-column: span 8; }
  .solid-cell { grid-column: span 4; }
  .line-cell { grid-column: span 4; }
  .tall-cell { grid-column: span 4; }
  .image-cell { grid-column: span 4; }
  .line-cell.mini { grid-column: span 2; }
  .food-cell { grid-column: span 4; }
}

/* ===========================================================
   AMENITIES (sticky storytelling)
   =========================================================== */
.amenities-section { padding-top: 120px; padding-bottom: 80px; }
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  max-width: 1600px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .amenities-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 96px;
    align-items: start;
  }
}

.amenities-sticky h2 { margin: 24px 0; }
.amenities-sticky p { color: var(--ink-soft); max-width: 26rem; line-height: 1.6; }
.amenity-counter {
  margin-top: 48px;
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--serif);
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.amenity-counter span:first-child {
  font-size: clamp(56px, 8vw, 120px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--emerald);
  font-weight: 300;
}
.amenity-counter span:last-child {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--sans);
}
@media (min-width: 1024px) { .amenities-sticky { position: sticky; top: 140px; } }

.amenities-list { display: flex; flex-direction: column; }
.amenity-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  transition: background 0.5s ease, padding 0.5s ease;
}
.amenity-row:last-child { border-bottom: 1px solid var(--line); }
.amenity-row:hover {
  padding-inline: 24px;
}
.amen-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
}
.amenity-row h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  transition: color 0.4s, font-style 0.4s;
}
.amenity-row:hover h3 {
  color: var(--emerald);
  font-style: italic;
}
.amen-arrow {
  font-size: 20px;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.4s, transform 0.4s;
  color: var(--emerald);
}
.amenity-row:hover .amen-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===========================================================
   LOCATION
   =========================================================== */
.location-section {
  background: var(--emerald-deep);
  color: var(--cream);
  position: relative;
}
.location-section::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.4;
  mix-blend-mode: overlay;
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1600px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .loc-grid { grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: stretch; }
}

.loc-list { display: flex; flex-direction: column; }
.loc-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(244,238,226,0.15);
  transition: padding 0.4s ease;
}
.loc-row:last-child { border-bottom: 1px solid rgba(244,238,226,0.15); }
.loc-row:hover { padding-inline: 16px; }
.loc-symbol {
  font-size: 22px;
  color: var(--champagne);
  font-family: var(--serif);
}
.loc-text h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  margin-bottom: 4px;
}
.loc-cap {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(244,238,226,0.55);
  font-style: italic;
  font-family: var(--serif);
}
.loc-dist {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--champagne);
  font-variant-numeric: tabular-nums;
  font-weight: 300;
}

.loc-map {
  position: relative;
  aspect-ratio: 4/5;
  border: 1px solid rgba(244,238,226,0.1);
  overflow: hidden;
}
.loc-map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) grayscale(0.4) contrast(1.05) brightness(0.95);
}
.loc-map-tint {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, transparent 0%, rgba(8,46,34,0.7) 100%),
    linear-gradient(to bottom, rgba(8,46,34,0.2), transparent 40%, rgba(8,46,34,0.8));
  pointer-events: none;
}
.loc-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 24px; height: 24px;
  pointer-events: none;
}
.pin-dot {
  position: absolute;
  inset: 8px;
  background: var(--champagne);
  border-radius: 50%;
}
.pin-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  animation: pinpulse 2.4s ease-out infinite;
}
@keyframes pinpulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}
.loc-cap-bottom {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--cream);
  text-align: center;
}

/* ===========================================================
   GALLERY
   =========================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  max-width: 1600px;
  margin: 0 auto;
}
.g-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  border-radius: 4px;
  transition: transform 0.5s cubic-bezier(.65,.05,.36,1);
}
.g-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.65,.05,.36,1), filter 0.6s;
  filter: saturate(0.85);
}
.g-card:hover img { transform: scale(1.06); filter: saturate(1.1); }
.g-meta {
  position: absolute;
  left: 20px; bottom: 20px;
  z-index: 2;
  display: flex; flex-direction: column;
  color: var(--cream);
  font-family: var(--serif);
  text-shadow: 0 4px 24px rgba(0,0,0,0.45);
}
.g-meta em {
  font-style: italic;
  font-size: 12px;
  opacity: 0.7;
}
.g-meta span { font-size: 18px; font-weight: 400; }
.g-1 { grid-column: span 12; aspect-ratio: 16/9; }
.g-2 { grid-column: span 12; }
.g-3 { grid-column: span 6; }
.g-4 { grid-column: span 6; }
.g-5 { grid-column: span 6; }
.g-6 { grid-column: span 6; }
@media (min-width: 768px) {
  .g-1 { grid-column: span 7; aspect-ratio: 4/5; }
  .g-2 { grid-column: span 5; aspect-ratio: 4/5; }
  .g-3 { grid-column: span 5; aspect-ratio: 5/4; }
  .g-4 { grid-column: span 4; aspect-ratio: 5/4; }
  .g-5 { grid-column: span 3; aspect-ratio: 4/5; }
  .g-6 { grid-column: span 12; aspect-ratio: 21/9; }
}

/* ===========================================================
   ENQUIRY
   =========================================================== */
.enquiry-section {
  background: var(--cream-2);
}
.enq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  max-width: 1600px;
  margin: 0 auto;
  align-items: start;
}
@media (min-width: 1024px) {
  .enq-grid { grid-template-columns: 1fr 1.2fr; gap: 96px; }
}
.enq-left h2 { margin: 24px 0; }
.enq-left p { color: var(--ink-soft); max-width: 28rem; line-height: 1.6; margin-bottom: 48px; }

.enq-contacts { display: flex; flex-direction: column; }
.enq-contact {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  transition: padding 0.4s;
}
.enq-contact:not(.static):hover { padding-inline: 16px; }
.enq-contact:last-child { border-bottom: 1px solid var(--line); }
.enq-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--emerald);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--emerald);
  transition: background 0.3s, color 0.3s;
}
.enq-contact:hover .enq-icon { background: var(--emerald); color: var(--cream); }
.enq-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  width: 60px;
}
.enq-value {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  text-align: right;
  justify-self: end;
}

.enq-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  background: var(--cream);
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
@media (min-width: 640px) { .enq-form { grid-template-columns: repeat(2, 1fr); padding: 56px; } }
.enq-field { display: flex; flex-direction: column; }
.enq-field.full { grid-column: 1 / -1; }
.enq-field label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.enq-field input,
.enq-field select,
.enq-field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 10px 0;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  outline: none;
  resize: none;
  transition: border-color 0.3s;
  width: 100%;
}
.enq-field input::placeholder, .enq-field textarea::placeholder { color: var(--muted); font-style: italic; }
.enq-field input:focus, .enq-field select:focus, .enq-field textarea:focus { border-bottom-color: var(--emerald); }
.enq-foot {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
@media (min-width: 640px) { .enq-foot { flex-direction: row; align-items: center; justify-content: space-between; } }
.fineprint { font-size: 12px; color: var(--muted); max-width: 24rem; line-height: 1.5; }
.form-success {
  grid-column: 1 / -1;
  background: var(--emerald);
  color: var(--cream);
  padding: 16px 20px;
  font-size: 14px;
  display: flex; gap: 12px; align-items: center;
}

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer {
  background: var(--emerald-deep);
  color: var(--cream);
  position: relative;
}
.foot-marquee {
  border-bottom: 1px solid rgba(244,238,226,0.1);
  padding: 32px 0;
  overflow: hidden;
}
a.brand-logo {
    max-width: 200px;
    display: block;
    margin-bottom: 4px;
}
.foot-marquee .marquee-track {
  font-size: clamp(36px, 6vw, 96px);
  animation-duration: 28s;
}
.foot-marquee em { color: var(--champagne); font-style: italic; font-weight: 300; }

.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  padding: 96px max(24px, 4vw);
  max-width: 1600px;
  margin: 0 auto;
}
@media (min-width: 768px) { .foot-grid { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; } }

.foot-brand .brand-mono { margin-bottom: 24px; border-color: var(--cream); color: var(--cream); }
.foot-brand h3 { margin-bottom: 24px; max-width: 18rem; line-height: 1; }
.foot-brand p { color: rgba(244,238,226,0.65); max-width: 28rem; font-size: 14px; line-height: 1.6; }
.socials { margin-top: 32px; display: flex; flex-direction: column; gap: 8px; }
.socials a {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  width: fit-content;
  position: relative;
  padding-bottom: 2px;
}
.socials a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s;
}
.socials a:hover::after { transform: scaleX(1); transform-origin: left; }

.foot-col { display: flex; flex-direction: column; gap: 16px; }
.foot-title {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 8px;
}
.foot-col ul { display: flex; flex-direction: column; gap: 10px; }
.foot-col a, .foot-col li { color: rgba(244,238,226,0.7); font-size: 15px; transition: color 0.3s; }
.foot-col a:hover { color: var(--cream); }

.foot-bottom {
    text-align: center;
  padding: 24px max(24px, 4vw);
  border-top: 1px solid rgba(244,238,226,0.1);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(244,238,226,0.5);
}

.foot-bottom p{
    margin-bottom: 6px;
}
@media (min-width: 768px) { .foot-bottom { flex-direction: row; justify-content: space-between; } }

/* ===========================================================
   FLOATING ACTIONS
   =========================================================== */
.floating {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 60;
  display: flex; flex-direction: column; gap: 12px;
}
.fab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  background: var(--emerald);
  color: var(--cream);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 12px 32px rgba(8,46,34,0.25);
  transition: transform 0.3s, background 0.3s;
}
.fab-wa { background: #1F8E5A; }
.fab:hover { transform: translateY(-2px); }

/* ===========================================================
   LIGHTBOX
   =========================================================== */
.lightbox {
  position: fixed; inset: 0;
  z-index: 150;
  background: rgba(8,46,34,0.94);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: lbFade 0.4s;
}
.lightbox[hidden] { display: none; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-height: 88vh;
  max-width: 92vw;
  object-fit: contain;
  animation: lbScale 0.5s cubic-bezier(.65,.05,.36,1);
}
@keyframes lbScale { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lb-close {
  position: absolute;
  top: 24px; right: 24px;
  padding: 12px 20px;
  border: 1px solid rgba(244,238,226,0.3);
  color: var(--cream);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.lb-close:hover { background: var(--cream); color: var(--emerald); border-color: var(--cream); }

/* ===========================================================
   REDUCED MOTION
   =========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track, .foot-marquee .marquee-track { animation: none; }
}
