/* Cicho Las — wariant C "Jasna chatka", paleta Krem, akcent Rdza, DM Serif + DM Sans */
:root {
  --bg: #fbf8f1;
  --bg-warm: #f3eddf;
  --bg-ink: #1a1610;
  --card: #ffffff;
  --ink: #1a1610;
  --ink-soft: #5b4d3a;
  --ink-dim: #8a7960;
  --rule: #e5dbc6;
  --moss: #5a6e3a;
  --rust: #a64a2b;
  --rust-soft: #c66a44;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --shadow-card: 0 30px 60px -30px rgba(40, 30, 15, .35);
  --shadow-strong: 0 40px 80px -40px rgba(40, 30, 15, .25);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  font-family: var(--sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: rgba(166, 74, 43, .25); }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 241, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 20px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--sans);
  border-bottom: 1px solid var(--rule);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.nav__brand-name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
}
.nav__links a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: border-color .15s ease;
}
.nav__links a:hover { border-bottom-color: var(--rust); }
.nav__links a.is-active {
  font-weight: 600;
  border-bottom-color: var(--rust);
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__phone {
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: none;
}
.btn-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cta:hover { transform: translateY(-1px); background: #2a221a; }
.btn-nav {
  background: transparent;
  color: var(--ink);
  padding: 9px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, color .15s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-nav:hover { transform: translateY(-1px); background: var(--ink); color: var(--bg); }

/* ===== Shared section bits ===== */
.wrap { max-width: 1280px; margin: 0 auto; }
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
  margin-bottom: 16px;
}
.italic-rust { font-style: italic; color: var(--rust); }
.italic-rust-soft { font-style: italic; color: var(--rust-soft); }

/* ===== Hero (split mosaic) ===== */
.hero {
  background: var(--bg);
  padding: 80px 56px 88px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  margin-bottom: 32px;
  background: var(--card);
}
.hero__badge-pill {
  background: var(--moss);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.hero__badge-text {
  font-size: 13px;
  color: var(--ink-soft);
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 132px);
  line-height: .92;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ink);
  font-weight: 400;
  text-wrap: balance;
}
.hero__lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 32px 0 0;
  max-width: 480px;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .15s ease, background .15s ease;
}
.btn-primary:hover { transform: translateY(-1px); background: #2a221a; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

.hero__stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 32px;
}
.hero__stat-count {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hero__stat-label {
  font-size: 12px;
  color: var(--ink-dim);
  margin-top: 6px;
  letter-spacing: .02em;
}

.hero__media {
  position: relative;
  height: 660px;
}
.hero__img-a, .hero__img-b {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.hero__img-a {
  top: 0;
  left: 40px;
  width: 72%;
  height: 400px;
}
.hero__img-b {
  bottom: 0;
  right: 0;
  width: 64%;
  height: 320px;
}
.hero__img-a img, .hero__img-b img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero__rating {
  position: absolute;
  left: 0;
  bottom: 80px;
  background: var(--card);
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 20px 40px -20px rgba(40, 30, 15, .25);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__rating-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--rust);
}
.hero__rating-score {
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
}
.hero__rating-meta {
  font-size: 11px;
  color: var(--ink-dim);
}
.hero__weather {
  position: absolute;
  right: 16px;
  top: 24px;
  background: var(--rust);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

/* ===== About ===== */
.about {
  background: var(--bg-warm);
  padding: 120px 56px;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__sticky { position: sticky; top: 100px; }
.about__title {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  font-weight: 400;
  text-wrap: balance;
}
.about__quote {
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
  margin: 24px 0 0;
  max-width: 380px;
}
.about__quote cite {
  font-style: normal;
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: .12em;
  text-transform: uppercase;
  display: block;
  margin-top: 8px;
}
.about__body p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.about__facts {
  margin-top: 40px;
  padding-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  border-top: 1px solid var(--rule);
}
.about__fact { padding-top: 16px; }
.about__fact-k {
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: .06em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.about__fact-v {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}

/* ===== Gallery ===== */
.gallery {
  background: var(--bg);
  padding: 112px 56px;
}
.gallery__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  font-weight: 400;
}
.gallery__filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
  font-size: 13px;
  font-family: var(--sans);
  font-weight: 400;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active {
  background: var(--ink);
  color: var(--bg);
  border-color: transparent;
  font-weight: 500;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.tile {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tile--wide { grid-column: span 4; grid-row: span 2; }
.tile--tall { grid-column: span 2; grid-row: span 2; }
.tile--sq   { grid-column: span 2; grid-row: span 1; }
.tile__caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  background: rgba(20, 15, 10, .55);
  color: #fbf8f1;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.gallery__note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-dim);
}

/* Striped placeholder tiles */
.ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ph--big { padding: 28px; font-size: 13px; }
.ph__label { opacity: .85; }
.ph--wood       { background: repeating-linear-gradient(135deg, #e7dccc 0 14px, #dccfb9 14px 28px); color: #5a4632; }
.ph--forest     { background: repeating-linear-gradient(135deg, #2d3a2c 0 14px, #27322a 14px 28px); color: #bcc7b3; }
.ph--light      { background: repeating-linear-gradient(135deg, #efeae0 0 14px, #e6dfd1 14px 28px); color: #7a6a55; }
.ph--terracotta { background: repeating-linear-gradient(135deg, #c87862 0 14px, #bd6c56 14px 28px); color: #fbeee2; }

/* ===== Amenities (dark) ===== */
.amenities {
  background: var(--bg-ink);
  color: var(--bg);
  padding: 120px 56px;
}
.amenities__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 64px;
}
.amenities__title {
  font-family: var(--serif);
  font-size: clamp(50px, 6.5vw, 84px);
  line-height: .98;
  letter-spacing: -0.03em;
  margin: 0;
  font-weight: 400;
}
.amenities__lead {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(251, 248, 241, .65);
  margin: 0;
}
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.amenity {
  background: rgba(251, 248, 241, .04);
  border: 1px solid rgba(251, 248, 241, .08);
  border-radius: 18px;
  padding: 24px;
  transition: background .2s ease, transform .2s ease;
}
.amenity:hover { background: rgba(251, 248, 241, .07); transform: translateY(-2px); }
.amenity__num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(198, 106, 68, .18);
  color: var(--rust-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.amenity__num svg { width: 22px; height: 22px; }
.amenity__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 6px;
}
.amenity__note {
  font-size: 13px;
  color: rgba(251, 248, 241, .6);
  line-height: 1.5;
}

/* ===== Blog teaser + cards (used on main + blog page) ===== */
.blog-teaser { background: var(--bg); padding: 112px 56px; }
.blog-teaser__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.link-arrow {
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  border-bottom: 2px solid var(--rust);
  padding-bottom: 4px;
}
.posts-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.post-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}
.post-card__cover {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.post-card__cover .ph { aspect-ratio: 4 / 3; }
.post-meta {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: var(--ink-dim);
  align-items: center;
  flex-wrap: wrap;
}
.post-meta__kicker {
  background: var(--bg-warm);
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--rust);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 10px;
}
.post-card__title {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.15;
  margin: 0;
  font-weight: 400;
  color: var(--ink);
  text-wrap: balance;
  letter-spacing: -0.01em;
}
.post-card__excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.post-card__cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.post-card:hover .post-card__title { color: var(--rust); }

/* ===== Contact ===== */
.contact {
  background: var(--bg-warm);
  padding: 112px 56px;
}
.contact__card {
  background: var(--card);
  border-radius: 28px;
  padding: 56px;
  box-shadow: var(--shadow-strong);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
}
.contact__title {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: .98;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  font-weight: 400;
  text-wrap: balance;
}
.contact__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 20px 0 32px;
  max-width: 440px;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-warm);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  transition: background .15s ease;
}
.contact__row:hover { background: #ece4cf; }
.contact__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact__icon--rust { background: var(--rust); }
.contact__icon--moss { background: var(--moss); }
.contact__icon--ink  { background: var(--bg-ink); }
.contact__row-alias {
  display: inline-block;
  margin-left: 6px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-dim);
  letter-spacing: 0;
}
.contact__row-k {
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.contact__row-v {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  color: var(--ink);
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.contact__row-v--small { font-size: 21px; word-break: break-all; }

.contact__where {
  background: var(--bg-warm);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact__where-k {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 10px;
}
.contact__where-h {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.contact__where-p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.contact__where-addr {
  display: inline-block;
  margin-top: 6px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rust);
  padding-bottom: 1px;
  transition: color .15s ease, border-color .15s ease;
}
.contact__where-addr:hover { color: var(--rust); border-color: var(--rust-soft); }
.contact__where-addr .contact__row-alias { color: var(--ink-dim); }
.contact__map {
  margin-top: 28px;
  height: 200px;
  border-radius: 14px;
  background:
    repeating-linear-gradient(45deg, var(--rule) 0 1px, transparent 1px 22px),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.contact__map-caption {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-ink);
  color: rgba(251, 248, 241, .7);
  padding: 56px 56px 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer__brand-name {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--bg);
  letter-spacing: -0.01em;
}
.footer__about {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  max-width: 300px;
}
.footer__col-h {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rust-soft);
  margin-bottom: 14px;
}
.footer__col-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}
.footer__col-list a {
  color: inherit;
  text-decoration: none;
}
.footer__col-list a:hover { color: var(--bg); }
.footer__legal {
  border-top: 1px solid rgba(251, 248, 241, .1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(251, 248, 241, .45);
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Blog page specific ===== */
.blog-header {
  background: var(--bg);
  padding: 72px 56px 64px;
  border-bottom: 1px solid var(--rule);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--ink-dim); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb__current { color: var(--ink); }
.blog-header__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.blog-header__title {
  font-family: var(--serif);
  font-size: clamp(64px, 10vw, 124px);
  line-height: .94;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ink);
  font-weight: 400;
  text-wrap: balance;
}
.blog-header__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  padding-bottom: 16px;
}

.filters {
  background: var(--bg);
  padding: 32px 56px 0;
  position: sticky;
  top: 72px;
  z-index: 10;
}
.filters__inner {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

.post-list { background: var(--bg); padding: 64px 56px 112px; }
.featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  margin-top: 56px;
}
.featured__cover {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(40, 30, 15, .3);
  aspect-ratio: 4 / 3;
}
.featured__cover .ph { aspect-ratio: 4 / 3; }
.featured__cover img, .post-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.featured__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--card);
  margin-bottom: 20px;
}
.featured__badge-pill {
  background: var(--rust);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.featured__badge-text {
  font-size: 12px;
  color: var(--ink-soft);
}
.featured__title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  font-weight: 400;
  text-wrap: balance;
}
.featured__excerpt {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 24px 0 32px;
}
.featured__cta {
  background: var(--ink);
  color: var(--bg);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.post-list__divider {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post-list__divider-label {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
}
.post-list__divider-rule {
  flex: 1;
  height: 1px;
  background: var(--rule);
  margin-left: 24px;
}
.post-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-grid .post-card {
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--rule);
  transition: transform .2s ease, box-shadow .2s ease;
}
.post-grid .post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(40, 30, 15, .2);
}
.post-grid .post-card__cover { border-radius: 14px; }

/* ===== Single blog post page (long-form) ===== */
.post-page { background: var(--bg); padding: 24px 56px 88px; }
.post-page__head { max-width: 760px; margin: 0 auto 32px; }
.post-page__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.post-page__meta-kicker {
  background: var(--bg-warm);
  color: var(--rust);
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: .14em;
}
.post-page__title {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--ink);
}
.post-page__title .italic-rust { font-style: italic; color: var(--rust); }
.post-page__lead {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.post-page__cover {
  max-width: 1080px;
  margin: 0 auto 48px;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.post-page__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-page__cover-caption {
  max-width: 1080px;
  margin: -36px auto 48px;
  padding: 0 16px;
  font-size: 13px;
  color: var(--ink-dim);
  text-align: right;
}
.post-page__cover-caption a { color: var(--ink-soft); text-decoration: underline; text-decoration-color: var(--rule); text-underline-offset: 3px; }
.post-page__body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
}
.post-page__body > * + * { margin-top: 1.1em; }
.post-page__body h2 {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.15;
  margin-top: 56px;
  margin-bottom: 8px;
  color: var(--ink);
}
.post-page__body h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 4px;
  color: var(--ink);
  letter-spacing: -.005em;
}
.post-page__body p { margin: 0; }
.post-page__body ul, .post-page__body ol { padding-left: 22px; }
.post-page__body li + li { margin-top: 6px; }
.post-page__body a {
  color: var(--rust);
  text-decoration: underline;
  text-decoration-color: rgba(166, 74, 43, .35);
  text-underline-offset: 3px;
}
.post-page__body a:hover { text-decoration-color: var(--rust); }
.post-page__body blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--rust);
  background: var(--bg-warm);
  border-radius: 0 14px 14px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
}
.post-page__figure {
  margin: 40px -64px;
  border-radius: 16px;
  overflow: hidden;
}
.post-page__figure img { width: 100%; height: auto; display: block; }
.post-page__figure figcaption {
  margin-top: 10px;
  padding: 0 6px;
  font-size: 13px;
  color: var(--ink-dim);
  text-align: center;
}
.post-page__figure figcaption a { color: var(--ink-soft); }
.post-page__cta {
  max-width: 720px;
  margin: 64px auto 0;
  padding: 32px;
  border-radius: 18px;
  background: var(--bg-warm);
  border: 1px solid var(--rule);
}
.post-page__cta h3 {
  font-family: var(--serif);
  font-size: 26px;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.post-page__cta p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}
.post-page__related { max-width: 1080px; margin: 88px auto 0; padding: 56px 0 0; border-top: 1px solid var(--rule); }
.post-page__related-h {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--ink);
}

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .hero__grid, .about__grid, .amenities__head, .contact__card, .blog-header__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__sticky { position: static; }
  .hero__media { height: 520px; }
  .amenities__grid { grid-template-columns: repeat(2, 1fr); }
  .posts-3, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .featured { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .tile--wide { grid-column: span 2; grid-row: span 2; }
  .tile--tall { grid-column: span 2; grid-row: span 2; }
  .tile--sq   { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 720px) {
  .nav { padding: 16px 20px; flex-wrap: wrap; gap: 12px; }
  .nav__links { order: 3; width: 100%; gap: 16px; overflow-x: auto; padding-bottom: 4px; }
  .nav__phone { display: none; }
  .btn-nav { padding: 8px 12px; font-size: 12px; }
  .hero, .about, .gallery, .amenities, .blog-teaser, .contact, .blog-header { padding-left: 20px; padding-right: 20px; }
  .filters { padding: 24px 20px 0; top: 64px; }
  .hero { padding-top: 48px; padding-bottom: 56px; }
  .hero__media { height: 420px; }
  .hero__img-a { left: 0; width: 80%; height: 280px; }
  .hero__img-b { width: 70%; height: 220px; }
  .hero__rating { bottom: 40px; padding: 10px 14px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .about, .gallery, .amenities, .blog-teaser, .contact { padding-top: 72px; padding-bottom: 72px; }
  .amenities__grid { grid-template-columns: 1fr; }
  .posts-3, .post-grid { grid-template-columns: 1fr; }
  .footer { padding: 40px 20px 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .contact__card { padding: 28px; }
  .contact__row-v { font-size: 24px; }
  .contact__row-v--small { font-size: 17px; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .tile--wide, .tile--tall { grid-column: span 1; grid-row: span 2; }
  .post-page { padding: 16px 20px 64px; }
  .post-page__cover { border-radius: 14px; }
  .post-page__figure { margin: 32px 0; }
  .post-page__cta { padding: 24px; }
}
