/* =====================================================================
   AURELIA FARMHOUSE
   Design tokens first, then base, then components, then sections.
   Four hues only: warm paper, near-black night, brass, olive.
   ===================================================================== */

:root {
  /* Neutrals — warm, never grey */
  --ink: #16140f;
  --ink-soft: #3b362c;
  --muted: #6b6355;
  --line: #e2dacb;
  --paper: #fbf8f2;
  --cream: #f3ecdf;
  --sand: #e7dcc7;

  /* Night */
  --night: #100e0a;
  --night-soft: #1d1a14;
  --night-line: #2f2a21;

  /* Brass — the single accent */
  --brass: #b08d57;
  --brass-bright: #c9a86e;
  --brass-deep: #7a5e33;

  --olive: #6b7a55;
  --danger: #a4483f;
  --success: #4f6b47;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --shadow-sm: 0 2px 8px rgba(22, 20, 15, .06);
  --shadow-md: 0 8px 28px rgba(22, 20, 15, .09);
  --shadow-lg: 0 24px 60px rgba(22, 20, 15, .14);

  --ease: cubic-bezier(.22, 1, .36, 1);

  --gutter: clamp(1.25rem, .5rem + 3.2vw, 4.5rem);
  --section-y: clamp(4.5rem, 3rem + 8vw, 10rem);
  --max: 88rem;
}

/* --- Base ------------------------------------------------------------ */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0;
}
h1 { font-size: clamp(2.4rem, 1.3rem + 5vw, 5.5rem); }
h2 { font-size: clamp(2rem, 1.25rem + 3.2vw, 3.75rem); }
h3 { font-size: clamp(1.4rem, 1.1rem + 1.5vw, 2.25rem); }
p  { margin: 0 0 1.1em; }

.shell { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.shell--text { max-width: 52rem; }

.eyebrow {
  font-size: .6875rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brass-deep);
  margin: 0 0 1.25rem;
  display: flex; align-items: center; gap: .8rem;
}
.eyebrow::before {
  content: ''; width: 2.25rem; height: 1px;
  background: currentColor; opacity: .55; flex: none;
}
.eyebrow--center { justify-content: center; }

.lede {
  font-size: clamp(1.1rem, 1rem + .55vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 42ch;
}
.lede--center { margin-inline: auto; text-align: center; }

.section { padding-block: var(--section-y); position: relative; }
.section--cream { background: var(--cream); }
.section--dark  { background: var(--night); color: #f6f1e6; }
.section--dark .eyebrow { color: var(--brass-bright); }
.section--dark .lede    { color: #cdc4b4; }
.section__head { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section__head--center { text-align: center; }
.section__head--center .lede { margin-inline: auto; }

/* --- Buttons --------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .6rem;
  padding: 1rem 1.9rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  transition: background .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: var(--brass-deep); }

.btn--outline { border-color: currentColor; color: inherit; background: none; }
.btn--outline:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.section--dark .btn--primary { background: var(--brass); color: var(--night); }
.section--dark .btn--primary:hover { background: var(--brass-bright); }
.section--dark .btn--outline:hover { background: #f6f1e6; color: var(--night); border-color: #f6f1e6; }

.btn--wa { background: #1f8a4c; color: #fff; }
.btn--wa:hover { background: #197a42; }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.btn-row--center { justify-content: center; }

/* On a phone, two buttons of different widths look accidental. */
@media (max-width: 520px) {
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
}

/* --- Header ---------------------------------------------------------- */

.header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  padding-block: 1.1rem;
  transition: background .4s var(--ease), box-shadow .4s var(--ease),
              padding .4s var(--ease);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.header--solid {
  background: rgba(251, 248, 242, .96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding-block: .7rem;
}

.logo { display: flex; flex-direction: column; text-decoration: none; line-height: 1; }
.logo__name {
  font-family: var(--font-display);
  font-size: 1.35rem; letter-spacing: -.01em; color: #fff;
  transition: color .4s var(--ease);
}
.logo__place {
  font-size: .5625rem; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-top: .35rem;
  transition: color .4s var(--ease);
}
.header--solid .logo__name  { color: var(--ink); }
.header--solid .logo__place { color: var(--muted); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  color: rgba(255,255,255,.9); text-decoration: none;
  font-size: .8125rem; letter-spacing: .04em;
  transition: color .3s var(--ease), opacity .3s var(--ease);
}
.nav a:hover { color: #fff; }
.header--solid .nav a { color: var(--ink-soft); }
.header--solid .nav a:hover { color: var(--brass-deep); }

.header .btn--nav {
  padding: .75rem 1.4rem; font-size: .6875rem;
  background: var(--brass); color: var(--night); border: none;
}
.header .btn--nav:hover { background: var(--brass-bright); }

.burger {
  display: none; background: none; border: 0; padding: .5rem;
  width: 2.75rem; height: 2.75rem;
}
.burger span {
  display: block; height: 1.5px; width: 1.4rem; background: #fff;
  margin: 4px auto; transition: background .3s var(--ease), transform .3s var(--ease), opacity .3s;
}
.header--solid .burger span { background: var(--ink); }

@media (max-width: 900px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(20rem, 82vw);
    background: var(--night); flex-direction: column;
    align-items: flex-start; justify-content: center;
    gap: 1.4rem; padding: 2rem var(--gutter);
    transform: translateX(100%); z-index: 61;
    /* Hidden, not merely pushed aside — an off-screen link is still
       focusable and still announced by a screen reader. */
    visibility: hidden;
    transition: transform .45s var(--ease), visibility 0s linear .45s;
  }
  .nav--open { transform: none; visibility: visible; transition-delay: 0s; }
  .nav a, .header--solid .nav a { color: #f6f1e6; font-size: 1.05rem; }
  .nav .btn--nav { margin-top: 1rem; }
  .nav-open-body { overflow: hidden; }
}

/* --- Hero slider ----------------------------------------------------- */

.hero { position: relative; height: 100svh; min-height: 34rem; overflow: hidden; background: var(--night); }

.hero__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.4s var(--ease);
  /* The slides are stacked. Without this, the invisible one on top
     swallows every click meant for the visible one underneath. */
  pointer-events: none;
}
.hero__slide--active { opacity: 1; pointer-events: auto; }

.hero__img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s linear;
}
.hero__slide--active .hero__img { transform: scale(1); }

.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,14,10,.55) 0%, rgba(16,14,10,.15) 35%, rgba(16,14,10,.82) 100%);
}

.hero__content {
  position: absolute; inset: auto 0 0 0;
  padding-bottom: clamp(5rem, 12vh, 9rem);
  color: #fff;
}
.hero__eyebrow {
  font-size: .6875rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--brass-bright); margin: 0 0 1.5rem; font-weight: 600;
}
.hero__title {
  font-size: clamp(2.6rem, 1.2rem + 6.2vw, 6.5rem);
  line-height: .98; margin: 0 0 1.5rem; max-width: 18ch;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero__text {
  font-size: clamp(1.05rem, .95rem + .6vw, 1.4rem);
  color: rgba(255,255,255,.9); max-width: 40ch; margin: 0 0 2.25rem;
}
.hero__slide--active .hero__eyebrow,
.hero__slide--active .hero__title,
.hero__slide--active .hero__text,
.hero__slide--active .btn-row { animation: rise .9s var(--ease) both; }
.hero__slide--active .hero__title { animation-delay: .12s; }
.hero__slide--active .hero__text  { animation-delay: .22s; }
.hero__slide--active .btn-row     { animation-delay: .32s; margin-top: 0; }

@keyframes rise { from { opacity: 0; transform: translateY(1.6rem); } to { opacity: 1; transform: none; } }

.hero__dots {
  position: absolute; left: var(--gutter); bottom: clamp(2rem, 5vh, 3.25rem);
  display: flex; gap: .6rem; z-index: 3;
}
.hero__dot {
  width: 2.5rem; height: 2px; border: 0; padding: 0;
  background: rgba(255,255,255,.35); position: relative; overflow: hidden;
}
.hero__dot::after {
  content: ''; position: absolute; inset: 0; background: #fff;
  transform: scaleX(0); transform-origin: left;
}
.hero__dot--active::after { animation: dotfill 6s linear forwards; }
@keyframes dotfill { to { transform: scaleX(1); } }
.hero__dot:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }

.hero__scroll {
  position: absolute; right: var(--gutter); bottom: clamp(2rem, 5vh, 3.25rem);
  color: rgba(255,255,255,.6); font-size: .625rem;
  letter-spacing: .22em; text-transform: uppercase;
  writing-mode: vertical-rl; text-decoration: none;
  display: flex; align-items: center; gap: .75rem;
}
.hero__scroll::after { content: ''; width: 1px; height: 3rem; background: currentColor; animation: drop 2s var(--ease) infinite; }
@keyframes drop { 0%,100% { transform: scaleY(.4); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }
@media (max-width: 700px) { .hero__scroll { display: none; } }

/* --- Reveal on scroll ------------------------------------------------ */

[data-reveal] { opacity: 0; transform: translateY(1.75rem); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  .hero__img, .hero__slide { transition: none; }
  .hero__slide--active * { animation: none !important; }
  .hero__dot--active::after { animation: none; transform: scaleX(1); }
}

/* --- About: contrast rows -------------------------------------------- */

.contrasts { border-top: 1px solid var(--sand); margin-top: 3rem; }
.contrast {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: clamp(1rem, 4vw, 3rem); align-items: center;
  padding-block: clamp(1.1rem, 2.5vw, 1.8rem);
  border-bottom: 1px solid var(--sand);
}
.contrast__before {
  text-align: right; color: var(--muted);
  text-decoration: line-through; text-decoration-thickness: 1px;
  font-size: clamp(.95rem, .9rem + .3vw, 1.15rem);
}
.contrast__arrow { color: var(--brass-deep); font-size: 1rem; }
.contrast__after {
  font-family: var(--font-display); font-size: clamp(1.1rem, 1rem + .8vw, 1.6rem);
  line-height: 1.25;
}
@media (max-width: 640px) {
  .contrast { grid-template-columns: 1fr; gap: .4rem; text-align: left; }
  .contrast__before { text-align: left; }
  .contrast__arrow { display: none; }
}

.closing-line {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 2vw, 2.75rem);
  color: var(--brass-deep); margin-top: 3rem; text-align: center;
}

/* --- Stats ----------------------------------------------------------- */

.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem); margin-block: 3rem;
}
.stat__value { font-family: var(--font-display); font-size: clamp(2.4rem, 1.6rem + 3vw, 4rem); line-height: 1; }
.stat__unit  { font-size: .8125rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-deep); margin-top: .6rem; }
.stat__label { font-size: .9375rem; color: var(--muted); margin-top: .5rem; max-width: 20ch; }

.tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag {
  border: 1px solid var(--line); border-radius: 999px;
  padding: .45rem 1.05rem; font-size: .8125rem; color: var(--ink-soft);
}

/* --- Split (image + text) -------------------------------------------- */

.split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.split--reverse .split__media { order: 2; }
@media (max-width: 800px) { .split--reverse .split__media { order: 0; } }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-md); }
.split__badge {
  position: absolute; bottom: -1.25rem; right: -1.25rem;
  background: var(--brass); color: var(--night);
  padding: 1.1rem 1.5rem; text-align: center; box-shadow: var(--shadow-md);
}
.split__badge b { display: block; font-family: var(--font-display); font-size: 1.6rem; line-height: 1; }
.split__badge span { font-size: .625rem; letter-spacing: .18em; text-transform: uppercase; }
@media (max-width: 560px) { .split__badge { right: 0; bottom: -1rem; } }

/* --- Pool feature ---------------------------------------------------- */

.pool-figure { position: relative; margin-top: 3rem; }
.pool-figure img { width: 100%; aspect-ratio: 21/9; object-fit: cover; }
@media (max-width: 700px) { .pool-figure img { aspect-ratio: 4/3; } }

/* --- Amenities ------------------------------------------------------- */

.amenity {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center;
}
.amenity__stage { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--sand); }
.amenity__stage img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .7s var(--ease);
}
.amenity__stage img.is-shown { opacity: 1; }
.amenity__name { font-family: var(--font-display); font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.75rem); }
.amenity__desc { color: var(--muted); margin-top: .75rem; font-size: 1.0625rem; max-width: 34ch; }
.amenity__count { font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brass-deep); margin-bottom: 1rem; }

.amenity-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.amenity-chip {
  border: 1px solid var(--line); background: none; border-radius: 999px;
  padding: .5rem 1.05rem; font-size: .8125rem; color: var(--muted);
  transition: all .3s var(--ease);
}
.amenity-chip:hover { border-color: var(--brass); color: var(--ink); }
.amenity-chip--active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.amenity-chip:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }

/* --- Moments / journey ----------------------------------------------- */

.moments { display: grid; gap: 0; margin-top: 3rem; border-top: 1px solid var(--sand); }
.moment {
  padding-block: clamp(1rem, 2.5vw, 1.6rem); border-bottom: 1px solid var(--sand);
  font-family: var(--font-display); font-size: clamp(1.3rem, 1.05rem + 1.4vw, 2.25rem);
  display: flex; align-items: baseline; gap: 1.25rem;
}
.moment__n { font-family: var(--font-sans); font-size: .6875rem; color: var(--brass-deep); letter-spacing: .12em; flex: none; }

.journey {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 1.5rem; margin-top: 3.5rem;
}
.journey__step { border-top: 1px solid var(--night-line); padding-top: 1.25rem; }
.journey__label { font-family: var(--font-display); font-size: 1.35rem; color: var(--brass-bright); }
.journey__desc { font-size: .9375rem; color: #a49a8b; margin-top: .5rem; }

/* --- Little world chips ---------------------------------------------- */

.flow { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; margin-top: 2.5rem; }
.flow__item {
  font-family: var(--font-display); font-size: clamp(1.1rem, .95rem + .9vw, 1.9rem);
  padding: .35rem .9rem; background: var(--paper); border: 1px solid var(--sand);
}
.flow__sep { color: var(--brass-deep); }

/* --- Occasions ------------------------------------------------------- */

.occasions { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1px; background: var(--line); margin-top: 3rem; }
.occasion { background: var(--paper); padding: clamp(1.5rem, 3vw, 2.25rem); transition: background .3s var(--ease); }
.occasion:hover { background: var(--cream); }
.occasion__icon { color: var(--brass-deep); margin-bottom: 1rem; }
.occasion__name { font-family: var(--font-display); font-size: 1.25rem; }
.occasion__desc { font-size: .9375rem; color: var(--muted); margin-top: .5rem; }

/* --- Gallery --------------------------------------------------------- */

.gallery-filters { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2.5rem; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  gap: .75rem;
}
.gallery-item {
  position: relative; overflow: hidden; background: var(--sand);
  aspect-ratio: 4/3; border: 0; padding: 0; display: block; width: 100%;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16,14,10,.55));
  opacity: 0; transition: opacity .4s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
.gallery-item--tall { grid-row: span 2; aspect-ratio: auto; }
@media (max-width: 640px) { .gallery-item--tall { grid-row: auto; aspect-ratio: 4/3; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 95; background: rgba(16,14,10,.96);
  display: none; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox--open { display: flex; }
.lightbox img { max-width: 100%; max-height: 86vh; object-fit: contain; }
.lightbox__caption { position: absolute; bottom: 1.5rem; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.75); font-size: .875rem; padding-inline: 2rem; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: none; border: 1px solid rgba(255,255,255,.3);
  color: #fff; width: 3rem; height: 3rem; border-radius: 50%;
  display: grid; place-items: center; transition: background .3s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.15); }
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__nav--prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lightbox__nav--prev { left: .5rem; } .lightbox__nav--next { right: .5rem; }
}

/* --- Pricing --------------------------------------------------------- */

.rates { display: grid; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.rate {
  border: 1px solid var(--line); background: var(--paper);
  padding: clamp(1.75rem, 3.5vw, 2.75rem); text-align: center;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.rate:hover { border-color: var(--brass); box-shadow: var(--shadow-md); }
.rate__name { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--brass-deep); }
.rate__days { font-size: .875rem; color: var(--muted); margin-top: .4rem; }
.rate__price { font-family: var(--font-display); font-size: clamp(2.5rem, 1.8rem + 3vw, 3.75rem); line-height: 1; margin-block: 1.25rem .35rem; }
.rate__per { font-size: .8125rem; color: var(--muted); }
.rate__note { font-size: .875rem; color: var(--ink-soft); border-top: 1px solid var(--line); margin-top: 1.5rem; padding-top: 1.25rem; }
.rate-footnote { text-align: center; font-size: .875rem; color: var(--muted); margin-top: 2rem; max-width: 46ch; margin-inline: auto; }

/* --- FAQ ------------------------------------------------------------- */

.faqs { max-width: 48rem; margin-inline: auto; border-top: 1px solid var(--sand); margin-top: 2.5rem; }
.faq { border-bottom: 1px solid var(--sand); }
.faq__q {
  width: 100%; background: none; border: 0; text-align: left;
  padding: 1.4rem 2.5rem 1.4rem 0; position: relative;
  font-family: var(--font-display); font-size: clamp(1.05rem, .98rem + .5vw, 1.35rem);
  color: var(--ink);
}
.faq__q::after {
  content: '+'; position: absolute; right: .25rem; top: 50%;
  transform: translateY(-50%); color: var(--brass-deep); font-size: 1.5rem;
  font-family: var(--font-sans); transition: transform .3s var(--ease);
}
.faq[open] .faq__q::after { content: '−'; }
.faq__a { padding: 0 2.5rem 1.6rem 0; color: var(--muted); margin: 0; }
.faq__q:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }

/* --- Location -------------------------------------------------------- */

.loc-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); gap: 1.5rem; margin-block: 2.5rem; }
.loc-fact { border-left: 2px solid var(--brass); padding-left: 1.1rem; }
.loc-fact__label { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.loc-fact__value { font-family: var(--font-display); font-size: 1.5rem; margin-top: .3rem; }
.map-embed { width: 100%; aspect-ratio: 16/9; border: 0; margin-top: 2rem; filter: grayscale(.25); }

/* --- Final CTA ------------------------------------------------------- */

.chat { display: grid; gap: .75rem; max-width: 30rem; margin-block: 2.5rem; }
.chat__bubble {
  background: var(--night-soft); border: 1px solid var(--night-line);
  border-radius: 14px 14px 14px 3px; padding: .85rem 1.2rem;
  color: #cdc4b4; font-size: .9375rem; width: fit-content; max-width: 100%;
}
.chat__bubble:nth-child(even) { margin-left: auto; border-radius: 14px 14px 3px 14px; background: #23201a; }

.signoff { text-align: center; margin-top: 4rem; }
.signoff__name { font-family: var(--font-display); font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem); color: var(--brass-bright); }
.signoff__line { font-size: .875rem; letter-spacing: .18em; text-transform: uppercase; color: #a49a8b; margin-top: .75rem; }

/* --- Forms ----------------------------------------------------------- */

.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); gap: 1.1rem; }
.field { display: grid; gap: .45rem; min-width: 0; }
.field label { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; padding: .85rem 1rem;
  border: 1px solid var(--line); border-radius: 2px;
  background: var(--paper); color: var(--ink); width: 100%;
  transition: border-color .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brass);
}
.field textarea { resize: vertical; min-height: 6rem; }
.field__hint { font-size: .8125rem; color: var(--muted); }

.alert { padding: 1rem 1.25rem; border-radius: 2px; font-size: .9375rem; border: 1px solid; }
.alert--error   { background: #fdf1f0; border-color: #e5c3bf; color: #7d3630; }
.alert--success { background: #f0f5ee; border-color: #c5d6bf; color: #3d5537; }

/* --- Booking drawer -------------------------------------------------- */

.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(16,14,10,.5); z-index: 80;
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease);
}
.drawer-backdrop--open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(30rem, 100vw); z-index: 81;
  background: var(--paper); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .45s var(--ease);
  display: flex; flex-direction: column;
}
.drawer--open { transform: none; }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--line); flex: none;
}
.drawer__title { font-family: var(--font-display); font-size: 1.35rem; }
.drawer__close { background: none; border: 0; padding: .5rem; color: var(--muted); line-height: 0; }
.drawer__close:hover { color: var(--ink); }
.drawer__body { padding: 1.5rem; overflow-y: auto; flex: 1; }

.summary { background: var(--cream); padding: 1.25rem; margin-top: 1.25rem; }
.summary__row { display: flex; justify-content: space-between; gap: 1rem; font-size: .9375rem; padding-block: .3rem; }
.summary__row--total {
  border-top: 1px solid var(--sand); margin-top: .6rem; padding-top: .8rem;
  font-family: var(--font-display); font-size: 1.35rem;
}

/* --- Calendar -------------------------------------------------------- */

.calendar { margin-top: .5rem; }
.calendar__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .75rem; }
.calendar__month { font-family: var(--font-display); font-size: 1.05rem; margin: 0; }
.calendar__nav { background: none; border: 1px solid var(--line); width: 2rem; height: 2rem; display: grid; place-items: center; border-radius: 2px; color: var(--ink-soft); }
.calendar__nav:disabled { opacity: .35; cursor: default; }
.calendar__weekdays, .calendar__week { display: grid; grid-template-columns: repeat(7, 1fr); }
.calendar__weekdays span { text-align: center; font-size: .625rem; letter-spacing: .1em; color: var(--muted); padding-bottom: .4rem; }
.calendar__day {
  aspect-ratio: 1; border: 0; background: none; border-radius: 2px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .1rem; font-size: .875rem; color: var(--ink); position: relative;
  transition: background .2s var(--ease);
}
.calendar__day:hover:not(:disabled) { background: var(--cream); }
.calendar__day:disabled { color: #bdb6a8; cursor: default; text-decoration: line-through; text-decoration-thickness: 1px; }
.calendar__price { font-size: .5625rem; color: var(--muted); }
.calendar__day--sel { background: var(--ink) !important; color: var(--paper); }
.calendar__day--sel .calendar__price { color: rgba(255,255,255,.65); }
.calendar__day--between { background: var(--sand); }
.calendar__day:focus-visible { outline: 2px solid var(--brass); outline-offset: -2px; }
.calendar__legend { display: flex; gap: 1rem; flex-wrap: wrap; font-size: .75rem; color: var(--muted); margin-top: .75rem; }
.calendar__dot { width: .55rem; height: .55rem; border-radius: 50%; display: inline-block; margin-right: .35rem; }
.calendar__dot--free { background: var(--olive); }
.calendar__dot--taken { background: #c3bcae; }
.calendar__dot--sel { background: var(--ink); }

/* --- Floating actions ------------------------------------------------ */

.floats { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 70; display: grid; gap: .6rem; }
.float {
  width: 3.25rem; height: 3.25rem; border-radius: 50%; border: 0;
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-md);
  text-decoration: none; transition: transform .3s var(--ease);
}
.float:hover { transform: scale(1.08); }
.float--wa { background: #1f8a4c; }
.float--call { background: var(--ink); }
.float--top { background: var(--brass); color: var(--night); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.float--top.is-shown { opacity: 1; pointer-events: auto; }

/* --- Footer ---------------------------------------------------------- */

.footer { background: var(--night); color: #a49a8b; padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); gap: 2.5rem; }
.footer__name { font-family: var(--font-display); font-size: 1.6rem; color: #f6f1e6; }
.footer__tag { font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brass-bright); margin-top: .6rem; }
.footer h4 { font-family: var(--font-sans); font-size: .6875rem; letter-spacing: .18em; text-transform: uppercase; color: #f6f1e6; margin-bottom: 1rem; font-weight: 600; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer a { color: #a49a8b; text-decoration: none; font-size: .9375rem; transition: color .3s var(--ease); }
.footer a:hover { color: #f6f1e6; }
.footer__bottom {
  border-top: 1px solid var(--night-line); margin-top: 3rem; padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .8125rem;
  /* Checked against the footer's near-black: 5.0:1. The prettier #7d766a
     measured 4.28:1 and failed WCAG AA on 13px text. */
  color: #8f887a;
}
.socials { display: flex; gap: .75rem; }
.socials a { width: 2.25rem; height: 2.25rem; border: 1px solid var(--night-line); display: grid; place-items: center; border-radius: 50%; }
.socials a:hover { border-color: var(--brass); color: var(--brass-bright); }

/* --- Utilities ------------------------------------------------------- */

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--ink); color: var(--paper); padding: .75rem 1.25rem;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }
.center { text-align: center; }
.mt-lg { margin-top: 2.5rem; }
