/* ============================================================
   BLOG — INDEX + ARTICLE PAGES
============================================================ */

/* ── Nav override on blog index (cream bg, no dark hero) ─── */
.blog-index .nav:not(.scrolled) .nav__links a,
.blog-index .nav:not(.scrolled) .nav__phone {
  color: #3C2E24;
}
.blog-index .nav:not(.scrolled) .nav__links a:hover { color: var(--gold); }
.blog-index .nav:not(.scrolled) .nav__mark--light  { display: none; }
.blog-index .nav:not(.scrolled) .nav__mark--dark   { display: block; }
.blog-index .nav:not(.scrolled) .nav__wordmark-name,
.blog-index .nav:not(.scrolled) .nav__wordmark-tag { color: #3C2E24; }
.blog-index .nav:not(.scrolled) .nav__hamburger span { background: #3C2E24; }

@media (max-width: 768px) {
  body { padding-bottom: 60px; }
}

/* ── Blog Hero ───────────────────────────────────────────── */
.blog-hero {
  position: relative;
  height: 52vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.blog-hero__bg {
  position: absolute;
  inset: 0;
}

.blog-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.blog-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,18,10,0.82) 0%, rgba(28,18,10,0.25) 55%, transparent 100%);
}

.blog-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 0 3.5rem;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding-left: max(1.5rem, calc((100% - 1280px) / 2 + 1.5rem));
  padding-right: 1.5rem;
  padding-bottom: 3.5rem;
}

.blog-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.blog-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: #F5EFE4;
  line-height: 1.0;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.blog-hero__sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(245,239,228,0.7);
  max-width: 500px;
  line-height: 1.75;
  font-weight: 300;
  margin: 0;
}

/* ── Category Filters ────────────────────────────────────── */
.blog-filters {
  background: var(--warm-white);
  border-bottom: 1px solid rgba(184,146,74,0.15);
  position: sticky;
  top: 64px;
  z-index: 50;
}

.blog-filters__inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0;
}

.blog-filters__inner::-webkit-scrollbar { display: none; }

.blog-filter-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.blog-filter-btn:hover {
  color: var(--dark);
}

.blog-filter-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ── Featured Post Label ─────────────────────────────────── */
.blog-featured__label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

/* ── Featured Post ───────────────────────────────────────── */
.blog-featured {
  padding: 4rem 0 3rem;
  background: var(--warm-white);
}

.blog-featured__card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.10);
  background: #fff;
  transition: box-shadow 0.35s;
}

.blog-featured__card:hover {
  box-shadow: 0 16px 64px rgba(0,0,0,0.14);
}

.blog-featured__img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.blog-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.blog-featured__card:hover .blog-featured__img {
  transform: scale(1.04);
}

.blog-featured__body {
  padding: 3rem 3rem 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.blog-featured__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}

.blog-featured__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}

.blog-featured__title a:hover { color: var(--gold); }

.blog-featured__excerpt {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin: 0 0 2rem;
  font-weight: 300;
}

/* ── Article Grid ────────────────────────────────────────── */
.blog-grid-section {
  padding: 3rem 0 5rem;
  background: var(--warm-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card */
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 48px rgba(0,0,0,0.11);
}

/* Filtered out */
.blog-card.is-hidden {
  display: none;
}

.blog-card__img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.blog-card:hover .blog-card__img { transform: scale(1.06); }

.blog-card__body {
  padding: 1.6rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
  margin: 0 0 0.75rem;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}

.blog-card__title a:hover { color: var(--gold); }

.blog-card__excerpt {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  font-weight: 300;
  flex: 1;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(184,146,74,0.12);
  margin-top: auto;
}

/* ── Shared: Tags, Dates, Read Time, Read More ───────────── */
.blog-tag {
  font-family: var(--font-body);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,146,74,0.1);
  padding: 0.22rem 0.6rem;
  border-radius: 2px;
  white-space: nowrap;
}

.blog-date {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

.blog-read-time {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(100,80,60,0.5);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.blog-read-more {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s, letter-spacing 0.2s;
  white-space: nowrap;
}

.blog-read-more:hover {
  color: var(--dark);
  letter-spacing: 0.14em;
}

/* ── Empty State ─────────────────────────────────────────── */
.blog-empty {
  text-align: center;
  padding: 4rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.blog-empty a {
  color: var(--gold);
  text-decoration: underline;
}

/* ── Booking Band ────────────────────────────────────────── */
.blog-book-band {
  padding: 5rem 0;
  background: var(--cream);
  text-align: center;
  border-top: 1px solid rgba(184,146,74,0.15);
}

.blog-book-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--dark);
  margin: 0.4rem 0 0.75rem;
}

.blog-book-band__sub {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* ── Accessibility ───────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   BLOG ARTICLE PAGE
============================================================ */

.blog-article-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem 5rem;
  align-items: start;
}

/* Main article column */
.blog-article {
  min-width: 0;
}

.blog-article__hero {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  aspect-ratio: 16 / 7;
}

.blog-article__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-article__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.blog-article__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 2rem;
}

.blog-article__body p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.95;
  color: #4a3e35;
  margin: 0 0 1.4rem;
  font-weight: 300;
}

.blog-article__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
  margin: 2.75rem 0 0.85rem;
  letter-spacing: -0.005em;
}

.blog-article__body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(184,146,74,0.4);
  transition: color 0.2s, text-decoration-color 0.2s;
}

.blog-article__body a:hover {
  color: var(--dark);
  text-decoration-color: var(--dark);
}

.blog-article__body strong {
  font-weight: 700;
  color: var(--dark);
}

.blog-article__body em {
  font-style: italic;
}

.blog-article__back {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(184,146,74,0.2);
}

.blog-article__back a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-article__back a:hover { color: var(--dark); }

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-sidebar__book {
  background: var(--dark);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  text-align: center;
}

.blog-sidebar__book-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.65rem;
}

.blog-sidebar__book-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: #F5EFE4;
  line-height: 1.25;
  margin: 0 0 0.65rem;
}

.blog-sidebar__book-sub {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(245,239,228,0.55);
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.blog-sidebar__book .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 0.75rem;
}

.blog-sidebar__info {
  background: var(--cream);
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(184,146,74,0.18);
}

.blog-sidebar__info-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  margin: 0 0 0.85rem;
}

.blog-sidebar__info p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 0.5rem;
  font-weight: 300;
}

.blog-sidebar__info a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 400;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-article-wrap { grid-template-columns: 1fr; max-width: 760px; }
  .blog-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .blog-sidebar__book,
  .blog-sidebar__info { flex: 1 1 280px; }
}

@media (max-width: 768px) {
  .blog-hero { min-height: 300px; height: 45vh; }
  .blog-hero__title { font-size: clamp(2.5rem, 9vw, 4rem); }
  .blog-hero__content { padding-bottom: 2.5rem; }

  .blog-filters { top: 56px; }

  .blog-featured { padding: 3rem 0 2rem; }
  .blog-featured__card { grid-template-columns: 1fr; }
  .blog-featured__img-wrap { aspect-ratio: 16 / 9; }
  .blog-featured__body { padding: 2rem 1.75rem; }
  .blog-featured__title { font-size: 1.55rem; }
  .blog-featured__excerpt { font-size: 0.875rem; margin-bottom: 1.5rem; }

  .blog-grid-section { padding: 2rem 0 3.5rem; }
  .blog-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }

  .blog-book-band { padding: 3.5rem 1.5rem; }
  .blog-book-band__title { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  .blog-article-wrap { padding: 4rem 1.25rem; gap: 2.5rem; }
  .blog-sidebar { flex-direction: column; }
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .blog-filter-btn { padding: 0.9rem 1rem; font-size: 0.68rem; }

  .blog-book-band .btn--outline-brown { margin-left: 0 !important; margin-top: 0.75rem; }
}

@media (max-width: 480px) {
  .blog-hero { min-height: 260px; }
  .blog-hero__title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .blog-hero__sub { font-size: 0.85rem; }

  .blog-card__body { padding: 1.25rem 1.25rem 1.5rem; }
  .blog-card__title { font-size: 1.2rem; }

  .blog-article-wrap { padding: 3rem 1rem 3rem; }
  .blog-article__title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .blog-article__body p { font-size: 0.95rem; }
  .blog-article__hero { aspect-ratio: 4 / 3; }
}
