/* Retreats with Madison: spa redesign, spiral theme */
:root {
  --ivory: #f7f3ec;
  --linen: #efe8db;
  --linen-deep: #e6dcc9;
  --deep: #22312a;
  --deep-2: #1a2620;
  --moss: #45594c;
  --sage: #a8bfa9;
  --bronze: #b08d5f;
  --bronze-dark: #96754a;
  --ink: #2b2f2b;
  --ink-soft: #61675f;
  --white: #ffffff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 12px 32px rgba(31, 43, 37, .09);
  --radius: 22px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.75;
  letter-spacing: .2px;
}

img { max-width: 100%; display: block; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: rgba(247, 243, 236, .92);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(34, 49, 42, .08);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: .85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: .5px;
  text-decoration: none;
  white-space: nowrap;
}

.brand svg { width: 34px; height: 34px; color: var(--bronze); flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--deep);
  border-radius: 10px;
  color: var(--deep);
  font-size: 1.25rem;
  line-height: 1;
  padding: .35rem .65rem;
  cursor: pointer;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: .15rem;
  list-style: none;
}

.site-nav a {
  color: var(--deep);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  padding: .55rem .85rem;
  border-radius: 999px;
  display: block;
  transition: color .2s, background .2s;
}

.site-nav a:hover { color: var(--bronze-dark); }
.site-nav a.active { color: var(--bronze-dark); }

.site-nav a.nav-book {
  background: var(--bronze);
  color: var(--white);
  margin-left: .75rem;
  padding: .55rem 1.35rem;
}
.site-nav a.nav-book:hover { background: var(--bronze-dark); color: var(--white); }

@media (max-width: 860px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    pointer-events: none;
  }
  .site-header.scrolled { box-shadow: none; }
  .site-header .brand { display: none; }
  .header-inner { flex-wrap: wrap; padding: .8rem 1rem; }
  .nav-toggle {
    display: block;
    pointer-events: auto;
    background: rgba(26, 38, 32, .45);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(247, 243, 236, .35);
    color: var(--ivory);
    border-radius: 12px;
    font-size: 1.35rem;
    padding: .45rem .8rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
  }
  .site-nav { display: none; width: 100%; pointer-events: auto; }
  .site-nav.open {
    display: block;
    background: rgba(247, 243, 236, .98);
    border-radius: 18px;
    margin-top: .6rem;
    padding: .9rem .75rem;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
  }
  .site-nav ul { flex-direction: column; align-items: stretch; }
  .site-nav a { text-align: center; padding: .7rem .85rem; }
  .site-nav a.nav-book { margin-left: 0; margin-top: .5rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 140% at 20% 0%, rgba(69, 89, 76, .55), transparent 55%),
    linear-gradient(160deg, var(--deep) 0%, var(--deep-2) 70%);
  color: var(--ivory);
  text-align: center;
  padding: 7rem 1.5rem 7.5rem;
}

.hero.compact { padding: 4.5rem 1.5rem 5rem; }

.hero-spiral {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1400px;
  height: 1400px;
  transform: translate(-50%, -50%);
  color: var(--ivory);
  opacity: .06;
  pointer-events: none;
  animation: spiral-spin 240s linear infinite;
}

@keyframes spiral-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-spiral { animation: none; }
}

.hero > .hero-content { position: relative; z-index: 1; }

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: .78rem;
  font-weight: 400;
  color: var(--sage);
  margin-bottom: 1.4rem;
}

.hero .eyebrow.eyebrow-big {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-transform: none;
  letter-spacing: 1px;
  color: var(--ivory);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 1.1rem;
}

.hero h1 em { font-style: italic; color: var(--sage); }

.hero .subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 300;
  opacity: .9;
  max-width: 600px;
  margin: 0 auto 2.6rem;
}

.hero-rule {
  width: 64px;
  height: 1px;
  background: var(--bronze);
  margin: 0 auto 1.4rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .9rem 2.3rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  transition: transform .18s, box-shadow .18s, background .2s, color .2s;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.16); }

.btn-primary { background: var(--bronze); color: var(--white); }
.btn-primary:hover { background: var(--bronze-dark); }

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(247,243,236,.6);
}
.btn-outline:hover { background: rgba(247,243,236,.12); }

.btn-forest { background: var(--deep); color: var(--ivory); }
.btn-forest:hover { background: var(--moss); }

.btn[disabled], .btn.disabled {
  opacity: .45;
  pointer-events: none;
}

.btn-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Sections ---------- */
.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}

.section.narrow { max-width: 800px; }
.section.pad-tight-bottom { padding-bottom: 1.75rem; }
.section.pad-tight-top { padding-top: 3rem; }

.section-eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: .74rem;
  font-weight: 400;
  color: var(--bronze-dark);
  margin-bottom: .8rem;
}

.section h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 400;
  color: var(--deep);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section .lead {
  text-align: center;
  color: var(--ink-soft);
  max-width: 660px;
  margin: 0 auto 3rem;
  font-size: 1.02rem;
}

.section-alt-wrap { background: var(--linen); }

.spiral-divider {
  display: flex;
  justify-content: center;
  padding: .5rem 0 0;
}
.spiral-divider svg { width: 44px; height: 44px; color: var(--bronze); opacity: .8; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  box-shadow: var(--shadow);
}

.card h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--deep);
  font-size: 1.35rem;
  margin-bottom: .5rem;
}

.card p { color: var(--ink-soft); font-size: .95rem; }

.card .card-spiral {
  width: 38px; height: 38px;
  color: var(--bronze);
  margin: 0 auto 1rem;
}

/* ---------- Checklist ---------- */
.checklist {
  list-style: none;
  max-width: 660px;
  margin: 0 auto;
}
.checklist li {
  padding: .7rem 0 .7rem 2.4rem;
  position: relative;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(34,49,42,.08);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "";
  position: absolute;
  left: .2rem;
  top: 1rem;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100.0%20100.0%20L100.8%20100.2%20L101.6%20100.6%20L102.2%20101.3%20L102.5%20102.2%20L102.6%20103.3%20L102.4%20104.4%20L101.8%20105.6%20L100.9%20106.7%20L99.6%20107.6%20L98.1%20108.2%20L96.3%20108.5%20L94.4%20108.4%20L92.4%20107.8%20L90.4%20106.9%20L88.6%20105.4%20L87.0%20103.5%20L85.8%20101.2%20L84.9%2098.5%20L84.6%2095.6%20L84.9%2092.6%20L85.8%2089.5%20L87.4%2086.5%20L89.5%2083.8%20L92.3%2081.4%20L95.6%2079.5%20L99.3%2078.2%20L103.3%2077.6%20L107.6%2077.7%20L111.8%2078.7%20L116.0%2080.5%20L119.9%2083.2%20L123.3%2086.6%20L126.1%2090.7%20L128.2%2095.4%20L129.4%20100.5%20L129.7%20105.9%20L128.9%20111.4%20L127.1%20116.9%20L124.3%20122.0%20L120.4%20126.7%20L115.7%20130.7%20L110.2%20133.8%20L104.1%20135.9%20L97.6%20136.9%20L90.8%20136.7%20L84.0%20135.2%20L77.5%20132.5%20L71.5%20128.5%20L66.1%20123.4%20L61.7%20117.3%20L58.4%20110.4%20L56.4%20102.8%20L55.8%2094.9%20L56.6%2086.8%20L58.9%2078.9%20L62.7%2071.3%20L67.9%2064.5%20L74.3%2058.6%20L81.8%2053.9%20L90.2%2050.5%20L99.2%2048.7%20L108.5%2048.6%20L117.9%2050.2%20L126.9%2053.4%20L135.4%2058.4%20L142.9%2064.9%20L149.2%2072.7%20L154.1%2081.7%20L157.4%2091.5%20L158.8%20102.0%20L158.3%20112.6%20L155.9%20123.2%20L151.5%20133.3%20L145.3%20142.6%20L137.5%20150.7%20L128.2%20157.3%20L117.7%20162.2%20L106.4%20165.2%20L94.5%20166.2%20L82.5%20164.9%20L70.8%20161.5%20L59.8%20156.0%20L49.8%20148.5%20L41.3%20139.2%20L34.4%20128.3%20L29.6%20116.3%20L27.0%20103.5%20L26.7%2090.3%20L28.8%2077.0%20L33.3%2064.3%20L40.2%2052.4%20L49.1%2041.8%20L59.9%2032.9%20L72.3%2026.0%20L85.8%2021.4%20L100.1%2019.3%20L114.7%2019.8%20L129.1%2023.0%20L142.9%2028.7%20L155.5%2036.9%20L166.5%2047.3%20L175.6%2059.7%20L182.4%2073.6%20L186.7%2088.7' fill='none' stroke='%23b08d5f' stroke-width='10' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ---------- Real photos ---------- */
.hero.has-photo {
  background-size: cover !important;
  background-position: center !important;
}

.photo-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

.card-photo {
  width: 100%;
  height: 175px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1.1rem;
  display: block;
}

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.1rem; }
.gallery-grid img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform .25s;
  display: block;
}
.gallery-grid img:hover { transform: scale(1.025); }

.portrait {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.2rem;
  border: 3px solid var(--bronze);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  display: block;
}

/* ---------- Photo placeholders ---------- */
.photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(150deg, var(--sage), var(--moss) 75%);
  color: rgba(247,243,236,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  min-height: 240px;
  padding: 1rem;
}
.photo::after {
  content: "";
  position: absolute;
  inset: -30%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100.0%20100.0%20L100.8%20100.2%20L101.6%20100.6%20L102.2%20101.3%20L102.5%20102.2%20L102.6%20103.3%20L102.4%20104.4%20L101.8%20105.6%20L100.9%20106.7%20L99.6%20107.6%20L98.1%20108.2%20L96.3%20108.5%20L94.4%20108.4%20L92.4%20107.8%20L90.4%20106.9%20L88.6%20105.4%20L87.0%20103.5%20L85.8%20101.2%20L84.9%2098.5%20L84.6%2095.6%20L84.9%2092.6%20L85.8%2089.5%20L87.4%2086.5%20L89.5%2083.8%20L92.3%2081.4%20L95.6%2079.5%20L99.3%2078.2%20L103.3%2077.6%20L107.6%2077.7%20L111.8%2078.7%20L116.0%2080.5%20L119.9%2083.2%20L123.3%2086.6%20L126.1%2090.7%20L128.2%2095.4%20L129.4%20100.5%20L129.7%20105.9%20L128.9%20111.4%20L127.1%20116.9%20L124.3%20122.0%20L120.4%20126.7%20L115.7%20130.7%20L110.2%20133.8%20L104.1%20135.9%20L97.6%20136.9%20L90.8%20136.7%20L84.0%20135.2%20L77.5%20132.5%20L71.5%20128.5%20L66.1%20123.4%20L61.7%20117.3%20L58.4%20110.4%20L56.4%20102.8%20L55.8%2094.9%20L56.6%2086.8%20L58.9%2078.9%20L62.7%2071.3%20L67.9%2064.5%20L74.3%2058.6%20L81.8%2053.9%20L90.2%2050.5%20L99.2%2048.7%20L108.5%2048.6%20L117.9%2050.2%20L126.9%2053.4%20L135.4%2058.4%20L142.9%2064.9%20L149.2%2072.7%20L154.1%2081.7%20L157.4%2091.5%20L158.8%20102.0%20L158.3%20112.6%20L155.9%20123.2%20L151.5%20133.3%20L145.3%20142.6%20L137.5%20150.7%20L128.2%20157.3%20L117.7%20162.2%20L106.4%20165.2%20L94.5%20166.2%20L82.5%20164.9%20L70.8%20161.5%20L59.8%20156.0%20L49.8%20148.5%20L41.3%20139.2%20L34.4%20128.3%20L29.6%20116.3%20L27.0%20103.5%20L26.7%2090.3%20L28.8%2077.0%20L33.3%2064.3%20L40.2%2052.4%20L49.1%2041.8%20L59.9%2032.9%20L72.3%2026.0%20L85.8%2021.4%20L100.1%2019.3%20L114.7%2019.8%20L129.1%2023.0%20L142.9%2028.7%20L155.5%2036.9%20L166.5%2047.3%20L175.6%2059.7%20L182.4%2073.6%20L186.7%2088.7' fill='none' stroke='%23f7f3ec' stroke-width='1.4'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .16;
  pointer-events: none;
}
.photo.tall { min-height: 340px; }

/* ---------- Lodging cards ---------- */
.lodging-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.lodging-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(31,43,37,.14); }
.lodging-card .photo { border-radius: 0; min-height: 185px; }
.lodging-body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.lodging-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--deep);
  font-size: 1.3rem;
  line-height: 1.25;
}
.lodging-body .price {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--deep);
  font-weight: 500;
  margin: .4rem 0 .1rem;
}
.lodging-body .price span {
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 300;
  color: var(--ink-soft);
  letter-spacing: 1px;
}
.availability {
  display: inline-block;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--deep);
  background: #dbe6d6;
  border-radius: 999px;
  padding: .3rem .95rem;
  margin: .5rem 0 1.2rem;
  align-self: flex-start;
}
.availability.low { color: var(--deep); background: #dbe6d6; }
.availability.soldout { color: #8c5b52; background: #f0e0dc; }
.lodging-body .btn { margin-top: auto; text-align: center; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
}
.testimonial-grid .testimonial {
  flex: 0 1 calc(33.333% - 1.1rem);
  min-width: 280px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.4rem 2.1rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.testimonial .quote-spiral { width: 30px; height: 30px; color: var(--bronze); margin-bottom: 1.2rem; }
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 1.4rem;
}
.testimonial cite {
  font-style: normal;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: var(--bronze-dark);
  margin-top: auto;
}

/* ---------- Booking form ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.6rem 2.4rem;
  max-width: 760px;
  margin: 0 auto;
}

.form-card fieldset { border: none; margin-bottom: 2.2rem; }

.form-card legend, .form-label {
  display: block;
  font-size: .76rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.6px;
  color: var(--deep);
  margin-bottom: .9rem;
}

.option-list { display: grid; gap: .8rem; }

.option-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1.5px solid var(--linen-deep);
  border-radius: 16px;
  padding: 1rem 1.3rem;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.option-card:hover { border-color: var(--bronze); }
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-card.selected {
  border-color: var(--bronze);
  background: var(--linen);
  box-shadow: 0 0 0 3px rgba(176,141,95,.15);
}
.option-card.soldout {
  opacity: .5;
  cursor: not-allowed;
  background: repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(0,0,0,.02) 8px, rgba(0,0,0,.02) 16px);
}
.option-main { display: flex; flex-direction: column; }
.option-name { font-family: var(--serif); font-size: 1.12rem; font-weight: 500; color: var(--deep); }
.option-remaining { font-size: .74rem; text-transform: uppercase; letter-spacing: 1.6px; color: var(--moss); }
.option-remaining.low { color: var(--moss); }
.option-remaining.soldout { color: #8c5b52; }
.option-price { font-family: var(--serif); font-size: 1.35rem; color: var(--deep); white-space: nowrap; }
.option-price span { font-family: var(--sans); font-size: .72rem; color: var(--ink-soft); letter-spacing: 1px; }

.field { margin-bottom: 1.4rem; }
.field label {
  display: block;
  font-size: .76rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: var(--deep);
  margin-bottom: .45rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  border: 1.5px solid var(--linen-deep);
  border-radius: 12px;
  padding: .85rem 1.1rem;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(176,141,95,.16);
}
.field textarea { min-height: 110px; resize: vertical; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }

.form-note { font-size: .9rem; color: var(--ink-soft); margin: 1.2rem 0 1.8rem; }

.form-error {
  display: none;
  background: #f6e4e0;
  border-left: 3px solid #b3675c;
  color: #7c4038;
  border-radius: 10px;
  padding: .9rem 1.2rem;
  font-size: .92rem;
  margin-bottom: 1.4rem;
}
.form-error.show { display: block; }

.success-panel {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}
.success-panel.show { display: block; }
.success-panel .card-spiral { width: 54px; height: 54px; color: var(--bronze); margin: 0 auto 1.4rem; }
.success-panel h2 { margin-bottom: 1rem; }
.success-panel p { color: var(--ink-soft); max-width: 520px; margin: 0 auto 1rem; }

/* ---------- Notice / contact / footer ---------- */
.notice {
  background: var(--linen);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 2.2rem auto 0;
  font-size: .95rem;
}

.contact-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--deep) 0%, var(--deep-2) 80%);
  color: var(--ivory);
  text-align: center;
  padding: 4rem 1.5rem;
}
.contact-band .hero-spiral { position: absolute; width: 900px; height: 900px; opacity: .05; }
.contact-band > :not(.hero-spiral) { position: relative; z-index: 1; }
.contact-band h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: .8rem;
}
.contact-band a { color: var(--sage); text-decoration: none; }
.contact-band a:not(.btn) { font-size: 1.35rem; font-weight: 400; }
.contact-band a:hover { text-decoration: underline; }
.contact-band p { margin-bottom: .4rem; font-weight: 300; }

.site-footer {
  background: var(--deep-2);
  color: rgba(247,243,236,.72);
  padding: 3.5rem 1.5rem 1.5rem;
  font-size: .92rem;
}
.footer-grid {
  max-width: 1160px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}
.footer-brand { font-family: var(--serif); font-size: 1.35rem; color: var(--ivory); margin-bottom: .6rem; }
.footer-tag { font-size: .9rem; line-height: 1.7; }
.footer-head { text-transform: uppercase; letter-spacing: 2.4px; font-size: .72rem; color: var(--sage); margin-bottom: .9rem; }
.footer-col a { display: block; color: rgba(247,243,236,.85); text-decoration: none; padding: .28rem 0; }
.footer-col a:hover { color: var(--ivory); }
.footer-col a.footer-btn {
  margin-top: .9rem;
  display: inline-block;
  padding: .55rem 1.2rem .55rem 1.35rem;
  font-size: .68rem;
  letter-spacing: 1.6px;
  color: var(--white);
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(247,243,236,.14);
  padding-top: 1.3rem;
  max-width: 1160px;
  margin: 0 auto;
  font-size: .78rem;
  letter-spacing: 1px;
}

/* ---------- Scroll polish ---------- */
.site-header { transition: box-shadow .25s; }
.site-header.scrolled { box-shadow: 0 6px 24px rgba(31,43,37,.1); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Home "Stays & Pricing" strip ---------- */
.stay-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.2rem; }
.stay-tile {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--white);
  border-radius: 18px;
  padding: .9rem 1.2rem .9rem .9rem;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform .18s, box-shadow .18s;
}
.stay-tile:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(31,43,37,.14); }
.stay-tile img { width: 86px; height: 86px; border-radius: 14px; object-fit: cover; flex-shrink: 0; }
.stay-tile .st-main { flex: 1; min-width: 0; }
.stay-tile .st-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; color: var(--deep); line-height: 1.3; }
.stay-tile .st-avail { font-size: .7rem; text-transform: uppercase; letter-spacing: 1.6px; color: var(--moss); }
.stay-tile .st-avail.low { color: var(--moss); }
.stay-tile .st-avail.soldout { color: #8c5b52; }
.stay-tile .st-price { font-family: var(--serif); font-size: 1.3rem; color: var(--deep); white-space: nowrap; }
.stay-tile .st-price span { font-family: var(--sans); font-size: .7rem; color: var(--ink-soft); letter-spacing: 1px; }
.stay-tile.soldout { opacity: .55; pointer-events: none; }

/* ---------- Booking option thumbs & summary ---------- */
.opt-left { display: flex; align-items: center; gap: .95rem; min-width: 0; }
.opt-thumb { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }

.stay-summary {
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--linen);
  border-radius: 14px;
  padding: 1rem 1.4rem;
  margin-bottom: 1.5rem;
}
.stay-summary.show { display: flex; }
.stay-summary .ss-label { font-size: .72rem; text-transform: uppercase; letter-spacing: 2px; color: var(--moss); }
.stay-summary .ss-name { font-family: var(--serif); font-size: 1.15rem; color: var(--deep); }
.stay-summary .ss-price { font-family: var(--serif); font-size: 1.35rem; color: var(--deep); white-space: nowrap; }
.stay-summary .ss-price span { font-family: var(--sans); font-size: .72rem; color: var(--ink-soft); }

.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- Sticky mobile book bar ---------- */
.book-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(26,38,32,.97);
  backdrop-filter: blur(8px);
  color: var(--ivory);
  padding: .65rem 1.1rem;
  padding-bottom: calc(.65rem + env(safe-area-inset-bottom));
}
.book-bar .bb-text { font-size: .85rem; line-height: 1.35; }
.book-bar .bb-text strong { font-family: var(--serif); font-weight: 500; font-size: 1rem; display: block; }
.book-bar .btn { padding: .6rem 1.5rem; white-space: nowrap; }
@media (max-width: 860px) {
  .book-bar { display: flex; }
  body.has-bookbar { padding-bottom: 76px; }
}

/* ---------- Admin table ---------- */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: .92rem;
}
.admin-table th {
  background: var(--deep);
  color: var(--ivory);
  text-align: left;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: .72rem;
  padding: .8rem 1rem;
}
.admin-table td { padding: .75rem 1rem; border-bottom: 1px solid rgba(34,49,42,.07); vertical-align: top; }
.admin-table tr:last-child td { border-bottom: none; }
.table-scroll { overflow-x: auto; }

.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
