/* ============================================================
   SH Luxury — design tokens (Bulgari-inspired monochrome)
   ============================================================ */
:root {
  --ink:          #0a0a0a;
  --ink-soft:     #1a1a1a;
  --paper:        #f5f1ea;      /* warm cream */
  --paper-soft:   #ebe5d9;
  --line:         #2a2522;
  --line-soft:    #d8cfc0;
  --muted:        #8a7f72;
  --gold:         #c9a87c;
  --gold-bright:  #e6c68c;
  --gold-deep:    #a7865c;

  --font-display: "Cormorant Garamond", "Didot", "Times New Roman", serif;
  --font-body:    "Jost", "Helvetica Neue", Arial, sans-serif;
  --font-mono:    "IBM Plex Mono", "Menlo", monospace;

  --pad-x:        clamp(24px, 6vw, 96px);
  --pad-y:        clamp(80px, 14vw, 180px);
  --max:          1400px;
  --ease:         cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.01em; line-height: 1.1; margin: 0 0 .6em; }
p { margin: 0 0 1.2em; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }
.eyebrow { font-family: var(--font-body); font-size: 11px; letter-spacing: .35em; text-transform: uppercase; font-weight: 400; color: var(--muted); }
.eyebrow.gold { color: var(--gold-deep); }
.display { font-family: var(--font-display); font-weight: 300; font-style: italic; }

/* ============================================================
   Cursor glyph (subtle dot that scales near CTAs)
   ============================================================ */
.cursor {
  position: fixed; pointer-events: none; z-index: 9999;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink);
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), opacity .3s;
}
.cursor.hover { width: 42px; height: 42px; }
@media (pointer: coarse) { .cursor { display: none; } }

/* ============================================================
   Top navigation
   ============================================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px var(--pad-x);
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #fff;
  transition: background .5s var(--ease), color .5s var(--ease), backdrop-filter .5s var(--ease);
}
.site-nav.scrolled {
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 14px var(--pad-x);
  color: #fff;
}
.site-nav.light { color: var(--ink); }
.site-nav.light.scrolled { background: rgba(245,241,234,.92); color: var(--ink); }

.nav-left, .nav-right { display: flex; gap: 40px; align-items: center; }
.nav-right { justify-content: flex-end; }
.nav-center { text-align: center; }
.brand {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .32em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0 12px;
  transition: letter-spacing .5s var(--ease);
}
.brand small { display: block; font-family: var(--font-body); font-size: 9px; letter-spacing: .5em; margin-top: 4px; opacity: .7; }
.site-nav.scrolled .brand { font-size: 18px; letter-spacing: .26em; }

.nav-menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 36px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 400; }
.nav-menu a { position: relative; padding: 4px 0; opacity: .88; transition: opacity .3s; }
.nav-menu a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease); }
.nav-menu a:hover { opacity: 1; }
.nav-menu a:hover::after { transform: scaleX(1); transform-origin: left; }

.cta-book {
  font-family: var(--font-body); font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  padding: 11px 24px; border: 1px solid currentColor;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.cta-book:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.site-nav.scrolled .cta-book { border-color: rgba(255,255,255,.6); }
.site-nav.light.scrolled .cta-book { border-color: var(--ink); }

.nav-hamburger { display: none; width: 28px; height: 16px; position: relative; cursor: pointer; border: 0; background: transparent; }
.nav-hamburger span { position: absolute; left: 0; right: 0; height: 1px; background: currentColor; }
.nav-hamburger span:nth-child(1) { top: 0; }
.nav-hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-hamburger span:nth-child(3) { bottom: 0; }

@media (max-width: 900px) {
  .site-nav {
    grid-template-columns: 1fr auto;
    padding: 18px var(--pad-x);
    gap: 16px;
    align-items: center;
  }
  .site-nav.scrolled { padding: 12px var(--pad-x); }
  .nav-left, .nav-right .nav-phone, .nav-right .cta-book { display: none !important; }
  .nav-center { grid-column: 1; text-align: left; }
  .nav-right { grid-column: 2; justify-content: flex-end; }
  .nav-hamburger { display: block; }
  .brand { font-size: 15px; letter-spacing: .22em; }
  .brand small { display: none; }
}
/* lock body scroll when mobile menu is open */
body.menu-open { overflow: hidden; }
body.menu-open .site-nav { z-index: 150; } /* nav stays below overlay */

/* Mobile menu overlay */
.mobile-panel {
  position: fixed; inset: 0; width: 100vw; height: 100dvh;
  background: var(--ink); color: #fff;
  z-index: 300;
  display: flex; flex-direction: column;
  padding: clamp(24px, 6vw, 40px) var(--pad-x) 40px;
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-panel.open { transform: translateY(0); visibility: visible; }
.mobile-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-panel-head .brand { font-family: var(--font-display); font-size: 20px; letter-spacing: .28em; text-transform: uppercase; }
.mobile-panel .close { font-size: 28px; background: transparent; border: 0; color: #fff; cursor: pointer; line-height: 1; padding: 8px 12px; margin-right: -12px; }
.mobile-panel .close:hover { color: var(--gold-bright); }
.mobile-panel ul { list-style: none; padding: 0; margin: 0; }
.mobile-panel li { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-panel li:first-child { border-top: 1px solid rgba(255,255,255,.08); }
.mobile-panel a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(28px, 7vw, 38px); letter-spacing: .01em;
  color: #fff; transition: color .3s var(--ease), padding .3s var(--ease);
}
.mobile-panel a::after {
  content: "→"; opacity: 0; transform: translateX(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), color .3s;
  font-style: normal; font-size: 20px;
}
.mobile-panel a:hover,
.mobile-panel a:active { color: var(--gold-bright); padding-left: 8px; }
.mobile-panel a:hover::after { opacity: 1; transform: translateX(0); color: var(--gold-bright); }
.mobile-panel-foot {
  margin-top: auto; padding-top: 40px;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(245,241,234,.5);
  display: flex; flex-direction: column; gap: 10px;
}
.mobile-panel-foot a { font-family: var(--font-body); font-size: 12px; letter-spacing: .18em; color: rgba(245,241,234,.75); font-style: normal; padding: 0; }
.mobile-panel-foot a:hover { padding-left: 0; }
.mobile-panel-foot a::after { display: none; }

/* ============================================================
   Hero — full viewport cinematic
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.15) 40%, rgba(0,0,0,.75) 100%);
  pointer-events: none;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-media video {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1.05); } to { transform: scale(1.14) translate(-2%, -1%); } }

.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--pad-x) clamp(80px, 14vh, 160px);
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 28px; opacity: 0;
  animation: fade-up 1.1s .4s var(--ease) forwards;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 300; font-style: italic;
  font-size: clamp(48px, 9vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
  max-width: 15ch;
  opacity: 0;
  animation: fade-up 1.3s .6s var(--ease) forwards;
}
.hero h1 em { font-style: italic; color: var(--gold-bright); font-weight: 400; }
.hero-sub {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 300; letter-spacing: .02em;
  max-width: 44ch; line-height: 1.7;
  opacity: 0;
  animation: fade-up 1.3s .85s var(--ease) forwards;
}
.hero-meta {
  position: absolute; bottom: clamp(24px, 4vh, 48px); right: var(--pad-x); z-index: 2;
  font-size: 10px; letter-spacing: .4em; text-transform: uppercase;
  writing-mode: vertical-rl; transform: rotate(180deg);
  color: rgba(255,255,255,.7);
  opacity: 0;
  animation: fade-in 2s 1.5s var(--ease) forwards;
}
.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  font-size: 9px; letter-spacing: .4em; text-transform: uppercase; color: rgba(255,255,255,.6);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: 0;
  animation: fade-in 2s 1.8s var(--ease) forwards;
}
@media (max-width: 700px) {
  .hero { align-items: center; }
  .hero-content { padding-bottom: clamp(100px, 20vh, 140px); padding-top: 100px; }
  .hero h1 { font-size: clamp(40px, 12vw, 64px); max-width: 14ch; }
  .hero-sub { font-size: 15px; }
  .hero-meta { display: none; }      /* vertical text was overlapping on small screens */
  .scroll-hint { bottom: 20px; }
  .scroll-hint::before { height: 24px; }
}
.scroll-hint::before { content: ""; width: 1px; height: 36px; background: rgba(255,255,255,.4); animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(.6); opacity: .4; } }
@keyframes fade-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes fade-in { to { opacity: 1; } }

/* ============================================================
   Section — generic "chapter" with eyebrow + title + body
   ============================================================ */
.chapter {
  padding: var(--pad-y) 0;
}
.chapter.dark { background: var(--ink); color: var(--paper); }
.chapter.dark .eyebrow { color: var(--gold-bright); }

.chapter-head {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1100px; margin: 0 auto 80px; padding: 0 var(--pad-x);
  text-align: center;
}
.chapter-head .eyebrow { margin-bottom: 28px; }
.chapter-head h2 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.05;
  max-width: 18ch; margin: 0 auto 24px;
}
.chapter-head h2 em { font-style: italic; color: var(--gold-deep); }
.chapter.dark .chapter-head h2 em { color: var(--gold-bright); }
.chapter-head .lede { max-width: 54ch; margin: 0 auto; font-size: 17px; line-height: 1.75; font-weight: 300; color: var(--muted); }
.chapter.dark .chapter-head .lede { color: #b9ad9b; }

/* ============================================================
   Split feature block (image + text, alternating)
   ============================================================ */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 120px); align-items: center;
  padding: 0 var(--pad-x); max-width: var(--max); margin: 0 auto clamp(80px, 12vw, 160px);
}
.split.reverse > :first-child { order: 2; }
.split .image { overflow: hidden; position: relative; aspect-ratio: 4 / 5; }
.split .image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--ease); }
.split .image:hover img { transform: scale(1.05); }
.split .text h3 {
  font-size: clamp(28px, 3.4vw, 48px); font-weight: 300;
  margin: 20px 0 24px; max-width: 16ch;
}
.split .text h3 em { font-style: italic; color: var(--gold-deep); }
.split .text .body { font-size: 16px; line-height: 1.85; color: var(--ink-soft); max-width: 48ch; }
.split .text .more {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 32px;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  padding-bottom: 4px; border-bottom: 1px solid currentColor;
  transition: gap .35s var(--ease), border-color .35s var(--ease);
}
.split .text .more:hover { gap: 22px; border-color: var(--gold); }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse > :first-child { order: 0; }
}

/* ============================================================
   Mosaic grid (3-up restaurant / room tiles)
   ============================================================ */
.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 0;
}
.mosaic .tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}
.mosaic .tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.8s var(--ease), filter 1.2s var(--ease);
}
.mosaic .tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.85) 100%);
}
.mosaic .tile-body {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: clamp(24px, 3vw, 48px);
}
.mosaic .tile-body .eyebrow { color: var(--gold-bright); margin-bottom: 12px; display: block; }
.mosaic .tile-body h4 {
  font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1.05; margin: 0 0 14px;
}
.mosaic .tile-body p { font-size: 13px; line-height: 1.6; opacity: .8; margin: 0 0 16px; max-width: 30ch; }
.mosaic .tile-body .read-more { font-size: 10px; letter-spacing: .35em; text-transform: uppercase; opacity: .9; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.mosaic .tile:hover img { transform: scale(1.08); filter: brightness(.85); }
@media (max-width: 900px) {
  .mosaic { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .mosaic { grid-template-columns: 1fr; }
}

/* ============================================================
   Quote block (anchoring story section)
   ============================================================ */
.quote {
  padding: var(--pad-y) var(--pad-x);
  text-align: center;
  max-width: 1000px; margin: 0 auto;
}
.quote .mark {
  font-family: var(--font-display); font-size: 80px; line-height: 1; color: var(--gold);
  margin-bottom: 30px; display: inline-block;
}
.quote p {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(24px, 3vw, 42px); line-height: 1.3;
  letter-spacing: -0.005em;
  margin: 0 auto 40px;
  max-width: 28ch;
}
.quote cite {
  display: block; font-style: normal;
  font-family: var(--font-body); font-size: 11px; letter-spacing: .32em;
  text-transform: uppercase; color: var(--muted);
}

/* ============================================================
   Full-bleed image with overlay caption
   ============================================================ */
.fullbleed {
  position: relative; height: clamp(60vh, 85vh, 800px); overflow: hidden; color: #fff;
}
.fullbleed img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.fullbleed::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.5), rgba(0,0,0,0) 60%); }
.fullbleed .cap { position: absolute; left: var(--pad-x); bottom: clamp(40px, 8vh, 80px); z-index: 2; max-width: 44ch; }
.fullbleed h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 300; font-style: italic; }
.fullbleed p { font-size: 14px; letter-spacing: .04em; color: rgba(255,255,255,.85); max-width: 42ch; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink); color: var(--paper-soft);
  padding: 120px var(--pad-x) 48px;
}
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 80px; border-bottom: 1px solid rgba(245,241,234,.1); }
.footer-col h5 { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; font-weight: 500; margin-bottom: 24px; color: var(--gold-bright); font-family: var(--font-body); }
.footer-col ul { list-style: none; padding: 0; margin: 0; font-size: 14px; line-height: 2; }
.footer-col ul a { opacity: .75; transition: opacity .3s, color .3s; }
.footer-col ul a:hover { opacity: 1; color: var(--gold-bright); }
.footer-brand .mark { font-family: var(--font-display); font-size: 36px; letter-spacing: .08em; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(245,241,234,.65); max-width: 30ch; }
.footer-bottom {
  max-width: var(--max); margin: 0 auto; padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(245,241,234,.4);
}
.footer-bottom a { border-bottom: 1px solid transparent; }
.footer-bottom a:hover { border-bottom-color: var(--gold-bright); color: var(--gold-bright); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ============================================================
   Generic page template (non-home pages)
   ============================================================ */
.page-hero {
  height: 72vh; min-height: 520px; position: relative; color: #fff;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.7)); }
.page-hero .wrap { position: relative; z-index: 2; max-width: 900px; padding: 0 var(--pad-x); }
.page-hero h1 { font-size: clamp(44px, 7vw, 96px); font-weight: 300; font-style: italic; margin: 20px 0 8px; }
.page-hero .eyebrow { color: var(--gold-bright); display: block; }

.prose {
  max-width: 780px; margin: 0 auto; padding: var(--pad-y) var(--pad-x);
  font-size: 17px; line-height: 1.85; font-weight: 300;
}
.prose h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 300; font-style: italic; margin: 2em 0 .7em; color: var(--ink-soft); }
.prose h3 { font-size: clamp(22px, 2.5vw, 30px); font-weight: 400; margin: 2em 0 .6em; }
.prose p strong { font-weight: 500; color: var(--ink); }
.prose a { color: var(--gold-deep); border-bottom: 1px solid var(--line-soft); padding-bottom: 2px; transition: border-color .3s, color .3s; }
.prose a:hover { color: var(--ink); border-color: var(--gold); }
.prose img { margin: 2em 0; width: 100%; }

/* ============================================================
   Contact block
   ============================================================ */
.contact-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--ink); color: var(--paper);
}
.contact-block > div { padding: clamp(60px, 10vw, 120px) clamp(32px, 6vw, 80px); }
.contact-block h2 { font-size: clamp(32px, 4vw, 56px); font-weight: 300; font-style: italic; margin-bottom: 32px; }
.contact-block h2 em { color: var(--gold-bright); }
.contact-block .row { display: flex; gap: 12px; padding: 16px 0; border-bottom: 1px solid rgba(245,241,234,.12); font-size: 15px; }
.contact-block .row:last-child { border-bottom: 0; }
.contact-block .label { color: var(--gold-bright); width: 100px; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; padding-top: 3px; }
.contact-block .value { flex: 1; line-height: 1.7; color: rgba(245,241,234,.85); }
.contact-block .value a { border-bottom: 1px solid transparent; }
.contact-block .value a:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.contact-block .map { background: #111; padding: 0; height: 100%; min-height: 500px; }
.contact-block .map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(.9); }
@media (max-width: 900px) {
  .contact-block { grid-template-columns: 1fr; }
  .contact-block .map { min-height: 350px; }
}

/* ============================================================
   Utility
   ============================================================ */
.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; }
