/* =========================================================
   Bear Run Inn — Cabins & Cottages
   Redesign stylesheet · "Country Getaway" (earthy & natural)
   ========================================================= */

:root {
  /* Earthy & natural palette */
  --forest:   #2e3a2c;   /* deep forest green — dark surfaces */
  --pine:     #43503b;   /* pine */
  --moss:     #6d7d5b;   /* moss green — accents */
  --sage:     #98a583;   /* soft sage */
  --bark:     #6b4f38;   /* warm bark brown — eyebrows */
  --clay:     #a8794f;   /* clay / amber accent */
  --sand:     #cdbb9e;   /* sand */
  --cream:    #f6f1e7;   /* page background */
  --parchment:#fbf8f1;   /* card / raised surfaces */
  --ink:      #2b2a25;   /* body text */
  --ink-soft: #55524a;   /* secondary text */
  --line:     #e3dccd;   /* hairlines */

  --shadow-sm: 0 2px 10px rgba(43, 42, 37, .06);
  --shadow-md: 0 14px 40px rgba(43, 42, 37, .12);
  --shadow-lg: 0 28px 70px rgba(43, 42, 37, .18);

  --radius:   18px;
  --radius-lg:26px;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--forest);
  margin: 0 0 .5em;
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p  { margin: 0 0 1.1rem; color: var(--ink-soft); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(64px, 9vw, 128px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 62ch; }
.measure-narrow { max-width: 48ch; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--bark);
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--clay);
  display: inline-block;
}
.center .eyebrow { justify-content: center; }
.center .eyebrow::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--clay);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--clay); color: #fff; box-shadow: 0 10px 24px rgba(168,121,79,.32); }
.btn--primary:hover { background: #96693f; }
.btn--forest { background: var(--forest); color: var(--cream); }
.btn--forest:hover { background: var(--pine); }
.btn--ghost { border-color: currentColor; color: var(--forest); }
.btn--ghost:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.btn--light { border-color: rgba(255,255,255,.7); color: #fff; }
.btn--light:hover { background: #fff; color: var(--forest); }
.btn--sm { padding: .7rem 1.4rem; font-size: .86rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 14px 0;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.site-header.scrolled {
  background: rgba(246,241,231,.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--cream); flex: none; }
.brand .brand-mark { width: 42px; height: 42px; flex: none; }

/* --- horizontal logo lockup -------------------------------------------
   Two versions of the same artwork: the dark-green original for light
   backgrounds, and a reversed one whose type is cream. The header swaps
   between them, so the logo always belongs to whatever is behind it
   instead of sitting on a plate. */
.brand-logo{
  height: 62px; width: auto; max-width: none; display: block; flex: none;
  transition: height .35s ease;
}
/* over the hero photograph: reversed, with a whisper of shadow so the
   cream type holds up over the bright parts of the picture */
.brand-logo--light{ filter: drop-shadow(0 2px 10px rgba(0,0,0,.5)); }
.brand-logo--dark{ display: none; }
/* once the header turns cream, switch to the dark-green original */
.site-header.scrolled .brand-logo--light{ display: none; }
.site-header.scrolled .brand-logo--dark{ display: block; }
.site-header.scrolled .brand-logo{ height: 54px; }
/* the footer is dark green, so it keeps the reversed version — and needs
   no shadow, because the background is flat */
.brand--footer .brand-logo{ height: 78px; }
.brand--footer .brand-logo--light{ display: block; filter: none; }
.brand--footer .brand-logo--dark{ display: none; }
@media (min-width: 901px) and (max-width: 1080px){
  .brand-logo{ height: 52px; }
  .site-header.scrolled .brand-logo{ height: 46px; }
  .nav{ gap: 1.2rem; }
  .nav-links{ gap: 1.1rem; }
}
@media (max-width: 900px){
  .brand-logo{ height: 46px; }
  .site-header.scrolled .brand-logo{ height: 42px; }
  .brand--footer .brand-logo{ height: 62px; }
}
@media (max-width: 420px){
  .brand-logo{ height: 38px; }
  .site-header.scrolled .brand-logo{ height: 36px; }
}
}
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; letter-spacing: .01em; }
.brand-sub { font-family: var(--sans); font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; margin-top: 4px; opacity: .85; }
.site-header.scrolled .brand,
.site-header.scrolled .brand-name { color: var(--forest); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; align-items: center; gap: 1.7rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--cream);
  font-weight: 500;
  font-size: .96rem;
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--clay); transition: width .28s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.site-header.scrolled .nav-links a { color: var(--pine); }
.site-header.scrolled .nav-links a:hover { color: var(--forest); }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px;
}
.nav-toggle span { display: block; height: 2px; background: currentColor; border-radius: 2px; margin: 5px 0; transition: .3s; }
.nav-toggle { color: var(--cream); }
.site-header.scrolled .nav-toggle { color: var(--forest); }

/* Mobile nav */
@media (max-width: 900px) {
  .nav-links, .nav .btn { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu {
    position: fixed; inset: 0; z-index: 120;
    background: var(--forest);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1.6rem;
    transform: translateY(-100%);
    transition: transform .4s cubic-bezier(.7,0,.2,1);
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a { color: var(--cream); font-family: var(--serif); font-size: 1.8rem; }
  .mobile-menu .btn { margin-top: 1rem; }
  .mobile-close { position: absolute; top: 22px; right: 22px; background: none; border: 0; color: var(--cream); font-size: 2rem; cursor: pointer; }
}
@media (min-width: 901px) { .mobile-menu { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  color: #fff;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(28,34,25,.72) 0%, rgba(28,34,25,.34) 62%, rgba(28,34,25,.12) 100%),
    linear-gradient(180deg, rgba(28,34,25,.35) 0%, rgba(28,34,25,.15) 45%, rgba(28,34,25,.7) 100%);
}
.hero__inner { padding-top: 90px; padding-bottom: 60px; max-width: 760px; }
.hero .since {
  display: inline-block; font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.5); border-radius: 999px; padding: .5rem 1.1rem; margin-bottom: 1.6rem;
}
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.3); }
.hero__lede { font-size: 1.2rem; color: rgba(255,255,255,.92); max-width: 44ch; margin-bottom: 2rem; }
.hero__mantra {
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin: 0 0 2.2rem;
  font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: rgba(255,255,255,.9);
}
.hero__mantra span { display: inline-flex; align-items: center; gap: 1.4rem; }
.hero__mantra span::after { content: "·"; color: var(--sand); }
.hero__mantra span:last-child::after { content: ""; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.8); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.hero__scroll::after { content: ""; width: 1px; height: 34px; background: rgba(255,255,255,.6); animation: scrolldot 2s infinite; }
@keyframes scrolldot { 0%,100%{opacity:.3; transform: scaleY(.5);} 50%{opacity:1; transform: scaleY(1);} }

/* ---------- Generic surfaces ---------- */
.bg-forest { background: var(--forest); color: var(--cream); }
.bg-forest h2, .bg-forest h3 { color: var(--cream); }
.bg-forest p { color: rgba(246,241,231,.8); }
.bg-forest .eyebrow { color: var(--sand); }
.bg-forest .eyebrow::before, .bg-forest .eyebrow::after { background: var(--clay); }
.bg-parchment { background: var(--parchment); }

/* Section heading block */
.section-head { max-width: 60ch; }
.center .section-head { margin-inline: auto; }
.section-head p { font-size: 1.08rem; }

/* ---------- Welcome / intro split ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.split__media .stamp {
  position: absolute; background: var(--parchment); color: var(--forest);
  border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 1.1rem 1.3rem;
  font-family: var(--serif); line-height: 1.1;
}
.split__media .stamp b { font-size: 2.1rem; display: block; color: var(--clay); }
.split__media .stamp small { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); font-family: var(--sans); }
.split__media .stamp.br { right: -18px; bottom: -22px; }
@media (max-width: 780px){ .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } .split__media .stamp.br { right: 14px; } }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; padding: .5rem; }
.stat b { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.9rem); color: var(--clay); display: block; }
.stat span { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.bg-forest .stat span { color: var(--sand); }
@media (max-width: 640px){ .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; } }

/* ---------- Cabins grid ---------- */
.cabins { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.cabins .card:first-child, .cabins .card:nth-child(2) { grid-column: span 3; }
@media (min-width: 901px){
  .cabins { grid-template-columns: repeat(6, 1fr); }
  .cabins .card { grid-column: span 2; }
  /* first row: two wide feature cards */
  .cabins .card.feature { grid-column: span 3; }
}
@media (max-width: 900px){ .cabins { grid-template-columns: repeat(2, 1fr); } .cabins .card { grid-column: auto !important; } }
@media (max-width: 560px){ .cabins { grid-template-columns: 1fr; } }

.card {
  background: var(--parchment);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__media { position: relative; overflow: hidden; aspect-ratio: 3/2.2; }
.card.feature .card__media { aspect-ratio: 16/9; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.card:hover .card__media img { transform: scale(1.06); }
.card__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(246,241,231,.94); color: var(--forest);
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .4rem .8rem; border-radius: 999px;
}
.card__body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .35rem; }
.card__sleeps { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--clay); font-weight: 600; margin-bottom: .7rem; }
.card__body p { font-size: .96rem; margin-bottom: 1.1rem; }
.amen { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0 0 1.3rem; padding: 0; list-style: none; }
.amen li { font-size: .78rem; color: var(--pine); background: rgba(109,125,91,.13); border-radius: 999px; padding: .3rem .7rem; }
.card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.card__link { font-weight: 600; color: var(--clay); font-size: .92rem; display: inline-flex; gap: .4rem; align-items: center; }
.card__link::after { content: "→"; transition: transform .25s ease; }
.card:hover .card__link::after { transform: translateX(4px); }

/* ---------- Experience / features ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
@media (max-width: 900px){ .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .features { grid-template-columns: 1fr; } }
.feature-tile {
  background: var(--parchment); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-tile .ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(168,121,79,.14); color: var(--clay); margin-bottom: 1.1rem;
}
.feature-tile .ico svg { width: 26px; height: 26px; }
.feature-tile h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.feature-tile p { font-size: .93rem; margin: 0; }

/* ---------- Image band / mosaic ---------- */
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.mosaic .m-tall { grid-row: span 2; }
.mosaic .m-wide { grid-column: span 2; }
@media (max-width: 720px){ .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; } .mosaic .m-wide { grid-column: span 2; } }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 820px){ .quotes { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }
.quote {
  background: var(--parchment); border-radius: var(--radius-lg); padding: 2.1rem 2rem 1.8rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative;
}
.quote .stars { color: var(--clay); letter-spacing: .15em; margin-bottom: .9rem; }
.quote p { font-family: var(--serif); font-size: 1.12rem; font-style: italic; color: var(--ink); line-height: 1.5; }
.quote .who { margin-top: 1.2rem; font-family: var(--sans); font-style: normal; font-weight: 600; color: var(--forest); font-size: .92rem; }
.quote .who span { display: block; font-weight: 400; color: var(--ink-soft); font-size: .8rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; color: #fff; text-align: center; isolation: isolate; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(46,58,44,.82), rgba(46,58,44,.88)); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.88); font-size: 1.1rem; }

/* ---------- Location ---------- */
.loc { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,60px); align-items: center; }
@media (max-width: 820px){ .loc { grid-template-columns: 1fr; } }
.loc__list { list-style: none; margin: 1.4rem 0 0; padding: 0; }
.loc__list li { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: .98rem; }
.loc__list li b { color: var(--forest); font-weight: 600; }
.loc__list li span { color: var(--clay); font-weight: 600; white-space: nowrap; }
.loc__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 340px; border: 0; width: 100%; }

/* ---------- Footer ---------- */
.site-footer { background: #22291f; color: rgba(246,241,231,.75); padding: clamp(56px,7vw,84px) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer .foot-h, .site-footer h4 { color: var(--cream); font-family: var(--sans); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 600; }
.site-footer a { color: rgba(246,241,231,.75); transition: color .2s; }
.site-footer a:hover { color: var(--clay); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; font-size: .95rem; }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand p { font-size: .95rem; margin-top: 1rem; max-width: 34ch; }
.footer-bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(246,241,231,.14); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .84rem; color: rgba(246,241,231,.55); }
.footer-note { background: rgba(168,121,79,.16); border:1px solid rgba(168,121,79,.3); color: var(--sand); border-radius: 12px; padding: .8rem 1rem; font-size: .8rem; margin-top: 1.2rem; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { position: relative; color: #fff; padding: clamp(124px,17vh,168px) 0 clamp(38px,5vw,56px); isolation: isolate; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(30,38,28,.5), rgba(30,38,28,.72)); }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.9); max-width: 52ch; font-size: 1.1rem; margin-bottom: 0; }
.crumbs { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: 1.1rem; }
.crumbs a:hover { color: var(--sand); }

/* ---------- Cabin detail rows ---------- */
.cabin-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,64px); align-items: center; padding: clamp(40px,6vw,72px) 0; border-bottom: 1px solid var(--line); scroll-margin-top: 90px; }
.cabin-row:last-child { border-bottom: 0; }
.cabin-row--rev .cabin-row__media { order: 2; }
@media (max-width: 820px){ .cabin-row { grid-template-columns: 1fr; } .cabin-row--rev .cabin-row__media { order: 0; } }
.cabin-row__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.cabin-row__num { font-family: var(--serif); font-size: .9rem; color: var(--clay); letter-spacing: .1em; }
.spec { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; margin: 1.2rem 0 1.4rem; padding: 1.1rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec div { line-height: 1.2; }
.spec b { font-family: var(--serif); font-size: 1.4rem; color: var(--forest); display: block; }
.spec span { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); }

/* ---------- Simple content ---------- */
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; color: var(--pine); }
.prose ul { padding-left: 1.1rem; }
.prose li { margin-bottom: .5rem; color: var(--ink-soft); }
.rate-table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; background: var(--parchment); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.rate-table th, .rate-table td { padding: 1rem 1.2rem; text-align: left; border-bottom: 1px solid var(--line); }
.rate-table th { background: var(--forest); color: var(--cream); font-family: var(--sans); font-weight: 600; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.rate-table tr:last-child td { border-bottom: 0; }
.rate-table td:last-child { color: var(--clay); font-weight: 600; }

.info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.4rem; }
@media (max-width: 640px){ .info-grid { grid-template-columns: 1fr; } }
.info-card { background: var(--parchment); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.info-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.info-card p { font-size: .95rem; margin: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--forest); margin-bottom: .4rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--parchment); font-family: inherit; font-size: 1rem; color: var(--ink); transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--clay); }
.contact-info li { display: flex; gap: .9rem; align-items: flex-start; margin-bottom: 1.2rem; }
.contact-info .ci { width: 42px; height: 42px; border-radius: 12px; background: rgba(168,121,79,.14); color: var(--clay); display: grid; place-items: center; flex: none; }
.contact-info b { color: var(--forest); display: block; }
.contact-info { list-style: none; padding: 0; margin: 0; }

/* ---------- Reveal on scroll ---------- */
/* Progressive enhancement: only hide when JS is active (html.js). Without JS, content shows. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .js .reveal { opacity: 1; transform: none; transition: none; } .hero__scroll::after { animation: none; } html { scroll-behavior: auto; } }

/* ---------- Cabin detail + carousel ---------- */
.cabin-detail { display: grid; grid-template-columns: 1.55fr .95fr; gap: clamp(28px,4vw,52px); align-items: start; }
@media (max-width: 920px){ .cabin-detail { grid-template-columns: 1fr; } }
.cabin-detail__info { background: var(--parchment); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.9rem 1.8rem; box-shadow: var(--shadow-sm); position: sticky; top: 96px; }
@media (max-width: 920px){ .cabin-detail__info { position: static; } }
.cabin-detail__info .sleeps-big { font-family: var(--serif); font-size: 2.4rem; color: var(--clay); line-height: 1; }
.cabin-detail__info .sleeps-big small { display: block; font-family: var(--sans); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-top: .35rem; }
.cabin-detail__info hr { border: 0; border-top: 1px solid var(--line); margin: 1.3rem 0; }
.cabin-detail__info .amen { margin-bottom: 1.4rem; }
.cabin-detail__info .btn { width: 100%; }
.cabin-detail__info .callus { text-align: center; margin: .9rem 0 0; font-size: .86rem; color: var(--ink-soft); }
.cabin-detail__info .callus a { color: var(--clay); font-weight: 600; }

.carousel { margin: 0; }
.carousel__stage { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--forest); }
.carousel__viewport { overflow: hidden; touch-action: pan-y; min-width: 0; }
.cabin-detail__gallery, .carousel { min-width: 0; }
.carousel__track { display: flex; transition: transform .55s cubic-bezier(.6,0,.2,1); }
.carousel__slide { flex: 0 0 100%; height: clamp(240px, 46vh, 440px); background: var(--pine); }
.carousel__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(246,241,231,.92); color: var(--forest); font-size: 1.7rem; line-height: 1; cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: background .2s, transform .2s; }
.carousel__arrow:hover { background: #fff; transform: translateY(-50%) scale(1.07); }
.carousel__arrow.prev { left: 14px; } .carousel__arrow.next { right: 14px; }
.carousel__counter { position: absolute; bottom: 14px; right: 16px; z-index: 3; background: rgba(28,34,25,.72); color: #fff; font-size: .8rem; padding: .35rem .75rem; border-radius: 999px; letter-spacing: .03em; }
.carousel__thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; }
.carousel__thumb { flex: 0 0 auto; width: 98px; height: 66px; border-radius: 10px; overflow: hidden; border: 2px solid transparent; padding: 0; cursor: pointer; background: none; opacity: .55; transition: opacity .2s, border-color .2s; }
.carousel__thumb img { width: 100%; height: 100%; object-fit: cover; }
.carousel__thumb.active { opacity: 1; border-color: var(--clay); }
.carousel__thumb:hover { opacity: 1; }
@media (max-width: 600px){ .carousel__slide { height: clamp(220px, 40vh, 320px); } .carousel__thumb { width: 74px; height: 52px; } .carousel__arrow { width: 40px; height: 40px; } }

/* Amenities checklist */
.amenities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem 3rem; }
@media (max-width: 720px){ .amenities { grid-template-columns: 1fr; gap: 1.6rem; } }
.amenities__group h3 { font-family: var(--sans); font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--bark); margin: 0 0 1rem; padding-bottom: .6rem; border-bottom: 1px solid var(--line); }
.amenities__group ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .65rem; }
.amenities__group li { display: flex; gap: .65rem; align-items: flex-start; font-size: .98rem; color: var(--ink); line-height: 1.4; }
.amenities__group li::before { content: "✓"; color: var(--clay); font-weight: 700; flex: none; margin-top: 1px; }

/* Lightbox (shared by carousels and the grounds gallery) */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 24, 18, .94);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(86vw, 880px);
  max-height: 72vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lb-close {
  position: absolute; top: 18px; right: 22px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; border: 0;
  background: rgba(246,241,231,.16); color: #fff; font-size: 1.5rem; line-height: 1;
  cursor: pointer; display: grid; place-items: center; transition: background .2s;
}
.lb-close:hover { background: rgba(246,241,231,.32); }
.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 52px; height: 52px; border-radius: 50%; border: 0;
  background: rgba(246,241,231,.92); color: var(--forest); font-size: 1.9rem; line-height: 1;
  cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow-sm);
  transition: background .2s, transform .2s;
}
.lb-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.07); }
.lb-arrow.prev { left: max(16px, 3vw); } .lb-arrow.next { right: max(16px, 3vw); }
.lb-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 3;
  color: rgba(255,255,255,.85); font-size: .82rem; letter-spacing: .05em;
  background: rgba(20,24,18,.55); padding: .35rem .8rem; border-radius: 999px;
}
@media (max-width: 640px){ .lightbox img { max-width: 92vw; max-height: 68vh; } .lb-arrow { width: 42px; height: 42px; font-size: 1.5rem; } .lb-arrow.prev { left: 8px; } .lb-arrow.next { right: 8px; } }

/* Other-cabins cross-links */
.more-cabins { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
@media (max-width: 760px){ .more-cabins { grid-template-columns: 1fr; } }

/* Home FAQ */
.faq { max-width: 780px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); padding: 1.35rem 0; }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__item h3 { font-size: 1.15rem; margin-bottom: .4rem; color: var(--forest); }
.faq__item p { margin: 0; font-size: .98rem; }

/* ---------- Utility ---------- */
.stack > * + * { margin-top: 1.5rem; }
.mt-2 { margin-top: 2rem; }
.hidden { display: none; }

/* ---- "To confirm" markers (draft items awaiting owner input) ---- */
.tbc{
  display:inline-block;
  font-family:var(--sans);
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#8a5a1c;
  background:#f7ecd8;
  border:1px solid #e6d3b0;
  border-radius:999px;
  padding:.2em .7em;
  line-height:1.5;
  white-space:nowrap;
  vertical-align:middle;
}
.tbc + *{margin-left:.15rem}
.tbc-note{
  font-size:.85rem;
  color:var(--ink-soft);
  margin-top:1.2rem;
  padding-top:1rem;
  border-top:1px solid var(--line);
  max-width:70ch;
}

/* ---- Disclosure block (used for the damage schedule) ---------------- */
.policy-details{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--parchment);
  margin-top:1.2rem;
  overflow:hidden;
}
.policy-details > summary{
  cursor:pointer;
  list-style:none;
  padding:1rem 1.25rem;
  font-family:var(--sans);
  font-weight:600;
  font-size:.95rem;
  color:var(--forest);
  display:flex;
  align-items:center;
  gap:.6rem;
}
.policy-details > summary::-webkit-details-marker{display:none}
.policy-details > summary::before{
  content:"";
  width:8px;height:8px;flex:none;
  border-right:2px solid var(--clay);
  border-bottom:2px solid var(--clay);
  transform:rotate(-45deg);
  transition:transform .25s ease;
}
.policy-details[open] > summary::before{transform:rotate(45deg)}
.policy-details > summary:hover{color:var(--clay)}
.policy-details__body{padding:0 1.25rem 1.35rem}
.policy-details__body .rate-table{margin-top:.2rem}
.policy-details__body p{font-size:.95rem}

/* ---- Registration form ---------------------------------------------- */
.form-card{
  background:var(--parchment); border:1px solid var(--line);
  border-radius:var(--radius-lg); padding:clamp(1.4rem,3vw,2.2rem);
  box-shadow:var(--shadow-sm);
}
.fset{border:0;padding:0;margin:0 0 2.1rem}
.fset:last-of-type{margin-bottom:1.2rem}
.fset > legend{
  font-family:var(--serif); font-size:1.3rem; color:var(--forest);
  margin-bottom:.35rem; padding:0;
}
.fset__hint{font-size:.9rem;color:var(--ink-soft);margin:0 0 1.1rem;max-width:62ch}
.f-grid{display:grid;grid-template-columns:1fr 1fr;gap:0 1.1rem}
.f-grid--3{grid-template-columns:1fr 1fr 1fr}
.f-span{grid-column:1/-1}
@media(max-width:640px){.f-grid,.f-grid--3{grid-template-columns:1fr}}
.field .req{color:var(--clay);margin-left:.15rem}
.field small{display:block;font-weight:400;letter-spacing:0;color:var(--ink-soft);font-size:.8rem;margin-top:.35rem}
.check{
  display:flex;gap:.75rem;align-items:flex-start;
  padding:.85rem 1rem;border:1.5px solid var(--line);border-radius:12px;
  background:#fff;margin-bottom:.7rem;cursor:pointer;transition:border-color .2s;
}
.check:hover{border-color:var(--sand)}
.check input{width:20px;height:20px;flex:none;margin-top:2px;accent-color:var(--forest);cursor:pointer}
.check span{font-size:.93rem;line-height:1.5}
.check a{color:var(--clay);font-weight:600;text-decoration:underline}
.form-note-privacy{
  font-size:.85rem;color:var(--ink-soft);border-top:1px solid var(--line);
  padding-top:1.1rem;margin-top:1.6rem;max-width:70ch;
}
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}

/* ---- Rating proof cards --------------------------------------------- */
.ratings{
  display:flex; flex-wrap:wrap; justify-content:center; gap:1.1rem;
  margin:2rem auto 0; max-width:660px;
}
.rating-card{
  flex:1 1 240px; text-align:center;
  background:var(--parchment); border:1px solid var(--line);
  border-radius:var(--radius); padding:1.5rem 1.4rem;
  box-shadow:var(--shadow-sm);
}
.rating-card .stars{ color:var(--clay); font-size:1.05rem; letter-spacing:.14em; }
.rating-num{
  font-family:var(--serif); font-size:2.9rem; line-height:1;
  color:var(--forest); margin:.45rem 0 .4rem;
}
.rating-src{
  font-family:var(--sans); font-size:.82rem; letter-spacing:.06em;
  text-transform:uppercase; color:var(--ink-soft); line-height:1.5;
}
@media (max-width:520px){
  .rating-card{ flex:1 1 100%; padding:1.25rem 1.1rem; }
  .rating-num{ font-size:2.4rem; }
}

/* ---- Aside note on a light background --------------------------------
   .footer-note is coloured for the dark footer; on a cream page it fails
   contrast badly. This is the light-background equivalent. */
.note{
  background: rgba(168,121,79,.10);
  border: 1px solid rgba(168,121,79,.28);
  color: var(--ink-soft);
  border-radius: 12px;
  padding: .95rem 1.15rem;
  font-size: .9rem;
  line-height: 1.6;
  margin-top: 1.2rem;
}
.note a{ color: var(--clay); font-weight: 600; }



/* ---- Headline wrapping ----------------------------------------------
   Browsers break headings at the last word that fits, which regularly
   strands a single word on its own line. `balance` evens the lines out
   instead. Ignored by older browsers, which simply wrap as before. */
h1, h2, h3,
.section-head p,
.hero p{
  text-wrap: balance;
}

/* ---------- Festivals & events listing ----------
   A date-led list rather than cards: these entries vary a lot in length,
   and a card grid would either clip the long ones or leave ragged gaps. */
.evt-intro{ max-width: 62ch; }
.evt-month{
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--pine);
  margin: 2.8rem 0 0;
  padding-bottom: .65rem;
  border-bottom: 2px solid var(--sand);
}
.evt-group:first-of-type .evt-month{ margin-top: 1.4rem; }
.evt-list{ list-style: none; margin: 0; padding: 0; }
.evt{
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 0 1.7rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}
.evt:last-child{ border-bottom: 0; padding-bottom: 0; }
.evt__when{
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clay);
  padding-top: .35rem;
  line-height: 1.5;
}
.evt__title{
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 .4rem;
}
.evt__body{ font-size: .96rem; color: var(--ink-soft); margin: 0; line-height: 1.65; }
.evt__body a{ color: var(--bark); text-decoration: underline; text-underline-offset: 2px; }
.evt__body a:hover{ color: var(--clay); }
.evt--soon .evt__when{ color: var(--moss); }
@media (max-width: 640px){
  .evt{ grid-template-columns: 1fr; gap: .4rem; padding: 1.2rem 0; }
  .evt__when{ padding-top: 0; }
  .evt-month{ font-size: 1.25rem; margin-top: 2.2rem; }
}

/* ---------- Anchor landing offset ----------
   The header is position:fixed, so a jump to #payment or #gift-certificates
   would otherwise scroll the heading underneath it and the visitor lands
   looking at the middle of a paragraph. Offset every linkable target by a
   little more than the tallest header state (90px on desktop, 74px below
   900px) so the heading always clears it. */
:target { scroll-margin-top: 104px; }
[id]     { scroll-margin-top: 104px; }
@media (max-width: 900px){
  :target { scroll-margin-top: 88px; }
  [id]    { scroll-margin-top: 88px; }
}
