/* Villa Maria — Ligres Beach — global stylesheet */

@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&family=Italianno&display=swap');

:root {
  --bone: #F8F5F0;
  --bone-2: #EFEAE1;
  --teal: #1F4F4A;
  --teal-2: #2C5F73;
  --teal-deep: #163b37;
  --sand: #D9C8B4;
  --sand-2: #C6B299;
  --terracotta: #C97B5E;
  --terracotta-deep: #B36448;
  --ink: #1A1A1A;
  --ink-2: #2E2E2E;
  --mute: #6A655E;
  --hair: rgba(26,26,26,0.12);
  --hair-light: rgba(248,245,240,0.22);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --script: 'Italianno', 'Cormorant Garamond', cursive;

  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- typography ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--teal);
}
.eyebrow.on-dark { color: var(--sand); }
.eyebrow .line { display:inline-block; width: 28px; height: 1px; background: currentColor; vertical-align: middle; margin-right: 14px; opacity: 0.7; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.display {
  font-size: clamp(44px, 7vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 300;
}
.display em { font-style: italic; font-weight: 300; color: var(--teal); }
.h2 {
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.08;
  font-weight: 300;
}
.h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.18;
  font-weight: 400;
}
.lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
}
p { margin: 0 0 1.1em; font-size: 16px; color: var(--ink-2); }
p.body-lg { font-size: 17px; line-height: 1.75; }

.hair { height: 1px; background: var(--hair); border: 0; margin: 0; }
.hair.on-dark { background: var(--hair-light); }

/* ---------- container ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { max-width: 1560px; margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(70px, 9vw, 140px) 0; }

/* ---------- stat strip (label/value row with vertical dividers) ---------- */
.stat-strip { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 24px; align-items: center; }
@media (max-width: 760px) {
  .stat-strip { grid-template-columns: 1fr 1fr; gap: 24px 18px; }
  .stat-strip .stat-strip-div { display: none; }
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s ease, backdrop-filter .35s ease, color .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav-inner {
  max-width: 1560px; margin: 0 auto;
  padding: 10px var(--gutter);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
}
.nav.transparent { color: #fff; }
.nav.solid {
  background: rgba(248,245,240,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--hair);
  color: var(--ink);
}
.nav-links {
  display: flex; gap: 30px; align-items: center;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
}
.nav-links a { opacity: 0.9; transition: opacity .2s; position: relative; padding: 6px 0; }
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav .has-drop { position: relative; }
.nav .dropdown {
  position: absolute; top: 100%; left: -16px; padding-top: 16px;
  opacity: 0; pointer-events: none; transition: opacity .2s;
  min-width: 240px;
}
.nav .has-drop:hover .dropdown { opacity: 1; pointer-events: auto; }
.nav .dropdown-inner {
  background: var(--bone);
  border: 1px solid var(--hair);
  padding: 14px 0;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.15);
}
.nav .dropdown a {
  display: block; padding: 8px 22px; font-size: 11px; color: var(--ink); letter-spacing: 0.18em;
}
.nav .dropdown a:hover { background: var(--bone-2); color: var(--teal); }
.nav .dropdown a::after { display: none; }

.brand {
  display: flex; align-items: center; gap: 10px;
  text-align: center;
}
.brand-mark {
  font-family: var(--script);
  font-size: 36px; line-height: 1;
  color: var(--terracotta);
  font-weight: 400;
}
.brand-name {
  font-family: var(--serif);
  font-size: 14px; letter-spacing: 0.34em; text-transform: uppercase;
  font-weight: 500;
}
.brand-name small { display:block; font-size: 9px; letter-spacing: 0.32em; font-weight: 400; opacity: 0.7; margin-top: 3px; }

/* Live logo image */
.brand-logo {
  display: block;
  height: 88px; width: auto;
  max-width: 280px;
  object-fit: contain;
  transition: filter .35s ease;
}
.nav.transparent .brand-logo { filter: brightness(0) invert(1); }
.nav.solid .brand-logo { filter: none; }
.brand-logo--footer { height: 110px; max-width: 320px; filter: brightness(0) invert(1); opacity: 0.92; }

/* Dimitris & Nassi restaurant logo — photographic plate, shown in full colour on every background */
.dn-logo { display: block; width: auto; object-fit: contain; }
.nav .brand { min-height: 88px; }  /* keep nav height consistent with other pages */

/* Header restaurant lockup — crossfades white wordmark (over hero) to full colour (solid nav),
   mirroring the Villa Maria logo's scroll behaviour. Two aligned images stacked. */
.dn-stack { position: relative; display: inline-block; line-height: 0; }
.dn-logo--nav { height: 68px; max-width: 220px; transition: opacity .35s ease; }
.dn-logo--color { opacity: 1; }
.dn-logo--hero { position: absolute; top: 0; left: 0; opacity: 0; filter: drop-shadow(0 1px 5px rgba(0,0,0,0.40)); }
.nav.transparent .dn-logo--color { opacity: 0; }
.nav.transparent .dn-logo--hero  { opacity: 1; }
.nav.solid .dn-logo--color { opacity: 1; }
.nav.solid .dn-logo--hero  { opacity: 0; }

/* Footer restaurant logo — cream plate, reads on the dark teal footer */
.dn-logo--footer { height: 66px; max-width: 230px; margin-top: 20px; border-radius: 7px; box-shadow: 0 2px 14px rgba(0,0,0,0.28); }

/* Award certificate logos in footer */
.award-logo {
  display: inline-block; height: 44px; width: auto;
  background: rgba(248,245,240,0.94);
  padding: 6px 10px; border-radius: 4px;
  object-fit: contain;
}
.awards { gap: 14px; }

.nav-right { display: flex; justify-content: flex-end; align-items: center; gap: 22px; }
.icon-btn {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid currentColor; border-radius: 999px; opacity: 0.8;
  background: transparent; cursor: pointer; color: inherit;
  transition: background .2s, color .2s, opacity .2s;
}
.icon-btn:hover { opacity: 1; }
.nav.solid .icon-btn { border-color: var(--hair); }

/* hamburger */
.burger {
  width: 44px; height: 44px; display: none; align-items: center; justify-content: center;
  background: transparent; border: 0; cursor: pointer; color: inherit;
}
.burger span { display: block; width: 18px; height: 1.5px; background: currentColor; position: relative; }
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 1.5px; background: currentColor;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  border: 1px solid currentColor;
  background: transparent; color: inherit;
  cursor: pointer;
  transition: background .25s, color .25s, transform .25s, border-color .25s;
}
.btn:hover { transform: translateY(-1px); }
.btn-solid {
  background: var(--terracotta); border-color: var(--terracotta); color: #fff;
}
.btn-solid:hover { background: var(--terracotta-deep); border-color: var(--terracotta-deep); }
.btn-teal { background: var(--teal); border-color: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-deep); border-color: var(--teal-deep); }
.btn-ghost.on-dark { color: #fff; }
.btn-ghost.on-light { color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); }
.btn-ghost.on-dark:hover { background: #fff; color: var(--ink); }
.btn .arr { width: 14px; height: 1px; background: currentColor; position: relative; display: inline-block; }
.btn .arr::after {
  content: ''; position: absolute; right: 0; top: -3px; width: 7px; height: 7px;
  border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: rotate(45deg);
}

.text-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 500;
  color: var(--teal);
  border-bottom: 1px solid var(--teal);
  padding-bottom: 4px;
  transition: gap .25s, color .25s;
}
.text-link:hover { gap: 18px; color: var(--terracotta); border-color: var(--terracotta); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,30,30,0.5) 0%, rgba(15,30,30,0.18) 35%, rgba(15,30,30,0.55) 100%);
}
.hero-inner { position: relative; width: 100%; padding-top: 80px; padding-bottom: 60px; }
.hero h1 { color: #fff; max-width: 14ch; }
.hero .lede { color: rgba(255,255,255,0.85); max-width: 56ch; }
.hero .eyebrow { color: var(--sand); }

.hero.compact { min-height: 70vh; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255,255,255,0.7);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll .line {
  width: 1px; height: 56px; background: rgba(255,255,255,0.5); position: relative; overflow: hidden;
}
.hero-scroll .line::after {
  content: ''; position: absolute; top: -56px; left: 0; width: 1px; height: 56px; background: #fff;
  animation: scrollDot 2.4s ease-in-out infinite;
}
@keyframes scrollDot { 0% { top: -56px; } 100% { top: 56px; } }

/* ---------- footer ---------- */
.footer {
  background: var(--teal-deep); color: var(--bone);
  padding: 100px 0 36px;
}
.footer a { opacity: 0.85; transition: opacity .2s; }
.footer a:hover { opacity: 1; }
.footer .grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px;
  padding-bottom: 60px; border-bottom: 1px solid var(--hair-light);
}
.footer h5 {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 500; margin: 0 0 22px; color: var(--sand);
}
.footer p, .footer li { color: rgba(248,245,240,0.78); font-size: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer-tag { font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.4; color: var(--bone); max-width: 28ch; margin-top: 18px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
  padding-top: 32px; font-size: 12px; color: rgba(248,245,240,0.6);
}
.socials { display: flex; gap: 12px; }
.socials a { width: 36px; height: 36px; border: 1px solid var(--hair-light); border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; }
.socials a:hover { background: var(--sand); color: var(--teal-deep); border-color: var(--sand); }

.awards {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(248,245,240,0.7);
}
.awards .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border: 1px solid var(--hair-light); border-radius: 4px;
}
.awards .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--terracotta); }

/* ---------- floating book ---------- */
.float-book {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  background: var(--terracotta); color: #fff;
  padding: 16px 26px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 18px 40px -10px rgba(201,123,94,0.55);
  transition: transform .25s, box-shadow .25s, background .25s;
}
.float-book:hover { transform: translateY(-2px); background: var(--terracotta-deep); }
.float-book .pulse {
  width: 8px; height: 8px; border-radius: 999px; background: #fff; position: relative;
}
.float-book .pulse::after {
  content: ''; position: absolute; inset: -4px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 0% { transform: scale(0.7); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .4s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .48s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: .56s; }
.reveal-stagger.in > *:nth-child(9) { transition-delay: .64s; }

/* ---------- split / cards ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.split.alt { grid-template-columns: 1.05fr 1fr; }
.split-img { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.split-img.wide { aspect-ratio: 5/4; }
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.split-img:hover img { transform: scale(1.04); }
.split-img .tag {
  position: absolute; top: 18px; left: 18px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--bone); padding: 8px 14px;
  background: rgba(0,0,0,0.35); backdrop-filter: blur(4px);
}
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: clamp(40px, 5vw, 72px); }
.section-head .left { max-width: 56ch; }
.section-head .right { max-width: 36ch; padding-bottom: 8px; }

/* ---------- room cards ---------- */
.rooms-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 44px) clamp(20px, 2.5vw, 32px);
}
.room-card { cursor: pointer; display: block; }
.room-card .ph {
  aspect-ratio: 4/5; overflow: hidden; position: relative; background: var(--bone-2);
}
.room-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s ease; }
.room-card:hover .ph img { transform: scale(1.06); }
.room-card .ph::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(15,30,30,0.35));
}
.room-card .num {
  position: absolute; top: 18px; left: 18px;
  font-family: var(--serif); font-size: 14px; color: var(--bone); font-style: italic; opacity: 0.85;
}
.room-card .meta { padding-top: 18px; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.room-card .name { font-family: var(--serif); font-size: 24px; line-height: 1.1; font-weight: 400; }
.room-card .occ { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); }
.room-card .row {
  margin-top: 10px; display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; border-top: 1px solid var(--hair);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal);
}
.room-card .row .arr { width: 16px; height: 1px; background: currentColor; position: relative; transition: width .3s; }
.room-card .row .arr::after { content: ''; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: rotate(45deg); }
.room-card:hover .row .arr { width: 28px; }

/* ---------- quote banner ---------- */
.quote-banner {
  background: var(--bone-2);
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
}
.quote-banner .q {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(28px, 4vw, 52px); line-height: 1.15;
  max-width: 22ch; margin: 0 auto;
}
.quote-banner.dark {
  background: var(--teal-deep); color: var(--bone);
}
.quote-banner.dark .q { color: var(--bone); }

/* ---------- pill amenities ---------- */
.amen-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.amen-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border: 1px solid var(--hair); border-radius: 999px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-2);
  background: var(--bone);
}
.amen-pill .ico { width: 12px; height: 12px; opacity: 0.8; }

/* ---------- testimonial ---------- */
.testi-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi {
  border: 1px solid var(--hair); padding: 36px;
  background: var(--bone); display: flex; flex-direction: column; gap: 22px;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.testi:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.15); border-color: var(--sand); }
.testi .stars { display: flex; gap: 4px; color: var(--terracotta); }
.testi blockquote {
  margin: 0; font-family: var(--serif); font-size: 19px; line-height: 1.55; font-weight: 400;
  color: var(--ink); flex: 1;
}
.testi blockquote::before { content: '“'; font-size: 60px; line-height: 0.6; color: var(--sand-2); display: block; margin-bottom: 8px; }
.testi .who { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid var(--hair); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }
.testi .who strong { color: var(--teal); font-weight: 500; }

/* ---------- map ---------- */
.map-frame {
  position: relative; width: 100%; aspect-ratio: 21/9; overflow: hidden;
  background: linear-gradient(135deg, #cfdcd9, #b6c8c5 60%, #9fb8b3);
  border: 1px solid var(--hair);
}
.map-frame iframe,
.map-frame svg { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 700px) { .map-frame { aspect-ratio: 4/5; } }

/* ---------- gallery ---------- */
.masonry { columns: 3; column-gap: 18px; }
.masonry > * { break-inside: avoid; margin: 0 0 18px; overflow: hidden; position: relative; cursor: zoom-in; }
.masonry > * img { width: 100%; height: auto; transition: transform 1.2s ease, filter .4s ease; }
.masonry > *:hover img { transform: scale(1.05); }
.masonry > *::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.25));
  opacity: 0; transition: opacity .4s;
}
.masonry > *:hover::after { opacity: 1; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 56px; }
.filter-btn {
  padding: 12px 22px; border: 1px solid var(--hair); background: transparent;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500;
  cursor: pointer; transition: all .25s;
  font-family: var(--sans); color: var(--ink-2);
}
.filter-btn:hover { border-color: var(--ink); }
.filter-btn.active { background: var(--teal); color: var(--bone); border-color: var(--teal); }

/* ---------- form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--mute); font-weight: 500; }
.field input, .field textarea, .field select {
  padding: 14px 0; background: transparent; border: 0; border-bottom: 1px solid var(--hair);
  font-family: var(--sans); font-size: 16px; color: var(--ink); outline: none;
  transition: border-color .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--teal); }
.field textarea { resize: vertical; min-height: 140px; }

/* ---------- info cards ---------- */
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card {
  padding: 44px 32px; border: 1px solid var(--hair); background: var(--bone);
  display: flex; flex-direction: column; gap: 16px;
  transition: background .3s, transform .3s, border-color .3s;
}
.info-card:hover { background: var(--bone-2); transform: translateY(-3px); border-color: var(--sand); }
.info-card .ico {
  width: 48px; height: 48px; border-radius: 999px; background: var(--teal); color: var(--bone);
  display: inline-flex; align-items: center; justify-content: center;
}
.info-card .lbl { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--mute); }
.info-card .val { font-family: var(--serif); font-size: 22px; color: var(--teal); }

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 90vw);
  background: rgba(22,59,55,0.92); backdrop-filter: blur(20px);
  color: var(--bone);
  transform: translateX(100%); transition: transform .5s cubic-bezier(.4,0,.2,1);
  z-index: 110;
  padding: 100px 44px 44px;
  display: flex; flex-direction: column; gap: 28px;
  overflow-y: auto;
}
.mobile-menu.open { transform: none; }
.mobile-menu a { font-family: var(--serif); font-size: 28px; }
.mobile-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(6px);
  z-index: 105; opacity: 0; pointer-events: none; transition: opacity .4s;
}
.mobile-backdrop.open { opacity: 1; pointer-events: auto; }
.mobile-close { position: absolute; top: 24px; right: 24px; background: transparent; border: 0; color: inherit; font-size: 24px; cursor: pointer; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .footer .grid { grid-template-columns: 1fr 1fr; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-track { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
}
@media (max-width: 760px) {
  .nav-links, .nav-right .actions-desktop { display: none; }
  .nav-inner { position: relative; grid-template-columns: 1fr auto 1fr; }
  /* On mobile the burger lives on the far right, not centered with the brand */
  .burger {
    display: inline-flex;
    position: absolute;
    right: var(--gutter);
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .nav-right { min-height: 38px; }
  .split, .split.alt { grid-template-columns: 1fr; }
  .split.reverse > *:first-child { order: 2; }
  .rooms-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer .grid { grid-template-columns: 1fr; gap: 40px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .masonry { columns: 1; }
  .float-book { padding: 14px 20px; bottom: 18px; right: 18px; }
}
