/* ============================================================
   Granny Chic Suite — Marketing Site Styles
   Design language: warm "grandmillennial" elegance drawn from the
   suite itself — antique brass, cream plaster, deep garden green,
   faded rug wine, soft candlelight gold. Clean modern layout,
   warm & collected materials.
   ============================================================ */

:root {
  --cream: #f6efdf;
  --cream-deep: #eee1c3;
  --paper: #fffcf5;
  --ink: #26201a;
  --ink-soft: #5c4f40;
  --navy: #1c2733;
  --navy-deep: #121a22;
  --brass: #a9803f;
  --brass-deep: #8a6a34;
  --brass-pale: #ddc394;
  --sage: #5f6f4f;
  --sage-deep: #46543a;
  --sage-pale: #e6ead9;
  --wine: #6d2a2c;
  --wine-deep: #4f1d1f;
  --wine-pale: #efd9d7;
  --line: #e4d8ba;
  --shadow: 0 20px 40px -20px rgba(28, 22, 15, 0.28);
  --shadow-sm: 0 8px 20px -12px rgba(28, 22, 15, 0.32);
  --radius: 18px;
  --radius-sm: 10px;
  --max: 1180px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; text-wrap: balance; }
h1 em, h2 em { font-style: italic; color: var(--brass-pale); font-weight: 400; }
.intro h2 em, #nearby h2 em { color: var(--wine); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 600;
  margin-bottom: 0.9em;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 88px 0; }
section.tight { padding: 56px 0; }

.section-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head p { margin: 0; font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--wine);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--wine-deep); }
.btn-ghost {
  background: transparent;
  border-color: rgba(44,38,32,0.25);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-light {
  background: var(--paper);
  color: var(--ink);
}
.btn svg { width: 16px; height: 16px; flex: none; }

.btn-note {
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ---------- Top banner ---------- */
.banner {
  background: var(--ink);
  color: var(--cream-deep);
  text-align: center;
  font-size: 0.85rem;
  padding: 10px 16px;
  letter-spacing: 0.01em;
}
.banner strong { color: var(--brass-pale); }

/* ---------- Header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand .mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brass-pale), var(--wine));
  display: flex; align-items: center; justify-content: center;
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 700;
}
nav.links {
  display: flex;
  gap: 30px;
  align-items: center;
}
nav.links a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
}
nav.links a:hover { color: var(--wine-deep); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav .btn { padding: 11px 22px; font-size: 0.9rem; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,13,9,0.42) 0%, rgba(16,13,9,0.5) 35%, rgba(14,12,8,0.68) 65%, rgba(12,10,7,0.92) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
  width: 100%;
}
.hero .eyebrow { color: var(--brass-pale); text-shadow: 0 2px 12px rgba(0,0,0,0.65); }
.hero h1 { color: var(--paper); max-width: 780px; text-shadow: 0 2px 18px rgba(0,0,0,0.55); }
.hero-sub {
  font-size: 1.18rem;
  color: #efe6d4;
  max-width: 620px;
  margin-bottom: 1.8em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 2em;
}
.hero-facts span {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-start; }
.hero .btn-note { color: #d9cdb4; }
.scroll-cue {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  color: var(--paper);
  font-size: 0.75rem;
  writing-mode: vertical-rl;
  letter-spacing: 0.15em;
  opacity: 0.75;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---------- Intro / About the space ---------- */
.intro {
  background: var(--paper);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.intro-copy p { font-size: 1.06rem; }
.pull-note {
  background: var(--cream);
  border-left: 3px solid var(--wine);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 1.6em;
}
.intro-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.intro-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-media .tall { grid-row: span 2; aspect-ratio: 3/4.4; }
.intro-media .wide { aspect-ratio: 4/3; }

/* ---------- Guest cap notice ---------- */
.notice {
  background: var(--navy);
  color: var(--cream-deep);
}
.notice-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 34px;
}
.notice-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--wine);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.notice-icon svg { width: 26px; height: 26px; color: var(--paper); }
.notice h2 { color: var(--paper); font-size: 1.6rem; margin-bottom: 0.4em; }
.notice p { color: #d9cdb4; margin-bottom: 0.7em; }
.notice p:last-child { margin-bottom: 0; }
.notice strong { color: var(--brass-pale); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  aspect-ratio: 4/5;
}
.gallery-grid figure button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  margin: 0;
  background: none;
  cursor: pointer;
  position: relative;
  font: inherit;
  color: inherit;
}
.gallery-grid figure button:focus-visible {
  outline: 3px solid var(--wine);
  outline-offset: -3px;
}
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
  pointer-events: none;
}
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(20,17,12,0.75), transparent);
  color: var(--paper);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: left;
  pointer-events: none;
}
.gallery-grid figure button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20,17,12,0);
  transition: background 0.2s ease;
}
.gallery-grid figure button:hover::after,
.gallery-grid figure button:focus-visible::after {
  background: rgba(20,17,12,0.08);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(12, 10, 8, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lb-figure {
  margin: 0;
  max-width: min(92vw, 1200px);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lb-figure img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.lb-figure figcaption {
  color: var(--cream-deep);
  font-size: 0.95rem;
  text-align: center;
}
.lb-close, .lb-nav {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--paper);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lb-close svg, .lb-nav svg { width: 20px; height: 20px; }
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,0.18); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-count {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--brass-pale);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
@media (max-width: 720px) {
  .lb-figure { max-width: 94vw; max-height: 80vh; gap: 10px; }
  .lb-figure img { max-height: 66vh; }
  .lb-close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .lb-prev { left: 6px; width: 40px; height: 40px; }
  .lb-next { right: 6px; width: 40px; height: 40px; }
  .lb-count { bottom: 10px; font-size: 0.78rem; }
}

/* ---------- Amenities ---------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.amenity {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  text-align: left;
}
.amenity .ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--brass-deep);
}
.amenity .ic svg { width: 20px; height: 20px; }
.amenity h3 { font-size: 1rem; margin-bottom: 0.3em; font-family: var(--sans); font-weight: 600; }
.amenity p { font-size: 0.9rem; margin: 0; }

/* ---------- Good to know ---------- */
.know-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.know-card {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 26px;
}
.know-card h3 { font-size: 1.02rem; margin-bottom: 0.5em; }
.know-card ul { margin: 0; padding-left: 1.1em; color: var(--ink-soft); font-size: 0.94rem; }
.know-card li { margin-bottom: 0.4em; }
.know-card p { font-size: 0.94rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testi-wrap { background: var(--cream-deep); }
.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}
.rating-row .stars { color: var(--brass); font-size: 1.2rem; letter-spacing: 2px; }
.rating-row strong { font-family: var(--serif); font-size: 1.3rem; }
.testi-summary {
  max-width: 760px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
}
.testi-summary p {
  color: var(--ink);
  font-size: 1.08rem;
  margin: 0;
  text-align: center;
}
.testi-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin: 22px auto 0;
}
.testi-tags span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--wine-deep);
  background: var(--wine-pale);
  border-radius: 100px;
  padding: 7px 16px;
}

/* ---------- Location / travel times ---------- */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.loc-block h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brass-deep);
  font-family: var(--sans);
  font-weight: 700;
  margin-bottom: 1em;
}
.time-list { list-style: none; margin: 0; padding: 0; }
.time-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
.time-list li:last-child { border-bottom: none; }
.time-list .place { font-weight: 600; }
.time-list .place span { display: block; font-weight: 400; font-size: 0.83rem; color: var(--ink-soft); margin-top: 2px; }
.time-list .mins {
  white-space: nowrap;
  font-family: var(--serif);
  color: var(--wine);
  font-weight: 600;
}
.loc-foot {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.loc-privacy {
  margin-top: 26px;
  background: var(--paper);
  border: 1px dashed var(--brass-pale);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ---------- Recommendations ---------- */
.rec-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.rec-tab {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink-soft);
}
.rec-tab[aria-selected="true"] {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}
.rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rec-panel { display: none; }
.rec-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rec-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
}
.rec-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sage-deep);
  background: #e9edE2;
  padding: 4px 10px;
  border-radius: 100px;
  margin: 0 6px 12px 0;
  font-weight: 700;
}
.rec-card .tag-walk {
  color: var(--brass-deep);
  background: var(--brass-pale);
}
.rec-card h3 { font-size: 1.05rem; margin-bottom: 0.35em; }
.rec-card h3 a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid transparent;
}
.rec-card h3 a svg { width: 13px; height: 13px; flex: none; opacity: 0.55; }
.rec-card h3 a:hover,
.rec-card h3 a:focus-visible {
  border-bottom-color: var(--wine);
  color: var(--wine);
}
.rec-card h3 a:hover svg,
.rec-card h3 a:focus-visible svg { opacity: 1; }
.rec-card p { font-size: 0.9rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
details.faq {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
details.faq summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.12rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--ink);
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary .plus {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--wine);
  color: var(--wine-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}
details.faq[open] summary .plus { transform: rotate(45deg); }
details.faq p { margin: 14px 0 0; font-size: 0.98rem; }

/* ---------- Final CTA ---------- */
.cta-final {
  background: linear-gradient(160deg, var(--wine-deep), #2b1012);
  color: var(--paper);
  text-align: center;
  border-radius: var(--radius);
  padding: 64px 40px;
  margin: 0 28px;
}
.cta-final h2 { color: var(--paper); }
.cta-final p { color: #d9e0cf; max-width: 560px; margin: 0 auto 1.8em; font-size: 1.05rem; }
.cta-final .btn-note { color: #c3cdb5; }

/* ---------- Footer ---------- */
footer.site {
  background: var(--navy-deep);
  color: #c9bfae;
  padding: 60px 0 30px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  color: var(--brass-pale);
  font-family: var(--sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-grid a { color: #c9bfae; text-decoration: none; display: block; margin-bottom: 8px; }
.footer-grid a:hover { color: var(--brass-pale); }
.footer-brand .brand { color: var(--paper); margin-bottom: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: #9b917f;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-media { order: -1; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .know-grid { grid-template-columns: 1fr 1fr; }
  .rec-grid, .rec-panel.active { grid-template-columns: 1fr 1fr; }
  .loc-grid { grid-template-columns: 1fr; gap: 30px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testi-summary { padding: 30px; }
}
@media (max-width: 720px) {
  nav.links { display: none; }
  .menu-toggle { display: block; }
  .nav .btn { white-space: nowrap; }
  section { padding: 56px 0; }
  section.tight { padding: 40px 0; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .know-grid { grid-template-columns: 1fr; }
  .rec-grid, .rec-panel.active { grid-template-columns: 1fr; }
  .notice-card { grid-template-columns: 1fr; text-align: left; padding: 26px; }
  .hero { min-height: 100vh; }
  .hero-inner { padding-bottom: 48px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { justify-content: center; }
  .intro-media { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-final { padding: 40px 22px; margin: 0 16px; }
  .testi-summary { padding: 24px 20px; }
  .testi-summary p { font-size: 1rem; }
  .rec-tabs { gap: 8px; }
  .rec-tab { padding: 8px 14px; font-size: 0.82rem; }
  .know-card, .amenity { padding: 20px 18px; }
}
@media (max-width: 460px) {
  .wrap { padding: 0 18px; }
  .brand { font-size: 1.02rem; gap: 8px; }
  .brand .mark { width: 28px; height: 28px; font-size: 0.78rem; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn { padding: 9px 14px; font-size: 0.76rem; }
}

/* Mobile nav drawer */
body.nav-open nav.links {
  display: flex;
  position: fixed;
  inset: 0;
  top: 68px;
  background: var(--cream);
  flex-direction: column;
  padding: 30px 28px;
  z-index: 39;
  gap: 22px;
  font-size: 1.1rem;
}
