/* ---------- Tokens ---------- */
:root {
  --cream: #faf6ee;
  --paper: #ffffff;
  --ink: #211d18;
  --ink-soft: #5d564b;
  --accent: #2c6fb1;      /* brand blue */
  --accent-deep: #1d5286;
  --mist: #d8e3ef;        /* cool light blue-grey */
  --navy: #16273b;        /* deep navy for dark sections */
  --navy-soft: #213a55;
  --tint: #f1ece3;        /* warm tint sections */
  --line: rgba(33, 29, 24, .12);
  --radius: 14px;
  --shadow: 0 18px 50px -22px rgba(33, 29, 24, .35);
  --maxw: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 500; line-height: 1.08; letter-spacing: -.01em; }
em { font-style: italic; color: var(--accent-deep); }
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 15px; letter-spacing: .01em;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 238, .82);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.brand-logo { height: 54px; width: auto; }
@media (max-width: 560px) { .brand-logo { height: 46px; } }
/* render the colour logo as solid white for the dark footer */
.brand-logo-footer { height: 64px; filter: brightness(0) invert(1); }
.brand-mark { color: var(--accent-deep); display: grid; place-items: center; }
.brand-text { font-family: "Fraunces", serif; font-size: 21px; font-weight: 600; line-height: 1; display: flex; flex-direction: column; }
.brand-text small { font-family: "Inter", sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a:not(.btn) { font-size: 15px; font-weight: 500; color: var(--ink-soft); position: relative; padding: 4px 0; transition: color .2s; }
.nav a:not(.btn):hover { color: var(--ink); }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--accent); transition: width .25s var(--ease); }
.nav a:not(.btn):hover::after { width: 100%; }

/* Header phone */
.nav a.nav-phone { display: inline-flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 600; color: var(--accent-deep); white-space: nowrap; }
.nav a.nav-phone::after { display: none; }
.nav a.nav-phone:hover { color: var(--ink); }
.nav-phone svg { width: 16px; height: 16px; }
.header-call { display: none; }

/* Nav dropdown (Occasions) */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 5px; font: inherit; font-size: 15px; font-weight: 500; color: var(--ink-soft); background: none; border: 0; padding: 4px 0; cursor: pointer; transition: color .2s; }
.nav-dropdown-toggle:hover { color: var(--ink); }
.nav-dropdown-toggle svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.nav-dropdown:hover .nav-dropdown-toggle svg, .nav-dropdown-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-dropdown::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 12px; }
.nav-dropdown-menu { position: absolute; top: 100%; left: 50%; margin-top: 10px; min-width: 220px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); padding: 8px; opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(6px); transition: opacity .2s, transform .2s var(--ease); z-index: 120; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown-menu.open { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a { display: block; padding: 10px 14px; border-radius: 8px; font-size: 15px; font-weight: 500; color: var(--ink-soft); white-space: nowrap; transition: background .15s, color .15s; }
.nav-dropdown-menu a:hover { background: var(--tint); color: var(--ink); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(96px, 16vw, 168px) 0 clamp(96px, 16vw, 172px); background: var(--navy); }
.hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero::after { /* readability overlay, weighted to the left where the text sits */
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(95deg, rgba(13,18,26,.86) 0%, rgba(13,18,26,.62) 42%, rgba(13,18,26,.28) 100%),
    linear-gradient(to top, rgba(13,18,26,.55), transparent 55%);
}
.hero-inner { position: relative; z-index: 2; max-width: 720px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-deep);
}
.eyebrow-link { transition: color .2s; }
.eyebrow-link:hover { color: var(--ink); }
.hero .eyebrow { color: #bcd6f0; }
.hero .eyebrow-link:hover { color: #fff; }
.hero h1 { font-size: clamp(46px, 9vw, 92px); margin: 22px 0 0; font-weight: 400; letter-spacing: -.02em; color: var(--cream); }
.hero h1 em { color: #a9cdf2; }
.hero-sub { font-size: clamp(18px, 2.3vw, 21px); color: rgba(250,246,238,.86); max-width: 540px; margin: 26px 0 0; }
.hero .btn-ghost { color: var(--cream); border-color: rgba(255,255,255,.45); }
.hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-tint { background: var(--tint); }
.section-dark { background: var(--navy); color: var(--cream); }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); margin: 14px 0 0; }
.section-head .eyebrow { color: var(--accent-deep); }
.section-head-light .eyebrow { color: var(--accent); }
.section-head-center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Sub-page helpers ---------- */
.hero-page { padding: clamp(84px, 12vw, 132px) 0; }
.hero .breadcrumb { letter-spacing: .08em; }
.hero .breadcrumb a { color: inherit; text-decoration: none; }
.hero .breadcrumb a:hover { color: #fff; text-decoration: underline; }
.container.narrow { max-width: 820px; }
.center { text-align: center; }
.center-buttons { justify-content: center; }
.prose { color: var(--ink-soft); font-size: 18px; line-height: 1.7; margin-bottom: 18px; }
.price-card { display: flex; flex-direction: column; position: relative; }
.price-amount { font-family: "Fraunces", serif; font-size: clamp(32px, 4.2vw, 42px); font-weight: 500; line-height: 1; color: var(--ink); margin: 2px 0 4px; white-space: nowrap; }
.price-amount span { font-family: "Inter", sans-serif; font-size: 15px; font-weight: 500; color: var(--ink-soft); }
.price-card-featured { border-color: var(--accent); box-shadow: 0 18px 44px -22px rgba(44,111,177,.45); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; white-space: nowrap; box-shadow: 0 8px 18px -8px rgba(44,111,177,.65); }
.price-features { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 13px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px; color: var(--ink-soft); line-height: 1.45; }
.price-features li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.price-list { list-style: none; padding: 0; margin: 22px 0 26px; border-top: 1px solid var(--line); }
.price-list li { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 16px; color: var(--ink-soft); }
.price-list li strong { color: var(--ink); font-weight: 600; white-space: nowrap; }
.price-card .btn { margin-top: auto; }
.price-note { font-size: 13.5px; color: var(--ink-soft); margin-top: 26px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 22px; font-family: "Fraunces", Georgia, serif; font-size: 19px; line-height: 1.3; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 18px; transition: color .2s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-deep); }
.faq-item summary::after { content: ""; flex-shrink: 0; width: 10px; height: 10px; border-right: 2.5px solid var(--accent-deep); border-bottom: 2.5px solid var(--accent-deep); transform: rotate(45deg) translateY(-2px); transition: transform .25s var(--ease); }
.faq-item[open] summary::after { transform: rotate(-135deg) translateY(2px); }
.faq-a { padding: 0 22px 20px; color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
.faq-a p { margin: 0; }
.card-icon .step-num { font-family: "Fraunces", serif; font-size: 26px; font-weight: 500; line-height: 1; color: var(--accent-deep); }
.hb-embed { max-width: 820px; margin: 0 auto; }
.hb-embed noscript p { color: var(--ink-soft); }
.hb-fallback { text-align: center; font-size: 14px; color: var(--ink-soft); margin-top: 16px; }

/* Google rating badge */
.rating { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; padding: 9px 18px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; box-shadow: 0 8px 22px -14px rgba(33,29,24,.35); transition: transform .25s var(--ease), box-shadow .25s; }
.rating:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -16px rgba(33,29,24,.45); }
.rating-g { flex-shrink: 0; }
.rating-score { font-weight: 700; font-size: 16px; color: var(--ink); }
.rating-stars { position: relative; display: inline-block; font-size: 17px; line-height: 1; white-space: nowrap; }
.rating-stars::before { content: "★★★★★"; color: #e0ddd6; letter-spacing: 1px; }
.rating-stars::after { content: "★★★★★"; color: #fbbc04; letter-spacing: 1px; position: absolute; left: 0; top: 0; width: 90%; overflow: hidden; }
.rating-meta { font-size: 13px; color: var(--ink-soft); }
.section-lede { color: var(--ink-soft); font-size: 18px; margin-top: 16px; }
.section-dark .section-lede { color: rgba(250,246,238,.78); }

.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--accent-deep); margin-top: 18px; transition: gap .2s var(--ease), color .2s; }
.text-link:hover { gap: 13px; color: var(--ink); }
.section-dark .text-link:hover { color: #fff; }
.text-link-inline { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about-media { position: relative; aspect-ratio: 4 / 5; }
.frame { position: absolute; border-radius: var(--radius); }
.frame { background-size: cover; background-position: center; background-repeat: no-repeat; }
.frame-1 { inset: 0 22% 16% 0; background-image: url('../img/venue-reception.webp'); box-shadow: var(--shadow); }
.frame-2 { inset: 28% 0 0 30%; background-image: url('../img/venue-ceremony.webp'); border: 6px solid var(--cream); box-shadow: var(--shadow); }
.about-copy h2 { font-size: clamp(28px, 4vw, 42px); margin: 14px 0 22px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 16px; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 32px; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card-icon { width: 52px; height: 52px; border-radius: 13px; background: var(--tint); color: var(--accent-deep); display: grid; place-items: center; margin-bottom: 22px; }
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 23px; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 15.5px; }
/* 2-up card row — must come AFTER .cards so it overrides the 3-col default */
.cards-2 { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin-inline: auto; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; grid-auto-flow: dense; }
.g {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--mist);
  display: flex; align-items: flex-end; padding: 20px;
}
.g img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .5s var(--ease); }
.g:hover img { transform: scale(1.04); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.g-feature { grid-column: span 2; grid-row: span 2; }
.g-label { color: #fff; font-family: "Fraunces", serif; font-size: 20px; font-weight: 500; text-shadow: 0 2px 12px rgba(0,0,0,.3); position: relative; z-index: 2; }
.g::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(0,0,0,.58), rgba(0,0,0,.12) 45%, transparent 70%); }
.gallery-note { text-align: center; color: var(--ink-soft); margin-top: 30px; font-size: 15.5px; }

/* ---------- Airbnb-style gallery ---------- */
.gallery-mosaic { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, clamp(150px, 19vw, 232px)); gap: 8px; border-radius: var(--radius); overflow: hidden; }
.g-item { position: relative; padding: 0; margin: 0; border: 0; cursor: pointer; overflow: hidden; background: var(--mist); }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.g-item:hover img { transform: scale(1.04); }
.g-item::after { content: ""; position: absolute; inset: 0; background: rgba(13,18,26,0); transition: background .25s; }
.g-item:hover::after { background: rgba(13,18,26,.10); }
.g-hero { grid-column: 1 / 3; grid-row: 1 / 3; }
.g-extra { display: none; }
.g-showall-btn { position: absolute; bottom: 16px; right: 16px; z-index: 3; display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--ink); border: 1px solid var(--ink); border-radius: 10px; padding: 9px 15px; font: inherit; font-size: 14px; font-weight: 600; cursor: pointer; box-shadow: 0 6px 18px -8px rgba(0,0,0,.45); transition: transform .2s var(--ease); }
.g-showall-btn:hover { transform: translateY(-2px); }
@media (max-width: 700px) {
  .gallery-mosaic { grid-template-columns: 1fr; grid-template-rows: 300px; }
  .g-hero { grid-column: 1; grid-row: 1; }
  .gallery-mosaic .g-item:not(.g-hero) { display: none; }
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; display: none; background: rgba(13,18,26,.95); }
.lightbox.open { display: grid; grid-template-rows: auto 1fr auto; }
body.lb-lock { overflow: hidden; }
.lb-top { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; color: #fff; }
.lb-counter { font-size: 14px; font-weight: 600; letter-spacing: .04em; }
.lb-close { background: none; border: 0; color: #fff; cursor: pointer; padding: 6px; line-height: 0; border-radius: 8px; transition: background .2s; }
.lb-close:hover { background: rgba(255,255,255,.14); }
.lb-stage { position: relative; display: flex; align-items: center; justify-content: center; min-height: 0; padding: 0 16px; }
.lb-img { max-width: min(1100px, 92vw); max-height: 78vh; width: auto; height: auto; object-fit: contain; border-radius: 8px; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 999px; border: 0; background: rgba(255,255,255,.92); color: var(--ink); cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.lb-nav:hover { background: #fff; }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }
.lb-caption { text-align: center; color: rgba(255,255,255,.85); font-size: 14px; padding: 14px 20px 24px; }
@media (max-width: 700px) { .lb-nav { width: 38px; height: 38px; } .lb-img { max-height: 72vh; } }

/* details strip */
.details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 22px; }
.detail img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.detail figcaption { margin-top: 13px; font-family: "Fraunces", serif; font-size: 16px; color: var(--ink-soft); text-align: center; }
@media (max-width: 700px) {
  .details { grid-template-columns: 1fr 1fr; gap: 16px; }
  .details .detail:last-child { grid-column: 1 / -1; }
  .details .detail:last-child img { aspect-ratio: 16 / 7; }
}

/* ---------- Amenities ---------- */
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 40px; }
.amenity svg { width: 30px; height: 30px; color: var(--accent); margin-bottom: 14px; }
.amenity h3 { font-size: 20px; margin-bottom: 8px; color: var(--cream); }
.amenity p { color: rgba(250,246,238,.72); font-size: 15px; }
.amenities-4up { grid-template-columns: repeat(4, 1fr); gap: 32px 28px; }
@media (max-width: 1080px) { .amenities-4up { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin-inline: auto; } }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.stars { color: var(--accent); letter-spacing: 3px; font-size: 16px; margin-bottom: 14px; }
.review p { font-family: "Fraunces", serif; font-size: 19px; line-height: 1.5; color: var(--ink); }
.review cite { display: block; margin-top: 18px; font-style: normal; font-size: 14px; font-weight: 600; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 72px); align-items: start; }
.contact-copy h2 { font-size: clamp(30px, 4.4vw, 46px); margin: 14px 0 20px; }
.contact-copy > p { color: var(--ink-soft); max-width: 440px; }
.contact-list { list-style: none; padding: 0; margin: 28px 0 32px; display: grid; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 13px; }
.contact-list svg { color: var(--accent-deep); flex-shrink: 0; }
.contact-list a { font-weight: 500; transition: color .2s; }
.contact-list a:hover { color: var(--accent-deep); }

.contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow); }
.form-title { font-family: "Fraunces", serif; font-size: 24px; margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .04em; margin-bottom: 7px; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 15px; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: 10px; background: var(--cream); color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(44,111,177,.18);
}
.field textarea { resize: vertical; }
.form-note { text-align: center; font-size: 13.5px; color: var(--ink-soft); margin-top: 14px; }
.form-note a { color: var(--accent-deep); font-weight: 600; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--cream); padding: 64px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.brand-footer { color: var(--cream); }
.brand-footer .brand-mark { color: var(--accent); }
.brand-footer .brand-text small { color: rgba(250,246,238,.6); }
.footer-brand p { color: rgba(250,246,238,.66); font-size: 15px; max-width: 300px; margin-top: 16px; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.footer-nav a, .footer-contact a { color: rgba(250,246,238,.78); transition: color .2s; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding-top: 22px; font-size: 13px; color: rgba(250,246,238,.66); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav a.nav-phone { display: none; }
  .header-call { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; width: 42px; height: 42px; color: var(--accent-deep); }
  .nav {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--cream); padding: 8px 0 18px; border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform .35s var(--ease); box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .nav a:not(.btn) { padding: 14px clamp(20px, 5vw, 48px); border-bottom: 1px solid var(--line); }
  .nav .btn { margin: 14px clamp(20px, 5vw, 48px) 0; justify-content: center; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 14px clamp(20px, 5vw, 48px); border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-dropdown::after { display: none; }
  .nav-dropdown-menu { position: static; margin-top: 0; min-width: 0; padding: 0; background: var(--tint); border: 0; border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none !important; max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
  .nav-dropdown-menu.open { max-height: 260px; }
  .nav-dropdown-menu a { padding: 13px clamp(34px, 8vw, 64px); border-bottom: 1px solid var(--line); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { aspect-ratio: 16 / 11; max-width: 460px; }
  .cards, .reviews, .amenities-grid { grid-template-columns: 1fr; }
  .amenities-grid { gap: 30px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
