/* ===================================================================
   Lynwood Guest House — modern brochure site
   Palette: Lakeland green + warm cream + slate charcoal + brass
   =================================================================== */

:root {
  --green:      #2f4a3f;   /* deep fell green */
  --green-2:    #3d5f50;
  --green-soft: #e7ede8;
  --cream:      #f7f3ea;
  --cream-2:    #efe8d9;
  --ink:        #23211d;   /* near-black warm */
  --ink-soft:   #55514a;
  --brass:      #b0894b;   /* warm brass accent */
  --brass-dk:   #8f6c32;
  --white:      #ffffff;
  --line:       #e2dccd;
  --shadow:     0 18px 40px -18px rgba(35, 33, 29, .35);
  --shadow-sm:  0 6px 18px -10px rgba(35, 33, 29, .35);
  --radius:     16px;
  --radius-sm:  10px;
  --maxw:       1160px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--brass-dk); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin: 0 0 .5em; }
h3 { font-size: 1.3rem; margin: 0 0 .35em; }

.kicker { font-family: var(--sans); text-transform: uppercase; letter-spacing: .18em; font-size: .74rem; font-weight: 600; color: var(--brass-dk); margin: 0 0 .6rem; }
.kicker.light { color: #d9c9a0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  padding: .8em 1.35em; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: .95em 1.7em; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-2); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.24); color: #fff; transform: translateY(-2px); }

.stars { color: var(--brass); letter-spacing: .08em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 243, 234, .9);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 20px; height: 68px; }
.brand { display: flex; flex-direction: column; line-height: 1.05; margin-right: auto; }
.brand-mark { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--green); }
.brand-sub { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.nav { display: flex; gap: 26px; }
.nav a { font-weight: 500; font-size: .95rem; color: var(--ink); }
.nav a:hover { color: var(--brass-dk); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.phone-link { font-weight: 600; color: var(--ink); font-size: .95rem; }
.phone-icon { color: var(--brass-dk); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; color: var(--green); cursor: pointer; }
.nav-mobile { display: none; flex-direction: column; padding: 8px 22px 16px; background: var(--cream); border-bottom: 1px solid var(--line); }
.nav-mobile a { padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.nav-mobile a:last-child { border: 0; }
.nav-mobile.open { display: flex; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img {
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity;
}
.hero-media img.is-active { opacity: 1; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(16,22,18,.60) 0%, rgba(16,22,18,.30) 34%, rgba(16,22,18,.06) 60%, rgba(16,22,18,0) 100%),
    linear-gradient(180deg, rgba(16,22,18,.10) 0%, rgba(16,22,18,0) 42%, rgba(16,22,18,.40) 100%);
}
.hero-content { position: relative; padding: clamp(90px, 16vh, 180px) 22px clamp(64px, 12vh, 120px); max-width: calc(var(--maxw) + 0px); }
.hero .eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: .78rem; font-weight: 600; color: #f0e6cc; margin: 0 0 1rem; text-shadow: 0 1px 10px rgba(0,0,0,.6); }
.hero h1 { color: #fff; max-width: 15ch; text-shadow: 0 2px 20px rgba(0,0,0,.6), 0 1px 3px rgba(0,0,0,.55); }
.hero-lede { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 40ch; margin: 1.1rem 0 1.8rem; color: #f6f3ec; text-shadow: 0 1px 12px rgba(0,0,0,.65), 0 1px 2px rgba(0,0,0,.5); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 26px; padding: 0; margin: 2rem 0 0; font-size: .95rem; color: #f2eddf; text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.hero-trust li { display: flex; align-items: center; gap: .5em; }
.hero-trust strong { color: #fff; }
.hero-trust li + li { position: relative; }

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 9vw, 104px) 0; }
.section-head { max-width: 62ch; margin: 0 auto clamp(32px, 5vw, 56px); text-align: center; }
.section-head .kicker { display: block; }
.section-intro { color: var(--ink-soft); font-size: 1.08rem; margin: .6rem 0 0; }

/* ---------- Welcome ---------- */
.welcome { background: var(--white); }
.welcome-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.welcome-copy p { color: var(--ink-soft); font-size: 1.06rem; }
.welcome-copy .signoff { color: var(--ink); font-family: var(--serif); font-size: 1.2rem; font-style: italic; margin-top: 1.4rem; }
.welcome-stats { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.welcome-stats li {
  background: var(--green-soft); border-radius: var(--radius-sm); padding: 22px 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.stat-num { font-family: var(--serif); font-size: 1.8rem; color: var(--green); font-weight: 600; }
.stat-label { font-size: .84rem; color: var(--ink-soft); line-height: 1.35; }

/* ---------- Rooms ---------- */
.rooms { background: var(--cream); }
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.room-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .25s ease;
}
.room-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.room-img { aspect-ratio: 4 / 3; overflow: hidden; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room-card:hover .room-img img { transform: scale(1.05); }
.room-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.room-body p { color: var(--ink-soft); font-size: .97rem; margin: 0 0 1rem; }
.amenities { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0 0 1.2rem; }
.amenities li { font-size: .78rem; background: var(--green-soft); color: var(--green); padding: 4px 10px; border-radius: 999px; }
.room-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.price { font-size: .95rem; color: var(--ink-soft); }
.price strong { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); }
.rooms-note { text-align: center; margin: 34px auto 0; max-width: 60ch; color: var(--ink-soft); }

/* ---------- Split (breakfast) ---------- */
.breakfast { background: var(--white); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.split-copy p { color: var(--ink-soft); font-size: 1.06rem; }
.tick-list { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.tick-list li { padding: 8px 0 8px 32px; position: relative; font-weight: 500; }
.tick-list li::before {
  content: "✓"; position: absolute; left: 0; top: 7px;
  width: 22px; height: 22px; background: var(--green); color: #fff; border-radius: 50%;
  display: grid; place-items: center; font-size: .72rem;
}

/* ---------- Reviews ---------- */
.reviews { background: var(--green); color: #f4f1e9; }
.reviews h2, .reviews .kicker { color: #fff; }
.reviews .kicker { color: #d9c9a0; }
.rating-badges { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 1.4rem; }
.rating-badge {
  display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-sm); padding: 12px 18px; color: #fff;
}
.rating-badge:hover { background: rgba(255,255,255,.14); color: #fff; }
.rb-score { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: #fff; }
.rb-star { color: var(--brass); font-size: 1rem; }
.rb-meta { font-size: .8rem; line-height: 1.3; text-align: left; color: #e7e1d2; }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: clamp(36px, 5vw, 56px); max-width: 900px; margin-left: auto; margin-right: auto; }
.review {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 26px 24px; margin: 0;
}
.review p { font-family: var(--serif); font-size: 1.08rem; font-style: italic; line-height: 1.5; margin: 0 0 1rem; color: #f6f3ec; }
.review footer { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: #d7d0c0; }
.review cite { font-style: normal; }

/* ---------- Location ---------- */
.location { background: var(--cream); }
.location-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.loc-card { margin: 0; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.loc-card img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.loc-card figcaption { padding: 14px 16px 18px; font-size: .86rem; color: var(--ink-soft); }
.loc-card figcaption strong { color: var(--ink); display: block; margin-bottom: 2px; font-family: var(--serif); font-size: 1rem; }
.map-embed { margin-top: 28px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Book ---------- */
.book { background: var(--ink); color: #f2efe8; }
.book .kicker { color: #d9c9a0; }
.book h2 { color: #fff; }
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.book-lede { font-size: 1.1rem; color: #d8d3c8; max-width: 42ch; }
.book-lede strong { color: #fff; }
.book-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 1.8rem 0 1.4rem; }
.book-tile {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-sm);
  padding: 18px; display: flex; flex-direction: column; gap: 3px; color: #fff; transition: background .2s ease, transform .15s ease;
}
.book-tile:hover { background: rgba(255,255,255,.12); color: #fff; transform: translateY(-2px); }
.bt-icon { font-size: 1.3rem; color: var(--brass); }
.bt-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: #cfc9bc; }
.bt-value { font-weight: 600; word-break: break-word; }
.ota { margin: 1.4rem 0; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.14); }
.ota-label { font-size: .9rem; color: #bdb7aa; margin: 0 0 .6rem; }
.ota-links { display: flex; gap: 12px; flex-wrap: wrap; }
.ota-links a { color: #fff; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; padding: .5em 1.1em; font-size: .9rem; font-weight: 500; }
.ota-links a:hover { background: rgba(255,255,255,.12); color: #fff; }
.policies { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; font-size: .9rem; color: #cfc9bc; }
.policies strong { color: #fff; font-weight: 600; }

/* Form */
.book-form-wrap { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(24px, 3vw, 34px); }
.book-form h3 { color: var(--ink); margin-bottom: 1.1rem; }
.field { margin-bottom: 14px; }
.field-row { display: flex; gap: 12px; }
.field-row .field { flex: 1; }
.field-narrow { max-width: 90px; }
.book-form label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 5px; }
.book-form input, .book-form select, .book-form textarea {
  width: 100%; padding: .7em .8em; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: .95rem; color: var(--ink); background: var(--cream); transition: border .15s ease, box-shadow .15s ease;
}
.book-form input:focus, .book-form select:focus, .book-form textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(47,74,63,.14); background: #fff;
}
.book-form textarea { resize: vertical; }
.form-reassure { font-size: .84rem; color: var(--ink-soft); text-align: center; margin: 12px 0 0; }
.hp { position: absolute; left: -9999px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green); color: #dfe6e0; padding: clamp(48px, 6vw, 72px) 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer .brand-mark { color: #fff; font-size: 1.3rem; display: block; margin-bottom: .6rem; }
.site-footer address { font-style: normal; line-height: 1.8; font-size: .92rem; color: #cdd6cf; }
.site-footer a { color: #eef3ee; }
.site-footer a:hover { color: var(--brass); }
.foot-nav { display: flex; flex-direction: column; gap: 9px; }
.foot-nav h4 { color: #fff; font-family: var(--sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; margin: 0 0 6px; }
.foot-nav a { font-size: .92rem; color: #cdd6cf; }
.foot-cta p { font-family: var(--serif); font-size: 1.15rem; color: #fff; margin: 0 0 12px; }
.foot-legal { border-top: 1px solid rgba(255,255,255,.16); margin-top: 40px; padding-top: 20px; }
.foot-legal p { font-size: .82rem; color: #b7c2b9; margin: 0; }

/* ---------- Sticky mobile book bar ---------- */
.book-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; display: none;
  gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(247,243,234,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line);
}
.book-bar a { flex: 1; }
.bb-call { display: flex; align-items: center; justify-content: center; gap: .4em; font-weight: 600; color: var(--green); border: 1.5px solid var(--green); border-radius: 999px; padding: .8em; }
.book-bar .bb-book { flex: 2; }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .welcome-grid { grid-template-columns: 1fr; }
  .room-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .room-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .welcome-stats { grid-template-columns: 1fr 1fr; }
  .book-actions { grid-template-columns: 1fr; }
  .policies { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { flex-wrap: wrap; }
  .field-narrow { max-width: none; }
  .book-bar { display: flex; }
  body { padding-bottom: 74px; }
  .hero-content { padding-top: 90px; }
  /* Text spans full width on phones, so darken the whole image, not just the left */
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(16,22,18,.52) 0%, rgba(16,22,18,.34) 24%, rgba(16,22,18,.44) 52%, rgba(16,22,18,.76) 100%);
  }
  .hero h1 { text-shadow: 0 2px 18px rgba(0,0,0,.75), 0 1px 3px rgba(0,0,0,.7); }
  .hero-lede { text-shadow: 0 1px 14px rgba(0,0,0,.85), 0 1px 3px rgba(0,0,0,.7); }
  .hero .eyebrow { text-shadow: 0 1px 10px rgba(0,0,0,.8); }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .hero-media img { opacity: 0; }
  .hero-media img:first-of-type { opacity: 1; }
}
