/* ==========================================================================
   Sunrise Apartment Nha Trang — main.css
   Design system built from the official Brand Guidelines (Edition 01, 2026)
   Palette   : Navy #121E52 · Gold #D3B16E → Bronze #AF733E · Off-white #FCFCFC · Mist #EDF1F4
   Type      : Italiana (display) · Work Sans 300–600 (text & UI)
   ========================================================================== */

:root {
  --navy: #121E52;
  --gold: #D3B16E;
  --bronze: #AF733E;
  --offwhite: #FCFCFC;
  --mist: #EDF1F4;
  --ink-80: rgba(18, 30, 82, .8);
  --ink-70: rgba(18, 30, 82, .72);
  --ink-45: rgba(18, 30, 82, .45);
  --hairline: rgba(18, 30, 82, .12);
  --gold-grad: linear-gradient(90deg, #D3B16E, #AF733E);
  --font-display: 'Italiana', Georgia, serif;
  --font-text: 'Work Sans', Arial, Helvetica, sans-serif;
  --shadow-soft: 0 10px 40px rgba(18, 30, 82, .08);
  --shadow-lift: 0 24px 60px rgba(18, 30, 82, .14);
  --radius: 10px;
  --radius-sm: 4px;
  --container: 1180px;
  --header-h: 78px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-80);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, select, textarea { font: inherit; color: var(--navy); }
::selection { background: var(--gold); color: var(--navy); }

/* ---------- Typography ---------- */
h1, h2, h3.display { font-family: var(--font-display); font-weight: 400; color: var(--navy); }
h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); line-height: 1.08; letter-spacing: .04em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.55rem); line-height: 1.2; letter-spacing: .015em; }
h3 { font-family: var(--font-text); font-weight: 600; font-size: 1.28rem; line-height: 1.3; color: var(--navy); }
.lead { font-size: 1.13rem; font-weight: 300; line-height: 1.7; color: var(--ink-70); }
p { color: var(--ink-70); }
.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1rem;
}
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1rem; }

/* ---------- Layout ---------- */
.container { width: min(100% - 3rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 6.5rem) 0; }
.section--mist { background: var(--mist); }
.section--navy { background: var(--navy); }
.section--navy h2, .section--navy h3 { color: var(--offwhite); }
.section--navy p { color: rgba(255, 255, 255, .72); }
.section--navy .eyebrow { color: var(--gold); }
.grid { display: grid; gap: 2rem; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 500px) and (max-width: 719px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
.gold-rule {
  width: 56px; height: 2px; border: 0;
  background: var(--gold-grad);
  margin: 1.4rem 0;
}
.center .gold-rule { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.9rem;
  border-radius: var(--radius-sm);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  transition: all .35s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--solid { background: var(--navy); color: var(--gold); }
.btn--solid:hover { background: #1a2a6e; box-shadow: 0 12px 30px rgba(18, 30, 82, .28); transform: translateY(-2px); }
.btn--outline { border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--gold); transform: translateY(-2px); }
.btn--light { border-color: rgba(255, 255, 255, .55); color: var(--offwhite); }
.btn--light:hover { background: var(--offwhite); color: var(--navy); border-color: var(--offwhite); transform: translateY(-2px); }
.btn--gold { background: var(--gold-grad); color: #fff; }
.btn--gold:hover { box-shadow: 0 12px 30px rgba(175, 115, 62, .4); transform: translateY(-2px); }
.btn .icon { width: 16px; height: 16px; }
svg.icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.site-header .brand { display: flex; align-items: center; flex-shrink: 0; }
.site-header .brand img { height: 40px; width: auto; }
.brand .logo-light { display: none; }

.site-header--solid,
.site-header.is-scrolled {
  background: rgba(252, 252, 252, .86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--hairline);
}
.site-header--overlay:not(.is-scrolled):not(.nav-open) { background: transparent; }
.site-header--overlay:not(.is-scrolled):not(.nav-open) .logo-dark { display: none; }
.site-header--overlay:not(.is-scrolled):not(.nav-open) .logo-light { display: block; }
.site-header--overlay:not(.is-scrolled):not(.nav-open) .nav-list a { color: rgba(255, 255, 255, .88); }
.site-header--overlay:not(.is-scrolled):not(.nav-open) .nav-list a:hover,
.site-header--overlay:not(.is-scrolled):not(.nav-open) .nav-list a[aria-current="page"] { color: #fff; }
.site-header--overlay:not(.is-scrolled):not(.nav-open) .nav-toggle { color: #fff; }

.nav-list { display: flex; align-items: center; gap: 1.9rem; }
.nav-list a {
  font-size: .78rem; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-70);
  padding: .4rem 0;
  position: relative;
  transition: color .3s;
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1.5px;
  background: var(--gold-grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-list a:hover::after, .nav-list a[aria-current="page"]::after { transform: scaleX(1); }
.nav-list a:hover, .nav-list a[aria-current="page"] { color: var(--navy); }
.nav-cta { margin-left: .4rem; }
.nav-cta .btn { padding: .72rem 1.3rem; font-size: .72rem; }

/* CTA button inside the nav list — win over .nav-list a link styling */
.nav-list .nav-cta a,
.nav-list .nav-cta a:hover,
.site-header--overlay:not(.is-scrolled):not(.nav-open) .nav-list .nav-cta a { color: var(--gold); }
.nav-list .nav-cta a::after { display: none; }

.nav-toggle { display: none; color: var(--navy); padding: .5rem; margin-right: -.5rem; }
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .site-header .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: rgba(252, 252, 252, .97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 60px rgba(18, 30, 82, .16);
    padding: 1rem 1.5rem 2rem;
    transform: translateY(-115%);
    transition: transform .45s var(--ease);
    visibility: hidden;
  }
  .nav-open .nav { transform: translateY(0); visibility: visible; }
  .nav-open { background: rgba(252, 252, 252, .97); }
  .nav-open .icon-menu { display: none; }
  .nav-open .icon-close { display: block; }
  .nav-open .nav-toggle { color: var(--navy); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a { display: block; padding: .95rem .25rem; font-size: .85rem; border-bottom: 1px solid var(--hairline); }
  .nav-list a::after { display: none; }
  .nav-cta { margin: 1.25rem 0 0; }
  .nav-list .nav-cta a { width: 100%; border-bottom: 0; padding: .95rem 1.3rem; display: inline-flex; justify-content: center; font-size: .78rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.hero--short { min-height: 62svh; }
.hero picture, .hero > img.hero-bg { position: absolute; inset: 0; z-index: -2; height: 100%; width: 100%; }
.hero img { height: 100%; width: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(18, 30, 82, .55) 0%, rgba(18, 30, 82, .28) 45%, rgba(18, 30, 82, .62) 100%);
}
.hero-inner { padding: calc(var(--header-h) + 3rem) 1.5rem 4.5rem; max-width: 900px; }
.hero h1 { color: var(--offwhite); text-transform: uppercase; text-wrap: balance; }
.hero .hero-eyebrow {
  display: block;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.hero .lead { color: rgba(255, 255, 255, .85); max-width: 560px; margin: 1.6rem auto 0; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.6rem; }
.hero-scroll {
  position: absolute; bottom: 2.2rem; left: 50%; translate: -50% 0;
  color: rgba(255, 255, 255, .75);
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
}
.hero-scroll::after {
  content: ""; width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2.2s var(--ease) infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: .4; } 50% { opacity: 1; } }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card-media { position: relative; overflow: hidden; aspect-ratio: 3 / 2; }
.card-media img { height: 100%; width: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: .9rem; flex: 1; }
.card-body h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; letter-spacing: .01em; }
.card-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(18, 30, 82, .78);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--gold);
  font-size: .64rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  padding: .45rem .8rem;
  border-radius: 3px;
}

/* Feature spec chips on apartment cards */
.spec-row { display: flex; flex-wrap: wrap; gap: .5rem .95rem; padding: .2rem 0; }
.spec {
  display: inline-flex; align-items: center; gap: .42rem;
  font-size: .78rem; font-weight: 500;
  color: var(--ink-70);
}
.spec .icon { width: 17px; height: 17px; color: var(--bronze); flex-shrink: 0; }

/* Amenity chip list (checkmarks) */
.amenity-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .45rem .9rem; }
.amenity-list li { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--ink-70); }
.amenity-list .icon { width: 14px; height: 14px; color: var(--bronze); flex-shrink: 0; }

/* ---------- Room list (horizontal cards, home page) ---------- */
.room-list { display: flex; flex-direction: column; gap: 1.6rem; max-width: 1000px; margin-inline: auto; }
.room-row {
  display: grid;
  grid-template-columns: 340px 1fr;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.room-row:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.room-media { position: relative; overflow: hidden; min-height: 260px; }
.room-media picture, .room-media img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; }
.room-media img { transition: transform 1.1s var(--ease); }
.room-row:hover .room-media img { transform: scale(1.06); }
.room-info { padding: 1.8rem 2rem; display: flex; flex-direction: column; gap: 1.15rem; }
.room-head { display: flex; flex-direction: column; gap: .85rem; }
.room-info h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.7rem; letter-spacing: .01em; }
.room-desc { font-size: .93rem; line-height: 1.6; }
.room-foot {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--hairline);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap;
}
.room-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.room-actions .btn { padding: .8rem 1.25rem; font-size: .7rem; }

/* ---------- Price block (shared: room list + apartment detail) ---------- */
.price-block { display: flex; flex-direction: column; line-height: 1.1; }
.price-block .from { font-size: .66rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--bronze); }
.price-block .amount { font-size: 1.7rem; font-weight: 600; color: var(--navy); margin: .2rem 0; letter-spacing: .005em; }
.price-block .amount .cur { font-size: .95rem; font-weight: 500; margin-left: .12em; vertical-align: .12em; color: var(--ink-70); }
.price-block .per { font-size: .74rem; color: var(--ink-45); }
.apt-pricebox { background: var(--mist); border-radius: var(--radius); padding: 1.3rem 1.5rem; }
.apt-pricebox .amount { font-size: 2.1rem; }

@media (max-width: 760px) {
  .room-row { grid-template-columns: 1fr; }
  .room-media { min-height: 0; position: relative; aspect-ratio: 3 / 2; }
  .room-info { padding: 1.4rem 1.4rem 1.6rem; }
  .room-foot { flex-direction: column; align-items: stretch; }
  .room-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .room-actions .btn { width: 100%; }
}

/* ---------- Icon tiles (Why stay / Amenities page) ---------- */
.icon-tile { text-align: center; padding: 2.4rem 1.6rem; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-soft); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.icon-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.icon-tile .icon-ring {
  width: 64px; height: 64px; margin: 0 auto 1.3rem;
  border-radius: 50%;
  background: var(--mist);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.icon-tile .icon-ring::after {
  content: ""; position: absolute; inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: .45;
}
.icon-tile .icon { width: 26px; height: 26px; color: var(--bronze); }
.icon-tile h3 { font-size: 1.02rem; margin-bottom: .5rem; }
.icon-tile p { font-size: .88rem; line-height: 1.55; }

/* ---------- Apartment detail blocks ---------- */
.apt {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.apt-hero { position: relative; aspect-ratio: 21 / 9; overflow: hidden; }
@media (max-width: 719px) { .apt-hero { aspect-ratio: 3 / 2; } }
.apt-hero img { height: 100%; width: 100%; object-fit: cover; }
.apt-body { padding: clamp(1.6rem, 4vw, 3rem); display: grid; gap: 2rem; }
@media (min-width: 900px) { .apt-body { grid-template-columns: 1.5fr 1fr; } }
.apt-title h2 { margin-bottom: .3rem; }
.apt-title .apt-sub { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--bronze); font-weight: 600; }
.apt-desc { margin-top: 1.1rem; }
.apt-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; margin-top: 1.5rem; }
@media (max-width: 600px) { .apt-gallery { grid-template-columns: repeat(2, 1fr); } }
.apt-gallery a { display: block; border-radius: 6px; overflow: hidden; aspect-ratio: 4 / 3; }
.apt-gallery img { height: 100%; width: 100%; object-fit: cover; transition: transform .8s var(--ease), opacity .3s; }
.apt-gallery a:hover img { transform: scale(1.07); }
.apt-side { display: flex; flex-direction: column; gap: 1.4rem; }
.apt-facts {
  background: var(--mist); border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
}
.apt-facts .spec-row { gap: .8rem 1.2rem; }
.apt-side .btn { align-self: stretch; }

/* ---------- Gallery (masonry + filters) ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2.6rem; }
.filter-btn {
  padding: .62rem 1.25rem;
  border: 1px solid var(--hairline);
  border-radius: 100px;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-70);
  transition: all .3s var(--ease);
  background: #fff;
}
.filter-btn:hover { border-color: var(--gold); color: var(--navy); }
.filter-btn.is-active { background: var(--navy); border-color: var(--navy); color: var(--gold); }

.masonry { columns: 3 300px; column-gap: 1.1rem; }
.masonry-item { break-inside: avoid; margin-bottom: 1.1rem; border-radius: 8px; overflow: hidden; position: relative; display: block; box-shadow: var(--shadow-soft); }
.masonry-item img { width: 100%; height: auto; transition: transform .9s var(--ease); }
.masonry-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18, 30, 82, .55));
  opacity: 0; transition: opacity .4s;
}
.masonry-item:hover img { transform: scale(1.05); }
.masonry-item:hover::after { opacity: 1; }
.masonry-item .cap {
  position: absolute; left: 1rem; bottom: .85rem; z-index: 1;
  color: #fff; font-size: .72rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  opacity: 0; translate: 0 6px; transition: all .4s var(--ease);
}
.masonry-item:hover .cap { opacity: 1; translate: 0 0; }
.masonry-item.is-hidden { display: none; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(10, 16, 44, .94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(92vw, 1400px); max-height: 86svh;
  border-radius: 6px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .5);
}
.lightbox-caption {
  position: absolute; bottom: 1.6rem; left: 50%; translate: -50% 0;
  color: rgba(255, 255, 255, .8);
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
}
.lightbox-btn {
  position: absolute; z-index: 2;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, .85);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  transition: background .3s;
}
.lightbox-btn:hover { background: rgba(255, 255, 255, .2); }
.lightbox-btn svg { width: 22px; height: 22px; }
.lightbox-close { top: 1.4rem; right: 1.4rem; }
.lightbox-prev { left: 1.2rem; top: 50%; translate: 0 -50%; }
.lightbox-next { right: 1.2rem; top: 50%; translate: 0 -50%; }
@media (max-width: 600px) {
  .lightbox-prev { left: .4rem; } .lightbox-next { right: .4rem; }
}

/* ---------- Reviews ---------- */
.review-card {
  background: #fff; border-radius: var(--radius);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 1.2rem;
}
.review-card .stars { display: flex; gap: .25rem; color: var(--gold); }
.review-card .stars svg { width: 16px; height: 16px; }
.review-card blockquote { font-weight: 300; font-size: 1.02rem; line-height: 1.7; color: var(--ink-80); }
.review-card cite { font-style: normal; font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--bronze); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.35rem .2rem;
  font-weight: 500; font-size: 1.02rem; color: var(--navy);
  cursor: pointer; list-style: none;
  transition: color .3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--bronze); }
.faq summary .faq-icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--bronze); transition: transform .35s var(--ease); }
.faq details[open] summary .faq-icon { transform: rotate(45deg); }
.faq .faq-a { padding: 0 .2rem 1.4rem; max-width: 640px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.field label {
  display: block;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-45);
  margin-bottom: .45rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .9rem 1rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color .3s, box-shadow .3s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(211, 177, 110, .22);
}
.form-note { font-size: .85rem; color: var(--ink-45); }
.form-status { display: none; padding: 1.1rem 1.3rem; border-radius: var(--radius-sm); font-size: .92rem; margin-top: 1.2rem; }
.form-status.ok { display: block; background: #eef7ee; color: #1e5b2a; border: 1px solid #cfe8cf; }
.form-status.err { display: block; background: #fdf1ef; color: #8c3226; border: 1px solid #f2d5cf; }

/* ---------- Contact / location ---------- */
.contact-item { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.15rem 0; border-bottom: 1px solid var(--hairline); }
.contact-item .icon { width: 21px; height: 21px; color: var(--bronze); flex-shrink: 0; margin-top: .2rem; }
.contact-item strong { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-45); margin-bottom: .2rem; }
.contact-item a { color: var(--navy); font-weight: 500; }
.contact-item a:hover { color: var(--bronze); }
.social-row { display: flex; gap: .8rem; margin-top: 1.6rem; }
.social-row a {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  color: var(--navy);
  transition: all .3s var(--ease);
}
.social-row a:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); transform: translateY(-3px); }
.social-row svg { width: 18px; height: 18px; }

.map-frame {
  border: 0; width: 100%; height: 460px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: block;
}

.distance-table { width: 100%; border-collapse: collapse; }
.distance-table td { padding: .85rem .2rem; border-bottom: 1px solid var(--hairline); font-size: .95rem; }
.distance-table td:last-child { text-align: right; color: var(--bronze); font-weight: 600; white-space: nowrap; }
.distance-table td:first-child { color: var(--ink-80); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; isolation: isolate; overflow: hidden; text-align: center; }
.cta-band picture { position: absolute; inset: 0; z-index: -2; }
.cta-band img { height: 100%; width: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(18, 30, 82, .78); }
.cta-band h2 { color: var(--offwhite); }
.cta-band .lead { color: rgba(255, 255, 255, .78); max-width: 540px; margin: 1.2rem auto 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, .72); }
.footer-main { padding: 4.5rem 0 3rem; display: grid; gap: 3rem; }
@media (min-width: 900px) { .footer-main { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; } }
.site-footer .footer-logo img { height: 74px; width: auto; }
.site-footer p { color: rgba(255, 255, 255, .6); font-size: .92rem; }
.footer-col h4 {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.footer-col li { margin-bottom: .65rem; }
.footer-col a { font-size: .92rem; color: rgba(255, 255, 255, .68); transition: color .3s; }
.footer-col a:hover { color: var(--gold); }
.footer-col .contact-line { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; }
.footer-col .contact-line .icon { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: .3rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 1.5rem 0;
  display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; justify-content: space-between;
  font-size: .78rem; color: rgba(255, 255, 255, .45);
}
.site-footer .social-row a { border-color: rgba(255, 255, 255, .25); color: rgba(255, 255, 255, .8); }
.site-footer .social-row a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ---------- Floating buttons ---------- */
.float-stack {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90;
  display: flex; flex-direction: column; gap: .7rem; align-items: flex-end;
}
.float-btn {
  display: flex; align-items: center; gap: .55rem;
  border-radius: 100px;
  box-shadow: 0 14px 36px rgba(18, 30, 82, .3);
  transition: transform .3s var(--ease), box-shadow .3s;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(18, 30, 82, .38); }
.float-book {
  background: rgba(18, 30, 82, .92);
  color: var(--gold);
  padding: .95rem 1.5rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
}
.float-book .icon { width: 16px; height: 16px; }
.float-wa { background: #25D366; color: #fff; width: 54px; height: 54px; justify-content: center; }
.float-wa svg { width: 26px; height: 26px; }
.float-btn.is-hidden { display: none; }
.back-top {
  position: fixed; left: 1.2rem; bottom: 1.2rem; z-index: 90;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(252, 252, 252, .9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--hairline);
  border-radius: 50%;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
  opacity: 0; visibility: hidden; translate: 0 10px;
  transition: all .4s var(--ease);
}
.back-top.is-visible { opacity: 1; visibility: visible; translate: 0 0; }
.back-top:hover { color: var(--bronze); transform: translateY(-3px); }
.back-top svg { width: 18px; height: 18px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- Page intro (interior pages) ---------- */
.page-intro { padding: calc(var(--header-h) + clamp(3rem, 8vw, 5.5rem)) 0 clamp(3rem, 7vw, 5rem); text-align: center; }
.page-intro h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); text-transform: uppercase; }
.page-intro .lead { max-width: 620px; margin: 1.4rem auto 0; }

/* ---------- Misc ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: var(--gold);
  padding: .8rem 1.4rem; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }
.text-link { color: var(--bronze); font-weight: 500; border-bottom: 1px solid rgba(175, 115, 62, .35); transition: border-color .3s; }
.text-link:hover { border-color: var(--bronze); }
.checkerboard { display: grid; gap: clamp(2rem, 5vw, 4.5rem); }
@media (min-width: 880px) {
  .checkerboard { grid-template-columns: 1fr 1fr; align-items: center; }
  .checkerboard .swap { order: -1; }
}
.checkerboard .photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lift); }
.checkerboard .photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
