/* =========================================================
   Molly Resort Bohol — style.css
   Palette derived from the resort's own photography:
   charcoal + warm gold (logo), honey pine wood & terracotta
   (room interiors), pool lagoon blue, palm green, warm sand.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Core brand */
  --charcoal:      #211e1b;   /* logo background, footer, dark sections */
  --charcoal-soft: #2f2a25;
  --gold:          #b98b4e;   /* logo wordmark — primary accent */
  --gold-deep:     #9c7238;
  --gold-soft:     #d8b57e;
  --terracotta:    #bd6a45;   /* room throws — secondary accent */
  --palm:          #3f5d4c;   /* foliage — tertiary accent */
  --lagoon:        #3f8fa0;   /* pool water — used sparingly */

  /* Neutrals */
  --ivory:   #fbf8f2;
  --sand:    #f3ecdf;
  --sand-2:  #ece2d0;
  --card:    #ffffff;
  --ink:     #2b2621;
  --muted:   #6f6558;
  --line:    #e4dac6;
  --line-dk: #43403a;

  /* Type */
  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Metrics */
  --header-h: 78px;
  --container: 1180px;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 6px 20px rgba(33, 30, 27, .08);
  --shadow-md: 0 18px 44px rgba(33, 30, 27, .14);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 .5em;
  color: var(--charcoal);
  letter-spacing: .01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }

p { margin: 0 0 1.1rem; }
a { color: var(--gold-deep); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--terracotta); }
img { max-width: 100%; display: block; height: auto; }
ul { margin: 0; padding: 0; list-style: none; }

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}

.section { padding-block: clamp(3.75rem, 9vw, 7rem); }
.section--sand { background: var(--sand); }
.section--tight { padding-block: clamp(2.75rem, 6vw, 4.5rem); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin: 0 0 1rem;
  display: block;
}
.section--dark .eyebrow,
.hero .eyebrow { color: var(--gold-soft); }

.lead { font-size: 1.16rem; color: var(--muted); }

.section--dark {
  background: var(--charcoal);
  color: var(--sand);
}
.section--dark h2, .section--dark h3 { color: var(--ivory); }
.section--dark .lead { color: #c9beac; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.9rem;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(33, 30, 27, .22);
  color: var(--btn-fg);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ivory);
  border-color: rgba(251, 248, 242, .55);
}
.btn--ghost:hover {
  background: rgba(251, 248, 242, .12);
  border-color: var(--ivory);
  color: var(--ivory);
}
.btn--dark {
  --btn-bg: var(--charcoal);
  --btn-fg: var(--ivory);
}
.btn--dark:hover { background: var(--charcoal-soft); border-color: var(--charcoal-soft); color: var(--ivory); }
.btn--outline-dark {
  --btn-bg: transparent;
  --btn-fg: var(--charcoal);
  border-color: rgba(33, 30, 27, .4);
}
.btn--outline-dark:hover { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Text link with arrow */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.arrow-link span { transition: transform .3s var(--ease); }
.arrow-link:hover span { transform: translateX(6px); }
.section--dark .arrow-link { color: var(--gold-soft); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header--overlay { background: transparent; }
.site-header--solid,
.site-header.is-scrolled {
  background: var(--ivory);
  box-shadow: 0 2px 18px rgba(33, 30, 27, .08);
  border-bottom-color: var(--line);
}

.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo {
  height: 52px;
  width: auto;
  border-radius: 8px;
  display: block;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.1rem);
}
.main-nav a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-block: .4rem;
}
.site-header--overlay:not(.is-scrolled) .main-nav a { color: rgba(251, 248, 242, .92); }
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.main-nav a:not(.nav-cta):hover::after,
.main-nav a.is-active:not(.nav-cta)::after { transform: scaleX(1); transform-origin: left; }
.main-nav a:hover { color: var(--gold-deep); }
.site-header--overlay:not(.is-scrolled) .main-nav a:hover { color: #fff; }
.main-nav a.is-active { color: var(--gold-deep); }
.site-header--overlay:not(.is-scrolled) .main-nav a.is-active { color: #fff; }

.nav-cta {
  border: 1px solid currentColor;
  border-radius: var(--radius);
  padding: .7rem 1.25rem !important;
  color: var(--gold-deep) !important;
}
.nav-cta:hover { background: var(--gold); color: var(--charcoal) !important; border-color: var(--gold); }
.site-header--overlay:not(.is-scrolled) .nav-cta { color: #fff !important; border-color: rgba(255,255,255,.6); }
.site-header--overlay:not(.is-scrolled) .nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  z-index: 120;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease), background .35s var(--ease);
}
.site-header--overlay:not(.is-scrolled) .nav-toggle span { background: var(--ivory); }
body.nav-open .nav-toggle span { background: var(--ivory); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--ivory);
  background: var(--charcoal);
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(33,30,27,.55) 0%, rgba(33,30,27,.28) 40%, rgba(33,30,27,.72) 100%);
}
.hero__inner { padding-block: calc(var(--header-h) + 3rem) 5rem; max-width: 760px; }
.hero h1 { color: var(--ivory); margin-bottom: 1.1rem; }
.hero p { font-size: 1.18rem; color: rgba(251, 248, 242, .9); max-width: 30em; margin-bottom: 2rem; }
.hero .btn-row { margin-top: .5rem; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  transform: translateX(-50%);
  color: rgba(251, 248, 242, .8);
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 46px;
  background: linear-gradient(rgba(251,248,242,.8), transparent);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  background: var(--charcoal);
  isolation: isolate;
}
.page-hero__media {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.page-hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(33,30,27,.5), rgba(33,30,27,.34) 45%, rgba(33,30,27,.78));
}
.page-hero__inner { padding-block: calc(var(--header-h) + 2.5rem) clamp(2.25rem, 6vw, 4rem); max-width: 720px; }
.page-hero h1 { color: var(--ivory); margin-bottom: .5rem; }
.page-hero p { color: rgba(251, 248, 242, .88); font-size: 1.1rem; margin: 0; }

/* ---------- Quick facts bar ---------- */
.facts {
  background: var(--charcoal);
  color: var(--sand);
}
.facts ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.facts li {
  padding: 1.4rem 1.25rem;
  text-align: center;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-left: 1px solid var(--line-dk);
}
.facts li:first-child { border-left: none; }
.facts li strong { display: block; font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .02em; color: var(--gold-soft); text-transform: none; margin-bottom: .15rem; }

/* ---------- Split feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4 / 5; object-fit: cover; }
.split__media.landscape img { aspect-ratio: 4 / 3; }
.split__badge {
  position: absolute;
  bottom: -22px; right: -22px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.15rem;
  box-shadow: var(--shadow-md);
  max-width: 220px;
  line-height: 1.25;
}

/* ---------- Feature cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--sand);
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.3rem; margin-bottom: .35rem; }
.feature p { margin: 0; color: var(--muted); font-size: .96rem; }

/* ---------- Room cards ---------- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.room {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.room:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.room .media { aspect-ratio: 3 / 2; overflow: hidden; }
.room .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.room:hover .media img { transform: scale(1.06); }
.room__body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: .85rem; flex: 1; }
.room__body h3 { margin: 0; }
.room__meta { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); }
.room__desc { margin: 0; color: var(--muted); font-size: .96rem; }
.room__features { display: flex; flex-wrap: wrap; gap: .4rem .9rem; font-size: .84rem; color: var(--ink); }
.room__features li { position: relative; padding-left: 1rem; }
.room__features li::before { content: "•"; position: absolute; left: 0; color: var(--gold); }
.room__foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.room__price { font-family: var(--font-display); font-size: 1.5rem; color: var(--charcoal); }
.room__price small { font-family: var(--font-sans); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: block; }

/* ---------- Amenities list ---------- */
.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: .75rem 1.75rem;
}
.amenities li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .96rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--line);
}
.amenities li::before {
  content: "";
  flex-shrink: 0;
  margin-top: .55rem;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.section--dark .amenities li { border-bottom-color: var(--line-dk); }

/* ---------- Info / good-to-know ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.info-card h4 {
  font-family: var(--font-sans);
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 .5rem;
}
.info-card p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ---------- Ratings strip ---------- */
.ratings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.25rem;
  text-align: center;
}
.rating {
  padding: 1.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
}
.rating strong { display: block; font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-deep); line-height: 1; }
.rating span { display: block; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: .5rem; }

/* ---------- Gallery preview (mosaic) ---------- */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 1rem;
}
.mosaic a { overflow: hidden; border-radius: var(--radius-lg); }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.mosaic a:hover img { transform: scale(1.07); }
.mosaic .tall { grid-row: span 2; }
.mosaic .wide { grid-column: span 2; }

/* ---------- Full gallery ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2.25rem;
}
.gallery-filters button {
  font-family: var(--font-sans);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .65rem 1.25rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.gallery-filters button:hover { border-color: var(--gold); color: var(--charcoal); }
.gallery-filters button.is-active { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }

.gallery-grid { column-count: 3; column-gap: 1rem; }
.gallery-grid .g-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  background: var(--sand);
}
.gallery-grid .g-item img { width: 100%; transition: transform .7s var(--ease), opacity .5s var(--ease); }
.gallery-grid .g-item:hover img { transform: scale(1.05); }
.gallery-grid .g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(33,30,27,.4));
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.gallery-grid .g-item:hover::after { opacity: 1; }
.gallery-grid .g-item[hidden] { display: none; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(24, 21, 18, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 4rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  transform: scale(.96);
  transition: transform .4s var(--ease);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox__btn {
  position: absolute;
  background: rgba(251, 248, 242, .12);
  border: 1px solid rgba(251, 248, 242, .3);
  color: var(--ivory);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .25s var(--ease);
}
.lightbox__btn:hover { background: rgba(251, 248, 242, .25); }
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__prev { left: clamp(.75rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(.75rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(rgba(33,30,27,.82), rgba(33,30,27,.82)),
    url("../images/pool-facade-sunset.jpg") center / cover fixed;
  color: var(--ivory);
  text-align: center;
}
.cta-band h2 { color: var(--ivory); }
.cta-band p { color: rgba(251, 248, 242, .85); max-width: 34em; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 1.75rem; }

/* ---------- OTA / booking partners ---------- */
.ota {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  padding: clamp(1.4rem, 4vw, 2.25rem);
}
.ota h3 { font-size: 1.3rem; margin-bottom: .35rem; }
.ota p { color: var(--muted); font-size: .95rem; margin-bottom: 1.1rem; }
.ota-links { display: flex; flex-wrap: wrap; gap: .7rem; }
.ota-links a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .6rem 1.25rem;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.ota-links a::after { content: "\2197"; font-size: .9em; opacity: .5; }
.ota-links a:hover {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
  transform: translateY(-2px);
}
.ota-links a:hover::after { opacity: .9; }
.section--dark .ota-links a { border-color: var(--line-dk); color: var(--sand); }
.section--dark .ota-links a:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

/* Footer OTA row */
.footer-ota {
  border-top: 1px solid var(--line-dk);
  padding-block: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem 1rem;
  font-size: .82rem;
  color: #8f8474;
}
.footer-ota span { letter-spacing: .16em; text-transform: uppercase; font-size: .72rem; }
.footer-ota a { color: #c4b9a7; }
.footer-ota a:hover { color: var(--gold-soft); }

/* ---------- MIST menu block ---------- */
.menu-list { border-top: 1px solid var(--line-dk); }
.menu-item {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line-dk);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .3rem 1.5rem;
}
.menu-item h4 { margin: 0; font-family: var(--font-display); font-size: 1.35rem; color: var(--ivory); }
.menu-item .price { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold-soft); }
.menu-item p { grid-column: 1 / -1; margin: 0; color: #c9beac; font-size: .95rem; }

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-block h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.contact-block p, .contact-block a { margin: 0; font-size: 1rem; color: var(--ink); }
.contact-block a:hover { color: var(--gold-deep); }
.social-row { display: flex; gap: .8rem; margin-top: .3rem; }
.social-row a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--charcoal);
  transition: all .3s var(--ease);
}
.social-row a:hover { background: var(--charcoal); color: var(--ivory); transform: translateY(-3px); }
.social-row svg { width: 18px; height: 18px; }

.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.25rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.field input, .field select, .field textarea {
  font-family: var(--font-sans);
  font-size: .98rem;
  padding: .8rem .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 139, 78, .18);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .84rem; color: var(--muted); margin: 1rem 0 1.4rem; }
.form-success {
  display: none;
  background: var(--sand);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: var(--charcoal);
  font-size: .95rem;
  margin-bottom: 1.25rem;
}
.form-success.show { display: block; }

/* ---------- Map ---------- */
.map-embed {
  border: 0;
  width: 100%;
  height: 320px;
  border-radius: var(--radius-lg);
  filter: grayscale(.2) sepia(.08);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: #c4b9a7;
  padding-top: clamp(3rem, 7vw, 5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .brand-logo { height: 74px; border-radius: 10px; margin-bottom: 1.1rem; }
.footer-brand p { font-size: .92rem; color: #a89c8a; max-width: 30ch; }
.site-footer h4 {
  font-family: var(--font-sans);
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 1.1rem;
}
.site-footer li { margin-bottom: .6rem; }
.site-footer a { color: #c4b9a7; font-size: .93rem; }
.site-footer a:hover { color: var(--ivory); }
.footer-bottom {
  border-top: 1px solid var(--line-dk);
  padding-block: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: #8f8474;
}
.footer-bottom .credit span { color: var(--gold-soft); }

/* ---------- Reveal animation ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal.delay-1 { transition-delay: .1s; }
.js .reveal.delay-2 { transition-delay: .2s; }
.js .reveal.delay-3 { transition-delay: .3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .facts ul { grid-template-columns: repeat(2, 1fr); }
  .facts li:nth-child(3) { border-left: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .mosaic .wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 64px; }

  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 360px);
    background: var(--charcoal);
    padding: calc(var(--header-h) + 2rem) 2rem 2rem;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(0,0,0,.3);
  }
  body.nav-open .main-nav { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav li { border-bottom: 1px solid var(--line-dk); }
  .main-nav a {
    display: block;
    color: var(--sand) !important;
    padding: 1.15rem 0;
    font-size: .9rem;
  }
  .main-nav a::after { display: none; }
  .main-nav a.is-active { color: var(--gold-soft) !important; }
  .site-header--overlay:not(.is-scrolled) .main-nav a { color: var(--sand) !important; }
  .nav-cta {
    border: none !important;
    padding: 1.15rem 0 !important;
    color: var(--gold-soft) !important;
  }
  .nav-cta:hover { background: transparent; color: var(--ivory) !important; }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(24, 21, 18, .5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--ease), visibility .35s var(--ease);
    z-index: 90;
  }
  body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }

  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media img { aspect-ratio: 4 / 3; }
  .split__badge { right: 16px; bottom: -18px; }

  .gallery-grid { column-count: 2; }
  .menu-item { grid-template-columns: 1fr; }
  .menu-item .price { justify-self: start; }

  .cta-band { background-attachment: scroll; }
}

@media (max-width: 560px) {
  body { font-size: .98rem; }
  .facts ul { grid-template-columns: 1fr; }
  .facts li, .facts li:nth-child(3) { border-left: none; border-top: 1px solid var(--line-dk); }
  .facts li:first-child { border-top: none; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { column-count: 1; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic .wide, .mosaic .tall { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .btn { width: 100%; justify-content: center; }
  .hero .btn-row .btn, .cta-band .btn-row .btn { width: 100%; }
}

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