/* Finca Lavanda — shared site CSS for subpages */
:root {
  --bg: #ffffff;
  --ink: #333333;
  --ink-soft: #6b6b6b;
  --ink-faint: #a8a39d;
  --sand: #d2b48c;
  --sand-deep: #b89067;
  --lavender: #9d7cc5;
  --sky: #7db8f4;
  --sky-wash: #eaf3fc;
  --sand-wash: #faf6f0;
  --rule: #e9e4dc;
  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) {
  .wrap { padding: 0 24px; }
  .narrow { padding: 0 24px; }
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.display, h1.display, h2.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.display em, h1.display em, h2.display em {
  font-style: italic;
  color: var(--lavender);
  font-weight: 500;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 16px; top: -100px;
  background: #333; color: #fff;
  padding: 12px 18px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  z-index: 200;
  border-radius: 4px;
  transition: top .2s;
}
.skip-link:focus { top: 16px; outline: 2px solid var(--lavender); outline-offset: 2px; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn-sand { background: var(--sand); color: #2a1f12; }
.btn-sand:hover { background: var(--sand-deep); color: #1f160a; transform: translateY(-1px); box-shadow: 0 8px 24px -10px rgba(178,128,80,.5); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-arrow::after { content: "→"; font-family: var(--serif); font-size: 14px; letter-spacing: 0; }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-bottom: 1px solid var(--rule);
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 4px 24px -16px rgba(40, 30, 20, 0.18);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  max-width: 1280px; margin: 0 auto;
}
.logo { display: inline-flex; align-items: center; gap: 14px; color: var(--ink); }
.logo-svg { width: 30px; height: 56px; display: block; flex: 0 0 auto; color: var(--lavender); }
.logo-word { display: flex; flex-direction: column; line-height: 1; }
.logo-word .name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.logo-word .name .lav { color: var(--sky); margin-left: 0.25em; }
.logo-word .tag {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sand-deep);
  font-weight: 500;
}
.logo-word .tag .sep { color: var(--ink-faint); margin: 0 0.5em; font-weight: 300; }

.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-link {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--lavender);
  transition: right .35s ease;
}
.nav-link:hover::after { right: 0; }
.nav .btn { padding: 11px 20px; font-size: 10px; }

/* Burger toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: none; background: transparent;
  position: relative;
  z-index: 60;
  color: var(--ink);
}
.nav-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  top: 50%;
  height: 1.6px;
  background: currentColor;
  transform: translateY(-50%);
  transition: background .2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1.6px;
  background: currentColor;
  transition: transform .3s ease;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav.open .nav-toggle span { background: transparent; }
.nav.open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-inner { padding: 14px 24px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 18px 34px -22px rgba(40,30,20,0.3);
    padding: 8px 24px 26px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .nav.open .nav-links { opacity: 1; visibility: visible; transform: none; }
  .nav-links .nav-link {
    padding: 16px 2px;
    border-bottom: 1px solid var(--rule);
    font-size: 13px;
  }
  .nav-links .nav-link::after { display: none; }
  .nav-links .nav-link.book {
    margin-top: 18px;
    padding: 14px 20px;
    border-bottom: none;
    justify-content: center;
  }
}

/* Subpage header */
.subhead {
  padding: 180px 0 60px;
  border-bottom: 1px solid var(--rule);
  background: var(--sand-wash);
}
.subhead .eyebrow { color: var(--sand-deep); }
.subhead h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 18px 0 0;
  max-width: 18ch;
}
.subhead h1 em { font-style: italic; color: var(--lavender); font-weight: 500; }
.subhead .lede {
  margin: 28px 0 0;
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 16px;
}
.subhead .meta {
  margin-top: 36px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* Long-form content */
.prose { padding: 80px 0 100px; }
.prose h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  margin: 56px 0 14px;
  color: var(--ink);
}
.prose h2:first-child { margin-top: 0; }
.prose h2 .num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  font-weight: 500;
  color: var(--sand-deep);
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.prose h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 28px 0 10px;
}
.prose p { margin: 0 0 16px; color: var(--ink-soft); max-width: 64ch; }
.prose p strong { color: var(--ink); font-weight: 500; }
.prose ul { padding-left: 0; list-style: none; margin: 0 0 20px; max-width: 64ch; }
.prose ul li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
}
.prose ul li:last-child { border-bottom: none; }
.prose ul li::before {
  content: "";
  position: absolute; left: 6px; top: 20px;
  width: 8px; height: 1px;
  background: var(--lavender);
}
.prose dl {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 14px 32px;
  margin: 24px 0 32px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.prose dt {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.prose dd { margin: 0; color: var(--ink); }
.prose .rule {
  height: 1px; background: var(--rule);
  margin: 48px 0;
}
@media (max-width: 720px) {
  .prose dl { grid-template-columns: 1fr; gap: 4px 0; }
  .prose dt { margin-top: 12px; }
  .subhead { padding: 140px 0 50px; }
}

/* Footer */
.foot {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 90px 0 36px;
}
.foot a:hover { color: #fff; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.foot-brand p {
  margin-top: 22px;
  max-width: 32ch;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.foot .logo-word .name { color: #fff; }
.foot .logo-word .name .lav { color: var(--sky); }
.foot .logo-word .tag { color: rgba(255,255,255,0.5); }
.foot .logo { gap: 18px; }
.foot .logo-svg { width: 36px; height: 68px; }
.foot .logo-word .name { font-size: 26px; }
.foot .logo-word .tag { font-size: 9.5px; }
.foot-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-col a { font-size: 13px; }
.foot-bottom {
  margin-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.foot-bottom .legal { display: flex; gap: 24px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- Consent banner ---------- */
.fl-consent {
  position: fixed;
  bottom: 24px; right: 24px;
  max-width: 380px;
  z-index: 1000;
  opacity: 0; transform: translateY(20px);
  transition: opacity .4s ease, transform .4s ease;
}
.fl-consent.show { opacity: 1; transform: none; }
.fl-consent-card {
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow: 0 30px 60px -30px rgba(40,30,20,0.25);
  padding: 24px 26px;
  position: relative;
}
.fl-consent-card::before {
  content: ""; position: absolute; top: -1px; left: 24px;
  width: 60px; height: 2px; background: var(--lavender);
}
.fl-consent-icon { color: var(--lavender); width: 28px; height: 28px; margin-bottom: 14px; }
.fl-consent-icon svg { width: 100%; height: 100%; display: block; }
.fl-consent-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
}
.fl-consent-body p {
  margin: 0 0 10px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.fl-consent-meta {
  font-size: 11px !important;
  color: var(--ink-faint) !important;
  letter-spacing: 0.02em;
}
.fl-consent-meta a { border-bottom: 1px solid var(--lavender); color: var(--ink-soft); }
.fl-consent-actions {
  display: flex; gap: 10px;
  margin-top: 16px;
}
.fl-consent-actions button {
  padding: 11px 20px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.fl-consent-accept { background: var(--sand); color: #2a1f12; }
.fl-consent-accept:hover { background: var(--sand-deep); }
.fl-consent-reject { background: transparent; color: var(--ink); border: 1px solid var(--rule); }
.fl-consent-reject:hover { border-color: var(--ink); }
@media (max-width: 600px) {
  .fl-consent { bottom: 0; right: 0; left: 0; max-width: none; }
  .fl-consent-card { border-left: none; border-right: none; border-bottom: none; }
  .fl-consent-actions button { flex: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .fl-consent { transition: none !important; opacity: 1; transform: none; }
}
