/* =====================================================
   SunnyTiny — Main Stylesheet
   Palette: sand / cream / olive / wood / ink
   Fonts: Cormorant Garamond (serif) + Inter (sans)
   ===================================================== */

:root {
  --sand:       #E8DFD3;
  --sand-2:     #F1EBE0;
  --cream:      #FAF6EE;
  --paper:      #FDFBF6;
  --olive:      #6B7A4A;
  --olive-dark: #4E5A36;
  --wood:       #A8896B;
  --wood-dark:  #7A5E42;
  --ink:        #2A2620;
  --ink-soft:   #5A5147;
  --line:       #D9CFBF;
  --line-soft:  #E7DFD1;
  --accent:     #C7632B;
  --gold:       #C7932B;

  --serif: "Cormorant Garamond","Iowan Old Style",Georgia,serif;
  --sans:  "Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;

  --pad:  clamp(20px, 4vw, 56px);
  --maxw: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1,h2,h3,h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.08;
}
h1 { font-size: clamp(40px, 6.8vw, 104px); }
h2 { font-size: clamp(30px, 4vw, 58px); letter-spacing: -0.015em; }
h3 { font-size: clamp(20px, 2vw, 28px); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }

/* ——— Top bar ——— */
.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 16px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transition: background .4s, box-shadow .4s, color .4s;
  color: #fff;
}
.top.scrolled {
  background: rgba(253,251,246,0.95);
  backdrop-filter: blur(14px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line-soft);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 22px; letter-spacing: 0.02em;
  flex-shrink: 0;
}
.brand .mark {
  width: 32px; height: 32px; border-radius: 50%;
  background: radial-gradient(circle at 38% 33%, #F5D9A8 0%, #D4A574 55%, #A87844 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22);
  flex: none;
}
.nav {
  display: flex; gap: 24px; font-size: 13.5px; font-weight: 500;
  align-items: center;
}
.nav a { opacity: .85; transition: opacity .2s; }
.nav a:hover { opacity: 1; }
.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

/* Language switcher */
.lang-switcher {
  display: flex; gap: 4px; align-items: center;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
}
.lang-btn {
  padding: 4px 7px; border-radius: 4px;
  opacity: .6; transition: opacity .2s, background .2s;
  cursor: pointer;
  background: none; border: none;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  color: inherit;
}
.lang-btn.active { opacity: 1; background: rgba(255,255,255,0.18); border-radius: 4px; }
.top.scrolled .lang-btn.active { background: var(--sand); color: var(--ink); }

.top-cta {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 11px 20px; border-radius: 999px;
  background: var(--ink); color: var(--cream);
  transition: transform .2s, background .2s;
  white-space: nowrap;
}
.top-cta:hover { transform: translateY(-1px); background: var(--olive-dark); }
.top.scrolled .top-cta { background: var(--olive-dark); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
  cursor: pointer; background: none; border: none;
  width: 32px;
}
.hamburger span {
  display: block; height: 1.5px; background: currentColor;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 45;
  background: var(--paper);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
  opacity: 0; transform: translateY(-12px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.mobile-nav.open {
  display: flex; opacity: 1; transform: translateY(0); pointer-events: auto;
}
.mobile-nav a {
  font-family: var(--serif); font-size: clamp(28px, 6vw, 44px);
  opacity: .85; transition: opacity .2s;
}
.mobile-nav a:hover { opacity: 1; }
.mobile-nav .m-lang {
  display: flex; gap: 12px; font-size: 14px; font-weight: 600; margin-top: 16px;
}
.mobile-nav .m-lang .lang-btn { opacity: .5; font-size: 14px; padding: 6px 10px; }
.mobile-nav .m-lang .lang-btn.active { opacity: 1; background: var(--sand); color: var(--ink); }
.mobile-cta {
  padding: 14px 28px; border-radius: 999px;
  background: var(--ink); color: var(--cream);
  font-size: 14px; font-weight: 600;
}

@media (max-width: 960px) { .nav { display: none; } }
@media (max-width: 960px) { .hamburger { display: flex; } }
@media (max-width: 640px) { .top-cta { display: none; } }

/* ——— Buttons ——— */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 30px; border-radius: 999px;
  background: var(--cream); color: var(--ink);
  font-weight: 600; font-size: 14px; letter-spacing: 0.03em;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,0.26); }
.btn-primary .arrow { transition: transform .25s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 17px 24px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.45); color: #fff;
  font-weight: 500; font-size: 14px;
  transition: background .2s, border-color .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-ghost.dark {
  border-color: var(--line); color: var(--ink);
}
.btn-ghost.dark:hover { background: var(--sand); border-color: var(--sand); }

/* ——— HERO ——— */
.hero {
  position: relative; height: 100vh;
  min-height: 700px; max-height: 1080px;
  overflow: hidden; color: #fff;
  padding: 0; display: flex; align-items: flex-end;
}
.hero .bg {
  position: absolute; inset: -10% 0 0 0;
  background:
    linear-gradient(180deg, rgba(20,16,10,0.32) 0%, rgba(20,16,10,0.12) 35%, rgba(20,16,10,0.78) 100%),
    url('https://sunnytiny.cz/wp-content/uploads/2026/03/IMG_2976.jpg') center/cover no-repeat;
  will-change: transform;
  transform: translate3d(0,0,0) scale(1.08);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  padding: 0 var(--pad) clamp(48px, 8vw, 96px);
  max-width: var(--maxw); margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 600;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: #F5D9A8;
}
.hero h1 { font-weight: 400; max-width: 16ch; text-wrap: balance; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: #F5D9A8; }
.hero-sub {
  max-width: 50ch; font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(255,255,255,0.87); margin-bottom: 38px; font-weight: 400;
  text-wrap: pretty;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-meta {
  position: absolute; right: var(--pad); bottom: clamp(48px, 8vw, 96px);
  z-index: 2; text-align: right; display: none;
}
@media(min-width:1040px) { .hero-meta { display: block; } }
.hero-meta .coords { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; opacity: .65; margin-bottom: 6px; }
.hero-meta .loc { font-family: var(--serif); font-size: 20px; font-style: italic; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.65);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint .line {
  width: 1px; height: 34px; background: rgba(255,255,255,0.5);
  animation: drip 2.4s ease-in-out infinite;
}
@keyframes drip {
  0%   { transform: scaleY(0.2); transform-origin: top; }
  50%  { transform: scaleY(1);   transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0);   transform-origin: bottom; }
}

/* ——— Trust strip ——— */
.strip {
  background: var(--sand); padding: 26px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--ink-soft); letter-spacing: 0.04em;
}
.strip b { color: var(--ink); font-weight: 600; }
.strip .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--wood); display: inline-block; margin: 0 10px; vertical-align: middle; }
.strip-item { display: flex; align-items: center; }

/* ——— About ——— */
.intro { background: var(--paper); }
.intro .grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 100px); align-items: end;
}
@media(max-width:820px) { .intro .grid { grid-template-columns: 1fr; } }
.intro h2 { max-width: 14ch; }
.intro h2 em { font-style: italic; color: var(--olive); }
.intro p { font-size: 17px; color: var(--ink-soft); max-width: 52ch; text-wrap: pretty; }
.intro .stats {
  margin-top: 40px; display: flex; gap: 36px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid var(--line-soft);
}
.stat .num { font-family: var(--serif); font-size: 38px; color: var(--ink); line-height: 1; }
.stat .lbl { font-size: 11px; letter-spacing: 0.17em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; }

/* ——— USP ——— */
.usp { background: var(--cream); }
.usp-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; flex-wrap: wrap; gap: 24px; }
.usp-head h2 em { font-style: italic; color: var(--wood-dark); }
.usp-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line-soft);
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
@media(max-width:880px) { .usp-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px) { .usp-grid { grid-template-columns: 1fr; } }
.usp-card {
  background: var(--cream); padding: 40px 30px;
  display: flex; flex-direction: column; gap: 16px; min-height: 250px;
  transition: background .3s;
}
.usp-card:hover { background: var(--sand-2); }
.usp-card .num { font-family: var(--serif); font-size: 12px; font-style: italic; color: var(--wood-dark); letter-spacing: 0.1em; }
.usp-card h3 { font-size: clamp(20px, 1.8vw, 26px); }
.usp-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ——— Gallery / Stay ——— */
.stay { background: var(--paper); }
.stay-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 24px; }
.stay-head h2 em { font-style: italic; color: var(--olive); }
.stay-head p { max-width: 46ch; color: var(--ink-soft); margin: 0; font-size: 16px; }
.gallery {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  grid-auto-rows: 130px;
  gap: 14px;
}
.gallery figure { margin: 0; overflow: hidden; border-radius: 6px; background: var(--sand-2); position: relative; }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figure figcaption {
  position: absolute; left: 16px; bottom: 14px;
  font-family: var(--serif); font-style: italic; font-size: 17px; color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.g1 { grid-column: span 4; grid-row: span 3; }
.g2 { grid-column: span 2; grid-row: span 2; }
.g3 { grid-column: span 2; grid-row: span 1; }
.g4 { grid-column: span 3; grid-row: span 2; }
.g5 { grid-column: span 3; grid-row: span 2; }
@media(max-width:820px) {
  .gallery { grid-template-columns: repeat(4,1fr); grid-auto-rows: 100px; }
  .g1 { grid-column: span 4; grid-row: span 3; }
  .g2,.g3 { grid-column: span 2; grid-row: span 2; }
  .g4,.g5 { grid-column: span 2; grid-row: span 2; }
}
@media(max-width:560px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 120px; }
  .g1 { grid-column: span 2; grid-row: span 2; }
  .g2,.g3,.g4,.g5 { grid-column: span 1; grid-row: span 2; }
}

.amenities {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 28px;
  padding: 36px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
@media(max-width:820px) { .amenities { grid-template-columns: repeat(2,1fr); } }
.am { display: flex; flex-direction: column; gap: 4px; }
.am .k { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.am .v { font-family: var(--serif); font-size: 21px; }

/* ——— Okolí ——— */
.around { background: var(--ink); color: var(--cream); }
.around .eyebrow { color: rgba(250,246,238,0.55); }
.around-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 64px; }
@media(max-width:820px) { .around-head { grid-template-columns: 1fr; gap: 28px; } }
.around h2 { color: var(--cream); }
.around h2 em { color: #E3B77A; font-style: italic; }
.around-head p { color: rgba(250,246,238,0.7); max-width: 46ch; font-size: 16px; margin: 0; }
.around-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media(max-width:880px) { .around-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:500px) { .around-grid { grid-template-columns: 1fr; } }
.around-card {
  position: relative; border-radius: 6px; overflow: hidden; aspect-ratio: 3/4;
  background: #2a2620;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px; color: #fff;
}
.around-card::before {
  content: ""; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.7);
  transition: transform .6s, filter .4s;
}
.around-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.78) 100%);
}
.around-card:hover::before { transform: scale(1.06); filter: brightness(0.82); }
.around-card > * { position: relative; z-index: 1; }
.around-card .tag { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; opacity: .78; margin-bottom: 6px; display: block; }
.around-card h3 { font-size: clamp(18px, 1.6vw, 22px); color: #fff; text-wrap: balance; }
.around-card .dist { margin-top: 10px; font-size: 12px; opacity: .72; display: block; }
.a-1::before { background-image: url('https://images.unsplash.com/photo-1502082553048-f009c37129b9?w=800&q=80'); }
.a-2::before { background-image: url('https://images.unsplash.com/photo-1516939884455-1445c8652f83?w=800&q=80'); }
.a-3::before { background-image: url('https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?w=800&q=80'); }
.a-4::before { background-image: url('https://images.unsplash.com/photo-1558980664-10ea19f9a2c5?w=800&q=80'); }

/* ——— Pro koho ——— */
.who { background: var(--cream); }
.who-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--line-soft);
  margin-top: 52px; border-top: 1px solid var(--line-soft);
}
@media(max-width:880px) { .who-grid { grid-template-columns: repeat(2,1fr); } }
.who-card { background: var(--cream); padding: 36px 22px; min-height: 210px; display: flex; flex-direction: column; gap: 12px; }
.who-card .ro { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--wood-dark); }
.who-card h3 { font-size: clamp(18px, 1.6vw, 22px); text-wrap: balance; }
.who-card p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

/* ——— Ceník ——— */
.price { background: var(--sand-2); }
.price-wrap { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
@media(max-width:820px) { .price-wrap { grid-template-columns: 1fr; } }
.price h2 em { font-style: italic; color: var(--olive); }
.price-intro p { color: var(--ink-soft); font-size: 16px; max-width: 40ch; margin-top: 20px; }
.price-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 8px; overflow: hidden; }
.price-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: baseline;
  padding: 26px 30px; border-bottom: 1px solid var(--line-soft);
}
.price-row:last-of-type { border-bottom: 0; }
.price-row .pn { font-family: var(--serif); font-size: clamp(20px, 1.8vw, 24px); }
.price-row .pd { font-size: 12px; color: var(--ink-soft); letter-spacing: 0.04em; margin-top: 3px; }
.price-row .pa { font-family: var(--serif); font-size: clamp(20px, 1.8vw, 24px); color: var(--ink); white-space: nowrap; }
.price-row .pa small { font-family: var(--sans); font-size: 11px; color: var(--ink-soft); font-weight: 500; margin-left: 3px; letter-spacing: 0.06em; }
.price-row.feat { background: var(--olive); color: var(--cream); }
.price-row.feat .pd { color: rgba(250,246,238,0.72); }
.price-row.feat .pa { color: var(--cream); }
.price-row.feat .pa small { color: rgba(250,246,238,0.72); }
.price-foot {
  padding: 22px 30px; background: var(--sand);
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--ink-soft);
}
.price-foot b { color: var(--ink); font-weight: 600; }
.price-foot .gift { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--wood-dark); }
.price-cta-wrap { margin-top: 28px; }
.price-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  background: var(--ink); color: var(--cream);
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.03em;
  transition: background .2s, transform .2s;
}
.price-cta:hover { background: var(--olive-dark); transform: translateY(-1px); }

/* ——— Reviews ——— */
.reviews { background: var(--paper); }
.reviews-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; flex-wrap: wrap; gap: 20px; }
.reviews-head h2 em { font-style: italic; color: var(--wood-dark); }
.rating { display: flex; align-items: center; gap: 12px; }
.rating .stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; }
.rating .big { font-family: var(--serif); font-size: 26px; }
.rating .sm { font-size: 12.5px; color: var(--ink-soft); }
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media(max-width:880px) { .rev-grid { grid-template-columns: 1fr; } }
.rev {
  background: var(--cream); padding: 32px 28px; border-radius: 8px;
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid var(--line-soft);
}
.rev .st { color: var(--gold); font-size: 13px; letter-spacing: 2px; }
.rev blockquote {
  margin: 0; font-family: var(--serif); font-size: clamp(18px, 1.6vw, 21px); line-height: 1.38;
  color: var(--ink); text-wrap: pretty;
}
.rev blockquote::before { content: "\201C"; font-size: 38px; color: var(--wood); line-height: 0; margin-right: 3px; vertical-align: -0.2em; }
.rev .author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line-soft); }
.rev .avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--wood); color: var(--cream); display: grid; place-items: center; font-weight: 600; font-size: 12px; flex: none; }
.rev .who-n { font-weight: 600; font-size: 13px; }
.rev .who-d { font-size: 11.5px; color: var(--ink-soft); }

/* ——— Map section ——— */
.map-section { background: var(--ink); color: var(--cream); }
.map-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
@media(max-width:820px) { .map-wrap { grid-template-columns: 1fr; } }
.map-section .eyebrow { color: rgba(250,246,238,0.55); }
.map-section h2 { color: var(--cream); margin: 16px 0 20px; }
.map-section h2 em { color: #E3B77A; font-style: italic; }
.map-section p { color: rgba(250,246,238,0.7); font-size: 16px; max-width: 44ch; }
.map-frame {
  border-radius: 8px; overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,0.1);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(30%) contrast(1.1); }
.map-facts { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.map-fact { display: flex; gap: 14px; align-items: flex-start; font-size: 14px; color: rgba(250,246,238,0.78); }
.map-fact strong { color: var(--cream); display: block; font-size: 15px; font-weight: 600; }
.map-fact-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; flex: none; font-size: 16px; }

/* ——— FAQ ——— */
.faq { background: var(--sand-2); }
.faq-wrap { display: grid; grid-template-columns: 1fr 1.45fr; gap: clamp(40px,6vw,80px); align-items: start; }
@media(max-width:820px) { .faq-wrap { grid-template-columns: 1fr; } }
.faq h2 em { font-style: italic; color: var(--olive); }
.faq-contact { font-size: 14px; color: var(--ink-soft); margin-top: 16px; }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item details { padding: 22px 4px; }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--serif); font-size: clamp(18px, 1.5vw, 21px); color: var(--ink);
  transition: color .2s;
}
.faq-item summary:hover { color: var(--olive-dark); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; flex: none;
  font-family: var(--sans); font-size: 17px; color: var(--ink-soft);
  transition: transform .3s, background .2s, color .2s;
}
.faq-item details[open] summary .plus { transform: rotate(45deg); background: var(--olive); color: var(--cream); border-color: var(--olive); }
.faq-item details p { margin: 12px 0 4px; color: var(--ink-soft); font-size: 14.5px; max-width: 58ch; text-wrap: pretty; line-height: 1.65; }

/* ——— Blog ——— */
.blog { background: var(--paper); }
.blog-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; flex-wrap: wrap; gap: 20px; }
.blog-head h2 em { font-style: italic; color: var(--wood-dark); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
@media(max-width:880px) { .blog-grid { grid-template-columns: 1fr; } }
.post { display: flex; flex-direction: column; gap: 16px; }
.post .thumb { aspect-ratio: 4/3; border-radius: 6px; overflow: hidden; background: var(--sand-2); }
.post .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.post:hover .thumb img { transform: scale(1.05); }
.post .cat { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--wood-dark); }
.post h3 { font-size: clamp(20px, 1.6vw, 24px); text-wrap: balance; }
.post h3 a { transition: color .2s; }
.post h3 a:hover { color: var(--olive-dark); }
.post .meta { font-size: 12px; color: var(--ink-soft); display: flex; gap: 10px; align-items: center; }
.post .meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-soft); display: inline-block; }

/* ——— Closing CTA ——— */
.closer {
  background:
    linear-gradient(180deg, rgba(20,16,10,0.52) 0%, rgba(20,16,10,0.72) 100%),
    url('https://images.unsplash.com/photo-1499793983690-e29da59ef1c2?w=2000&q=80') center/cover no-repeat;
  color: #fff; text-align: center;
}
.closer .wrap { max-width: 820px; }
.closer .eyebrow { color: rgba(255,255,255,0.65); }
.closer h2 { color: #fff; margin: 18px 0 22px; text-wrap: balance; }
.closer h2 em { color: #F5D9A8; font-style: italic; }
.closer p { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 52ch; margin: 0 auto 36px; text-wrap: pretty; }

/* ——— Footer ——— */
footer { background: var(--ink); color: rgba(250,246,238,0.72); padding: 72px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
@media(max-width:820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .foot-grid { grid-template-columns: 1fr; } }
footer h4 { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,246,238,0.5); margin-bottom: 18px; font-weight: 500; }
footer .brand { color: var(--cream); font-size: 24px; margin-bottom: 14px; }
footer p { font-size: 13.5px; line-height: 1.7; margin-bottom: 10px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; font-size: 13.5px; }
footer ul a { transition: color .2s; }
footer ul a:hover { color: var(--cream); }
.foot-bottom {
  border-top: 1px solid rgba(250,246,238,0.1); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 11.5px; color: rgba(250,246,238,0.45); letter-spacing: 0.04em;
}

/* ——— Sticky CTA ——— */
.sticky-cta {
  position: fixed; right: clamp(14px,3vw,28px); bottom: clamp(14px,3vw,24px); z-index: 44;
  padding: 15px 22px; border-radius: 999px;
  background: var(--ink); color: var(--cream);
  font-weight: 600; font-size: 13px; letter-spacing: 0.03em;
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
  display: flex; align-items: center; gap: 10px;
  opacity: 0; transform: translateY(18px); pointer-events: none;
  transition: opacity .4s, transform .4s, background .2s;
  cursor: pointer;
}
.sticky-cta.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta:hover { background: var(--olive-dark); }
.sticky-cta .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #8CB04A; flex: none;
  box-shadow: 0 0 0 0 rgba(140,176,74,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(140,176,74,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(140,176,74,0); }
  100% { box-shadow: 0 0 0 0   rgba(140,176,74,0); }
}

/* ——— Modal ——— */
.modal-root {
  position: fixed; inset: 0; z-index: 100;
  display: none; align-items: center; justify-content: center;
  padding: 16px;
}
.modal-root.open { display: flex; }
.modal-bg {
  position: absolute; inset: 0; background: rgba(20,16,10,0.62);
  backdrop-filter: blur(6px); animation: mfade .3s;
}
.modal {
  position: relative; z-index: 1;
  background: var(--paper); border-radius: 10px;
  width: 100%; max-width: 560px;
  box-shadow: 0 28px 72px rgba(0,0,0,0.32);
  max-height: 92vh; overflow-y: auto;
  animation: mrise .4s cubic-bezier(.2,.8,.2,1);
}
@keyframes mfade { from { opacity: 0; } to { opacity: 1; } }
@keyframes mrise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.modal-head {
  padding: 30px 34px 18px;
  border-bottom: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
}
.modal-head h3 { font-size: clamp(22px, 3vw, 28px); }
.modal-head h3 em { font-style: italic; color: var(--olive); }
.modal-head p { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.close-x {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--sand); display: grid; place-items: center; flex: none;
  font-size: 17px; color: var(--ink);
  transition: background .2s, transform .2s; cursor: pointer;
}
.close-x:hover { background: var(--line); transform: rotate(90deg); }
form.book { padding: 26px 34px 32px; display: flex; flex-direction: column; gap: 16px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: 10.5px; letter-spacing: 0.17em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 14.5px; color: var(--ink);
  padding: 11px 13px; border: 1px solid var(--line); border-radius: 5px;
  background: var(--paper);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(107,122,74,0.14);
}
.field textarea { resize: vertical; min-height: 70px; }
.summary-box {
  background: var(--sand-2); border-radius: 6px; padding: 14px 16px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.summary-box .total { font-family: var(--serif); font-size: 22px; color: var(--ink); }
.summary-sub { font-size: 11.5px; color: var(--ink-soft); margin-top: 2px; }
.book-submit {
  padding: 15px 22px; border-radius: 999px;
  background: var(--ink); color: var(--cream);
  font-weight: 600; font-size: 14px; letter-spacing: 0.04em;
  transition: background .2s, transform .2s;
}
.book-submit:hover { background: var(--olive-dark); transform: translateY(-1px); }
.form-fine { font-size: 11.5px; color: var(--ink-soft); text-align: center; }
.form-success {
  padding: 24px 34px 32px; text-align: center;
  display: none; flex-direction: column; align-items: center; gap: 16px;
}
.form-success.show { display: flex; }
.form-success .check { font-size: 40px; }
.form-success h3 { font-size: 26px; }
.form-success p { color: var(--ink-soft); font-size: 15px; max-width: 36ch; }

/* ——— Scroll reveal ——— */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ——— Blog page styles ——— */
.blog-page { background: var(--paper); }
.blog-page .page-hero {
  padding: clamp(100px, 14vw, 160px) 0 clamp(60px, 8vw, 100px);
  background: var(--cream); border-bottom: 1px solid var(--line-soft);
}
.blog-listing { padding: clamp(60px, 8vw, 100px) 0; }
.blog-listing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px 28px; }
@media(max-width:880px) { .blog-listing-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px) { .blog-listing-grid { grid-template-columns: 1fr; } }

/* Blog article */
.article-hero {
  height: clamp(340px, 50vw, 580px);
  position: relative; overflow: hidden;
  background: var(--ink);
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; opacity: .82; }
.article-hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(24px, 4vw, 56px) var(--pad) clamp(32px, 5vw, 64px);
  background: linear-gradient(180deg, transparent 30%, rgba(20,16,10,0.78) 100%);
  max-width: var(--maxw); margin: 0 auto;
  width: 100%;
}
.article-eyebrow { color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.article-hero h1 { color: #fff; max-width: 22ch; font-size: clamp(28px, 4.5vw, 64px); }
.article-meta { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.68); display: flex; gap: 16px; flex-wrap: wrap; }

.article-body { padding: clamp(48px, 7vw, 96px) 0; }
.article-grid { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
@media(max-width:900px) { .article-grid { grid-template-columns: 1fr; } }
.article-content { max-width: 72ch; }
.article-content h2 { font-size: clamp(22px, 2.8vw, 36px); margin: 40px 0 16px; color: var(--ink); }
.article-content h2 em { font-style: italic; color: var(--olive); }
.article-content h3 { font-size: clamp(18px, 1.8vw, 24px); margin: 28px 0 10px; }
.article-content p { font-size: 16px; color: var(--ink-soft); margin-bottom: 20px; line-height: 1.75; }
.article-content strong { color: var(--ink); }
.article-content ul, .article-content ol { margin: 0 0 20px 24px; }
.article-content li { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 6px; line-height: 1.65; }
.article-content blockquote {
  margin: 32px 0; padding: 24px 28px;
  background: var(--cream); border-left: 3px solid var(--olive);
  border-radius: 0 6px 6px 0;
  font-family: var(--serif); font-size: clamp(18px, 1.6vw, 22px); font-style: italic;
  color: var(--ink);
}
.article-img { margin: 32px 0; border-radius: 8px; overflow: hidden; }
.article-img img { width: 100%; height: auto; }
.article-img figcaption { font-size: 12px; color: var(--ink-soft); padding: 8px 0 0; letter-spacing: 0.06em; }

.article-sidebar { position: sticky; top: 96px; }
.sidebar-cta {
  background: var(--ink); color: var(--cream); border-radius: 8px;
  padding: 28px 24px; display: flex; flex-direction: column; gap: 16px;
}
.sidebar-cta h4 { font-family: var(--serif); font-size: 22px; color: var(--cream); }
.sidebar-cta h4 em { font-style: italic; color: #F5D9A8; }
.sidebar-cta p { font-size: 13.5px; color: rgba(250,246,238,0.72); }
.sidebar-cta .price-hint { font-family: var(--serif); font-size: 28px; color: var(--cream); }
.sidebar-cta .price-hint small { font-family: var(--sans); font-size: 12px; color: rgba(250,246,238,0.6); }
.sidebar-btn {
  display: block; padding: 14px 20px; border-radius: 999px; text-align: center;
  background: var(--cream); color: var(--ink);
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.04em;
  transition: background .2s, transform .2s;
}
.sidebar-btn:hover { background: var(--sand); transform: translateY(-1px); }
.sidebar-related { margin-top: 24px; }
.sidebar-related h4 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; }
.related-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.related-item:last-child { border-bottom: 0; }
.related-item .thumb { width: 60px; height: 60px; border-radius: 4px; overflow: hidden; flex: none; }
.related-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-item h5 { font-size: 14px; line-height: 1.35; text-wrap: balance; }
.related-item h5 a:hover { color: var(--olive-dark); }
.related-item .cat { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--wood-dark); margin-bottom: 4px; }

/* ——— Breadcrumb ——— */
.breadcrumb {
  padding: 12px 0; font-size: 12px; color: var(--ink-soft); display: flex; gap: 6px; align-items: center;
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { opacity: .5; }
