@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Mulish:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background-color: #F9F6F1;
  color: #2A1A0E;
  font-family: 'Mulish', 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { color: #C26850; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: inherit; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: #2A1A0E;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 500; }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 500; }
h5 { font-size: 1.1rem; font-weight: 600; }
h6 { font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
p { margin-bottom: 1.2rem; color: #2A1A0E; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }
em { font-style: italic; }
blockquote {
  border-left: 3px solid #C26850;
  padding: 1.2rem 2rem;
  margin: 2rem 0;
  background: rgba(194, 104, 80, 0.04);
}
blockquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #2A1A0E;
  margin: 0;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   HORIZONTAL RULE / DIVIDERS
   ============================================= */
hr, .hr {
  border: none;
  border-top: 1px solid #2A1A0E;
  margin: 2.5rem 0;
}
.hr--light { border-top-color: rgba(42,26,14,0.15); }
.hr--accent { border-top-color: #C26850; }
.hr--double {
  border-top: 3px double #2A1A0E;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  background: #F9F6F1;
  border-bottom: 2px solid #2A1A0E;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-top {
  border-bottom: 1px solid rgba(42,26,14,0.18);
  padding: 6px 0;
}
.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top-left {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8A7E72;
}
.header-top-right {
  display: flex;
  gap: 1.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8A7E72;
}
.header-top-right a:hover { color: #C26850; }
.header-main {
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.site-logo__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #2A1A0E;
  letter-spacing: -0.01em;
  line-height: 1;
}
.site-logo__sub {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8A7E72;
  margin-top: 3px;
}
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav ul { display: flex; gap: 0; }
.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #2A1A0E;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: #C26850;
  border-bottom-color: #C26850;
}
.header-search-btn {
  background: none;
  border: 1px solid #2A1A0E;
  padding: 7px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2A1A0E;
  transition: all 0.2s;
}
.header-search-btn:hover { background: #2A1A0E; color: #F9F6F1; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2A1A0E;
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  background: #2A1A0E;
  padding: 20px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0; }
.mobile-nav ul li a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(249,246,241,0.12);
  color: #F9F6F1;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mobile-nav ul li a:hover { color: #C26850; }

/* =============================================
   HERO
   ============================================= */
.hero {
  padding: 0;
  overflow: hidden;
  border-bottom: 2px solid #2A1A0E;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.hero-content {
  padding: 70px 60px 70px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-overline {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #C26850;
  margin-bottom: 1.4rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: #2A1A0E;
  margin-bottom: 1.4rem;
}
.hero-title em { font-style: italic; color: #C26850; }
.hero-desc {
  font-size: 1.05rem;
  color: #8A7E72;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(42,26,14,0.72);
  color: rgba(249,246,241,0.85);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid #2A1A0E;
  color: #2A1A0E;
  background: transparent;
  transition: all 0.22s;
  cursor: pointer;
  text-align: center;
}
.btn:hover { background: #2A1A0E; color: #F9F6F1; }
.btn--primary { background: #2A1A0E; color: #F9F6F1; }
.btn--primary:hover { background: #C26850; border-color: #C26850; }
.btn--accent { background: #C26850; color: #F9F6F1; border-color: #C26850; }
.btn--accent:hover { background: #2A1A0E; border-color: #2A1A0E; }
.btn--ghost { border-color: #8A7E72; color: #8A7E72; }
.btn--ghost:hover { border-color: #2A1A0E; color: #2A1A0E; background: transparent; }
.btn--sm { padding: 8px 18px; font-size: 0.72rem; }
.btn--lg { padding: 15px 36px; font-size: 0.85rem; }
.btn--full { width: 100%; display: block; }

/* =============================================
   SECTION SPACING
   ============================================= */
.section { padding: 72px 0; }
.section--lg { padding: 96px 0; }
.section--sm { padding: 48px 0; }
.section--dark { background: #2A1A0E; color: #F9F6F1; }
.section--dark h1,.section--dark h2,.section--dark h3,.section--dark h4,.section--dark p { color: #F9F6F1; }
.section--dark hr,.section--dark .hr { border-top-color: rgba(249,246,241,0.2); }
.section--warm { background: rgba(194,104,80,0.07); }
.section--gray { background: #F2EDE7; }

/* =============================================
   SECTION LABELS / OVERLINES
   ============================================= */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.8rem;
}
.section-label__line {
  flex: 1;
  height: 1px;
  background: #2A1A0E;
}
.section-label__text {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #8A7E72;
  white-space: nowrap;
}
.section-title { margin-bottom: 0.6rem; }
.section-subtitle {
  font-size: 1.05rem;
  color: #8A7E72;
  max-width: 620px;
  margin-bottom: 2.5rem;
}

/* =============================================
   ARTICLE CARDS
   ============================================= */
.card {
  border-top: 2px solid #2A1A0E;
  background: #F9F6F1;
  transition: border-color 0.2s;
}
.card:hover { border-top-color: #C26850; }
.card-image {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-image img { transform: scale(1.04); }
.card-body { padding: 20px 0 24px; }
.card-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.card-category {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #C26850;
}
.card-date {
  font-size: 0.68rem;
  color: #8A7E72;
  font-weight: 500;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #2A1A0E;
}
.card-title a:hover { color: #C26850; }
.card-excerpt {
  font-size: 0.88rem;
  color: #8A7E72;
  line-height: 1.65;
  margin-bottom: 14px;
}
.card-readmore {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2A1A0E;
  border-bottom: 1px solid #2A1A0E;
  display: inline-block;
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.card-readmore:hover { color: #C26850; border-color: #C26850; }

/* Featured card */
.card--featured { border-top-width: 3px; }
.card--featured .card-title { font-size: 1.7rem; }
.card--featured .card-image { aspect-ratio: 4/3; }

/* Horizontal card */
.card--horizontal {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  border-top: none;
  border-left: 3px solid #2A1A0E;
}
.card--horizontal:hover { border-left-color: #C26850; }
.card--horizontal .card-image { aspect-ratio: unset; height: 100%; min-height: 140px; }
.card--horizontal .card-body { padding: 16px 20px; }

/* =============================================
   ARTICLE GRID LAYOUTS
   ============================================= */
.grid-asymmetric {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.grid-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.grid-2col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; }

/* =============================================
   FEATURED STRIP
   ============================================= */
.featured-strip {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 0;
  border: 2px solid #2A1A0E;
}
.featured-strip__main {
  border-right: 2px solid #2A1A0E;
  padding: 0;
}
.featured-strip__main .card-image { aspect-ratio: unset; height: 320px; }
.featured-strip__main .card-body { padding: 24px; }
.featured-strip__side {
  display: flex;
  flex-direction: column;
  border-right: 2px solid #2A1A0E;
}
.featured-strip__side:last-child { border-right: none; }
.featured-strip__side .card {
  border: none;
  border-bottom: 1px solid rgba(42,26,14,0.2);
  flex: 1;
}
.featured-strip__side .card:hover { border-top: none; border-bottom-color: #C26850; }
.featured-strip__side .card:last-child { border-bottom: none; }
.featured-strip__side .card-image { aspect-ratio: 3/2; }
.featured-strip__side .card-body { padding: 16px; }
.featured-strip__side .card-title { font-size: 1rem; }

/* =============================================
   TICKER / CATEGORY BAR
   ============================================= */
.cat-bar {
  background: #2A1A0E;
  padding: 0;
  overflow: hidden;
  border-bottom: 2px solid #2A1A0E;
}
.cat-bar-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.cat-bar__label {
  background: #C26850;
  color: #F9F6F1;
  padding: 10px 20px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  white-space: nowrap;
  flex-shrink: 0;
}
.cat-bar__items {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-bar__items::-webkit-scrollbar { display: none; }
.cat-bar__items a {
  display: block;
  padding: 10px 20px;
  color: rgba(249,246,241,0.7);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  border-right: 1px solid rgba(249,246,241,0.12);
  transition: color 0.2s, background 0.2s;
}
.cat-bar__items a:hover { color: #F9F6F1; background: rgba(194,104,80,0.25); }

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar { display: flex; flex-direction: column; gap: 40px; }
.widget { border-top: 2px solid #2A1A0E; padding-top: 20px; }
.widget-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2A1A0E;
  margin-bottom: 16px;
}
.widget-list { display: flex; flex-direction: column; gap: 0; }
.widget-list li {
  border-bottom: 1px solid rgba(42,26,14,0.12);
  padding: 10px 0;
}
.widget-list li:last-child { border-bottom: none; }
.widget-list li a {
  font-size: 0.88rem;
  color: #2A1A0E;
  line-height: 1.4;
  font-weight: 500;
}
.widget-list li a:hover { color: #C26850; }
.widget-list li .meta {
  font-size: 0.65rem;
  color: #8A7E72;
  margin-top: 3px;
  font-weight: 500;
}
.widget-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.widget-tags a {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border: 1px solid rgba(42,26,14,0.3);
  color: #8A7E72;
  transition: all 0.2s;
}
.widget-tags a:hover { background: #2A1A0E; color: #F9F6F1; border-color: #2A1A0E; }

/* =============================================
   STATS ROW
   ============================================= */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid #2A1A0E;
}
.stat-item {
  padding: 32px 28px;
  border-right: 1px solid rgba(42,26,14,0.2);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #C26850;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8A7E72;
}

/* =============================================
   ARTICLE PAGE
   ============================================= */
.article-header {
  padding: 60px 0 40px;
  border-bottom: 2px solid #2A1A0E;
}
.article-kicker {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #C26850;
  margin-bottom: 1rem;
}
.article-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.article-standfirst {
  font-size: 1.15rem;
  color: #8A7E72;
  font-weight: 400;
  line-height: 1.7;
  max-width: 720px;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.article-byline {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.78rem;
  color: #8A7E72;
  font-weight: 600;
}
.article-byline__name { color: #2A1A0E; }
.article-byline__divider { color: rgba(42,26,14,0.25); }
.article-hero-image {
  margin: 40px 0 0;
  position: relative;
  overflow: hidden;
}
.article-hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.article-hero-image figcaption {
  padding: 10px 0;
  font-size: 0.72rem;
  color: #8A7E72;
  font-style: italic;
  border-bottom: 1px solid rgba(42,26,14,0.15);
}
.article-body {
  padding: 48px 0;
}
.article-content {
  font-size: 1.02rem;
  line-height: 1.82;
  color: #2A1A0E;
}
.article-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(42,26,14,0.15);
}
.article-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}
.article-content ul, .article-content ol {
  margin: 1.2rem 0;
  padding-left: 1.5rem;
}
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 0.5rem; line-height: 1.7; }
.article-content figure { margin: 2.5rem 0; }
.article-content figure img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}
.article-content figure figcaption {
  padding: 8px 0;
  font-size: 0.72rem;
  color: #8A7E72;
  font-style: italic;
  border-bottom: 1px solid rgba(42,26,14,0.15);
}
.article-content .pullquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: #2A1A0E;
  padding: 2rem 0;
  margin: 2.5rem 0;
  border-top: 3px solid #2A1A0E;
  border-bottom: 1px solid rgba(42,26,14,0.2);
}
.article-tags { margin-top: 2.5rem; padding-top: 2rem; border-top: 2px solid #2A1A0E; }
.article-tags__label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8A7E72;
  margin-bottom: 10px;
}
.article-tags__list { display: flex; flex-wrap: wrap; gap: 8px; }
.article-tags__list a {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 5px 12px;
  border: 1px solid rgba(42,26,14,0.3);
  color: #2A1A0E;
  transition: all 0.2s;
}
.article-tags__list a:hover { background: #2A1A0E; color: #F9F6F1; }

/* =============================================
   NEWSLETTER / CTA BAND
   ============================================= */
.cta-band {
  background: #2A1A0E;
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { color: #F9F6F1; margin-bottom: 1rem; }
.cta-band p { color: rgba(249,246,241,0.7); max-width: 540px; margin: 0 auto 1.8rem; font-size: 1rem; }
.newsletter-form { display: flex; gap: 0; max-width: 460px; margin: 0 auto; }
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  background: rgba(249,246,241,0.1);
  border: 1px solid rgba(249,246,241,0.25);
  border-right: none;
  color: #F9F6F1;
  font-size: 0.88rem;
  font-family: 'Mulish', sans-serif;
  outline: none;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(249,246,241,0.4); }
.newsletter-form input[type="email"]:focus { border-color: #C26850; }
.newsletter-form button {
  padding: 14px 24px;
  background: #C26850;
  border: 1px solid #C26850;
  color: #F9F6F1;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: #a85640; border-color: #a85640; }
.newsletter-success {
  display: none;
  color: #C26850;
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: 10px;
}

/* =============================================
   FORMS
   ============================================= */
.form-group { margin-bottom: 1.4rem; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2A1A0E;
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid rgba(42,26,14,0.3);
  color: #2A1A0E;
  font-size: 0.92rem;
  font-family: 'Mulish', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.form-control:focus { border-color: #C26850; }
.form-control::placeholder { color: #8A7E72; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  padding: 16px 20px;
  background: rgba(194,104,80,0.1);
  border-left: 3px solid #C26850;
  color: #2A1A0E;
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: 1rem;
}
.form-success.visible { display: block; }

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 12px 0;
  font-size: 0.72rem;
  color: #8A7E72;
  border-bottom: 1px solid rgba(42,26,14,0.12);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.breadcrumb a { color: #8A7E72; }
.breadcrumb a:hover { color: #C26850; }
.breadcrumb__sep { color: rgba(42,26,14,0.3); }
.breadcrumb__current { color: #2A1A0E; }

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-top: 50px;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(42,26,14,0.25);
  border-right: none;
  font-size: 0.82rem;
  font-weight: 700;
  color: #2A1A0E;
  transition: all 0.2s;
}
.pagination a:last-child, .pagination span:last-child { border-right: 1px solid rgba(42,26,14,0.25); }
.pagination a:hover, .pagination span.active {
  background: #2A1A0E;
  color: #F9F6F1;
}

/* =============================================
   SEARCH BOX
   ============================================= */
.search-bar {
  display: flex;
  gap: 0;
  border: 2px solid #2A1A0E;
  max-width: 600px;
}
.search-bar input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  background: #F9F6F1;
  font-size: 0.95rem;
  font-family: 'Mulish', sans-serif;
  color: #2A1A0E;
  outline: none;
}
.search-bar input::placeholder { color: #8A7E72; }
.search-bar button {
  padding: 14px 24px;
  background: #2A1A0E;
  border: none;
  color: #F9F6F1;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.2s;
}
.search-bar button:hover { background: #C26850; }

/* =============================================
   AUTHOR BOX
   ============================================= */
.author-card {
  border: 2px solid #2A1A0E;
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 3rem;
}
.author-avatar {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.author-role {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #C26850;
  margin-bottom: 10px;
}
.author-bio { font-size: 0.88rem; color: #8A7E72; line-height: 1.65; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #2A1A0E;
  color: #F9F6F1;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(249,246,241,0.12);
}
.footer-brand__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #F9F6F1;
  margin-bottom: 6px;
}
.footer-brand__tagline {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #C26850;
  margin-bottom: 16px;
}
.footer-brand__desc {
  font-size: 0.85rem;
  color: rgba(249,246,241,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-brand__address {
  font-size: 0.78rem;
  color: rgba(249,246,241,0.5);
  line-height: 1.7;
}
.footer-col h4 {
  font-family: 'Mulish', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(249,246,241,0.45);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(249,246,241,0.1);
  color: rgba(249,246,241,0.45);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.83rem;
  color: rgba(249,246,241,0.65);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #C26850; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright {
  font-size: 0.72rem;
  color: rgba(249,246,241,0.4);
  font-weight: 500;
}
.footer-legal {
  display: flex;
  gap: 20px;
  font-size: 0.72rem;
  font-weight: 600;
}
.footer-legal a {
  color: rgba(249,246,241,0.5);
  transition: color 0.2s;
}
.footer-legal a:hover { color: #C26850; }

/* =============================================
   CATEGORY PAGE HEADER
   ============================================= */
.cat-header {
  padding: 48px 0;
  border-bottom: 2px solid #2A1A0E;
}
.cat-header__kicker {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #C26850;
  margin-bottom: 10px;
}
.cat-header__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.cat-header__desc { font-size: 1rem; color: #8A7E72; max-width: 600px; }

/* =============================================
   TOPIC OVERVIEW CARDS
   ============================================= */
.topic-card {
  border: 2px solid #2A1A0E;
  padding: 32px;
  transition: border-color 0.2s;
}
.topic-card:hover { border-color: #C26850; }
.topic-card__icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: #C26850;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}
.topic-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.topic-card__desc { font-size: 0.88rem; color: #8A7E72; line-height: 1.65; }

/* =============================================
   INFO TABLE
   ============================================= */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 1.5rem 0;
}
.info-table th, .info-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid rgba(42,26,14,0.15);
}
.info-table th {
  background: #2A1A0E;
  color: #F9F6F1;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.info-table tr:nth-child(even) td { background: rgba(42,26,14,0.04); }
.info-table tr:hover td { background: rgba(194,104,80,0.06); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item h4 {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #C26850;
  margin-bottom: 6px;
}
.contact-item p {
  font-size: 0.95rem;
  color: #2A1A0E;
  margin: 0;
  line-height: 1.6;
}
.contact-item a { color: #2A1A0E; }
.contact-item a:hover { color: #C26850; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-member {
  border-top: 2px solid #2A1A0E;
  padding-top: 20px;
}
.team-member__image { aspect-ratio: 1; overflow: hidden; margin-bottom: 16px; }
.team-member__image img { width: 100%; height: 100%; object-fit: cover; }
.team-member__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.team-member__role {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #C26850;
  margin-bottom: 10px;
}
.team-member__bio { font-size: 0.85rem; color: #8A7E72; line-height: 1.65; }

/* =============================================
   POLICY PAGES
   ============================================= */
.policy-page { padding: 60px 0 80px; }
.policy-page h1 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 0.4rem; }
.policy-date {
  font-size: 0.75rem;
  color: #8A7E72;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #2A1A0E;
}
.policy-body { max-width: 800px; }
.policy-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}
.policy-body p { font-size: 0.95rem; line-height: 1.8; color: #2A1A0E; }
.policy-body ul { list-style: disc; padding-left: 1.5rem; margin: 1rem 0; }
.policy-body ul li { font-size: 0.95rem; margin-bottom: 0.5rem; line-height: 1.7; color: #2A1A0E; }

/* =============================================
   404 PAGE
   ============================================= */
.page-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.page-404__num {
  font-family: 'Playfair Display', serif;
  font-size: 9rem;
  font-weight: 700;
  color: rgba(42,26,14,0.08);
  line-height: 1;
  margin-bottom: 0;
}
.page-404 h1 { margin-top: -1.5rem; margin-bottom: 1rem; }
.page-404 p { color: #8A7E72; max-width: 420px; margin-bottom: 2rem; }

/* =============================================
   UTILITY
   ============================================= */
.text-accent { color: #C26850; }
.text-muted { color: #8A7E72; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 1rem; }
.italic { font-style: italic; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid-4col { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(42,26,14,0.2); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content { padding: 48px 0 40px; }
  .hero-image { height: 340px; }
  .grid-asymmetric { grid-template-columns: 1fr; }
  .grid-3col { grid-template-columns: repeat(2, 1fr); }
  .featured-strip { grid-template-columns: 1fr; }
  .featured-strip__side { flex-direction: row; border-right: none; border-bottom: 2px solid #2A1A0E; }
  .featured-strip__side:last-child { border-bottom: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  .grid-3col { grid-template-columns: 1fr; }
  .grid-2col { grid-template-columns: 1fr; }
  .grid-4col { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .card--horizontal { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"] { border-right: 1px solid rgba(249,246,241,0.25); }
  .header-top-right { display: none; }
  .author-card { flex-direction: column; }
  .featured-strip__side { flex-direction: column; }
  .article-hero-image img { height: 240px; }
}

/* =============================================
   PAGE HEADER (policy & static pages)
   ============================================= */
.page-header {
  padding: 52px 0 40px;
  border-bottom: 2px solid #2A1A0E;
}
.page-header__label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #C26850;
  margin-bottom: 10px;
}
.page-header__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.page-header__desc {
  font-size: 0.8rem;
  color: #8A7E72;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
}

/* Policy content — alias for policy-body */
.policy-content {
  max-width: 800px;
}
.policy-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(42,26,14,0.12);
}
.policy-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
}
.policy-content p { font-size: 0.95rem; line-height: 1.8; color: #2A1A0E; }
.policy-content ul { list-style: disc; padding-left: 1.5rem; margin: 1rem 0; }
.policy-content ul li { font-size: 0.95rem; margin-bottom: 0.5rem; line-height: 1.7; color: #2A1A0E; }
.policy-content a { color: #C26850; }
.policy-content a:hover { text-decoration: underline; }

/* 404 page elements */
.page-404__code {
  font-family: 'Playfair Display', serif;
  font-size: 9rem;
  font-weight: 700;
  color: rgba(42,26,14,0.07);
  line-height: 1;
  display: block;
  margin-bottom: -1rem;
}
.page-404__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.page-404__desc {
  font-size: 1rem;
  color: #8A7E72;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* auto-fix structural */
.footer-col { }
.footer-col h5,.footer-col .footer-heading{font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;margin-bottom:14px;opacity:.65;}
.footer-col ul{padding:0;list-style:none}.footer-col li{margin-bottom:7px}
.footer-brand { }
.footer-brand .logo-text,.footer-brand .site-name{color:#fff}
.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:#1a1a2e;color:#fff;padding:16px 24px;z-index:9999;display:none}
.cookie-banner.visible{display:flex;align-items:center;gap:12px;flex-wrap:wrap}