@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ============================
   DESIGN TOKENS
   ============================ */
:root {
  --color-bg: #F5F2EE;
  --color-surface: #FFFFFF;
  --color-border: #E0DAD2;
  --color-text: #1A1714;
  --color-text-muted: #7A7368;
  --color-accent: #2C4A3E;
  --color-accent-light: #4A7A68;
  --color-warm: #C8A97A;
  --color-warm-light: #EDE4D6;
  --color-tag-bg: #2C4A3E;
  --color-tag-text: #F5F2EE;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(26,23,20,0.08);
  --shadow-md: 0 4px 16px rgba(26,23,20,0.10);
  --shadow-lg: 0 12px 40px rgba(26,23,20,0.12);

  --max-w: 1280px;
  --header-h: 72px;
}

/* ============================
   RESET
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-text);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
p { color: var(--color-text); line-height: 1.7; }

.text-muted { color: var(--color-text-muted); }
.text-accent { color: var(--color-accent); }
.text-warm { color: var(--color-warm); }

/* ============================
   LAYOUT HELPERS
   ============================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 120px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--color-accent);
  color: #F5F2EE;
}
.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  background: transparent;
}
.btn-outline:hover {
  background: var(--color-accent);
  color: #F5F2EE;
}
.btn-warm {
  background: var(--color-warm);
  color: var(--color-text);
}
.btn-warm:hover {
  background: #b8945e;
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--color-accent);
  padding: 8px 0;
  border-radius: 0;
  border-bottom: 1px solid var(--color-accent);
  text-transform: none;
  letter-spacing: 0;
}
.btn-ghost:hover { opacity: 0.7; }

/* ============================
   TAGS / LABELS
   ============================ */
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-tag-bg);
  color: var(--color-tag-text);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}
.tag-warm {
  background: var(--color-warm);
  color: var(--color-text);
}
.tag-outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

/* ============================
   HEADER / NAV
   ============================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(245,242,238,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.02em;
}
.logo span { color: var(--color-accent); }

.nav-main { display: flex; align-items: center; gap: 2px; }
.nav-main a {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-main a:hover, .nav-main a.active {
  color: var(--color-text);
  background: var(--color-warm-light);
}

.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '▾';
  font-size: 0.65rem;
  margin-left: 4px;
  opacity: 0.6;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  border-radius: 0;
  background: none;
}
.dropdown-menu a:hover {
  color: var(--color-text);
  background: var(--color-warm-light);
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-search {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--color-warm-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text);
  transition: background 0.2s;
}
.btn-search:hover { background: var(--color-warm); }
.btn-search svg { width: 16px; height: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--color-text);
  transition: all 0.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 */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 24px;
  z-index: 99;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ============================
   HERO
   ============================ */
.hero {
  padding-top: var(--header-h);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 40px;
  max-width: 680px;
  margin-left: auto;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--color-warm);
}
.hero-eyebrow span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-warm);
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em {
  font-style: italic;
  color: var(--color-accent);
}
.hero-lead {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 440px;
}
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--color-text);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-top: 4px;
}
.hero-visual {
  position: relative;
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(245,242,238,0.92);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  min-width: 180px;
}
.hero-visual-badge .badge-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.hero-visual-badge .badge-val {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-accent);
  line-height: 1;
}

/* ============================
   TICKER / MARQUEE
   ============================ */
.ticker {
  background: var(--color-accent);
  color: #F5F2EE;
  padding: 10px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
}
.ticker-item::after {
  content: '●';
  font-size: 0.4rem;
  opacity: 0.4;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================
   SECTION HEADERS
   ============================ */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.section-header-left {}
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.section-label-line {
  width: 28px; height: 1px;
  background: var(--color-warm);
}
.section-label span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-warm);
}

/* ============================
   CARDS
   ============================ */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 24px; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.card-date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
.card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.card:hover .card-title { color: var(--color-accent); }
.card-excerpt {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}
.card-read-time {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
.card-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-warm-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent);
  transition: background 0.2s;
}
.card:hover .card-arrow {
  background: var(--color-accent);
  color: #fff;
}

/* Featured card */
.card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-featured .card-img {
  aspect-ratio: unset;
  min-height: 320px;
}
.card-featured .card-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-featured .card-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.card-featured .card-excerpt { font-size: 0.95rem; }

/* Horizontal card */
.card-horizontal {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card-horizontal:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.card-horizontal .card-img {
  width: 100px;
  height: 80px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  aspect-ratio: unset;
}
.card-horizontal .card-body { padding: 0; }
.card-horizontal .card-title { font-size: 0.95rem; margin-bottom: 6px; }

/* ============================
   CATEGORY PILLS
   ============================ */
.categories-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cat-pill {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-muted);
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.cat-pill:hover, .cat-pill.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* ============================
   FEATURE STRIP
   ============================ */
.feature-strip {
  background: var(--color-accent);
  color: #F5F2EE;
  padding: 60px 0;
}
.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.15);
}
.feature-strip-item {
  background: var(--color-accent);
  padding: 32px 28px;
  text-align: center;
}
.feature-strip-item .icon {
  width: 44px; height: 44px;
  margin: 0 auto 16px;
  background: rgba(200, 169, 122, 0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.feature-strip-item .icon svg { width: 20px; height: 20px; fill: var(--color-warm); }
.feature-strip-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--color-warm);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.feature-strip-label {
  font-size: 0.8rem;
  opacity: 0.75;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================
   EDITORIAL BLOCK
   ============================ */
.editorial {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}
.editorial-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.editorial-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.editorial-img:hover img { transform: scale(1.03); }
.editorial-content {}
.editorial-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}
.editorial-quote {
  border-left: 3px solid var(--color-warm);
  padding-left: 24px;
  margin: 32px 0;
}
.editorial-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.4;
}
.editorial-quote cite {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 8px;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================
   PHOTO GRID MOSAIC
   ============================ */
.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.mosaic-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
}
.mosaic-item:first-child {
  grid-row: span 2;
}
.mosaic-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.mosaic-item:hover img { transform: scale(1.05); }
.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,23,20,0.55) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.mosaic-item:hover .mosaic-overlay { opacity: 1; }
.mosaic-overlay span {
  font-size: 0.8rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================
   NEWSLETTER BANNER
   ============================ */
.newsletter-banner {
  background: var(--color-warm-light);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  border: 1px solid var(--color-border);
}
.newsletter-banner h2 { margin-bottom: 12px; }
.newsletter-banner p { color: var(--color-text-muted); }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid var(--color-border);
  border-right: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--color-accent); }
.newsletter-form input::placeholder { color: var(--color-text-muted); }
.newsletter-form .btn {
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
}
.newsletter-privacy {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 12px;
}
.newsletter-privacy a { text-decoration: underline; }

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: var(--color-text);
  color: rgba(245,242,238,0.85);
  padding: 72px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245,242,238,0.1);
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: #F5F2EE;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--color-warm); }
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(245,242,238,0.6);
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(245,242,238,0.65);
  margin-bottom: 8px;
}
.footer-contact-item svg { width: 14px; height: 14px; opacity: 0.6; flex-shrink: 0; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.4);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(245,242,238,0.65);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--color-warm); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(245,242,238,0.35);
}
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(245,242,238,0.45);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--color-warm); }

/* ============================
   PAGE HERO (inner pages)
   ============================ */
.page-hero {
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 64px;
  background: var(--color-warm-light);
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero-lead {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 560px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.breadcrumb a, .breadcrumb span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--color-text); }

/* ============================
   ARTICLE PAGE
   ============================ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: flex-start;
}
.article-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  aspect-ratio: 16/9;
}
.article-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.article-header { margin-bottom: 32px; }
.article-header h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
}
.article-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 40px;
}
.article-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-warm-light);
  overflow: hidden;
}
.author-name { font-size: 0.875rem; font-weight: 500; }
.article-date, .article-read { font-size: 0.8rem; color: var(--color-text-muted); }
.article-body h2 {
  font-size: 1.8rem;
  margin: 40px 0 16px;
}
.article-body h3 {
  font-size: 1.35rem;
  margin: 32px 0 12px;
}
.article-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #3A3530;
  margin-bottom: 20px;
}
.article-body ul, .article-body ol {
  margin: 20px 0;
  padding-left: 28px;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #3A3530;
  margin-bottom: 8px;
}
.article-body blockquote {
  border-left: 3px solid var(--color-warm);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--color-warm-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article-body blockquote p {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-text);
  margin: 0;
}
.article-body .article-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 32px 0;
}
.article-body .article-img img {
  width: 100%; height: auto;
}
.article-body .article-img figcaption {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  padding: 8px 0;
  text-align: center;
}

/* Sidebar */
.sidebar-widget {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
}
.sidebar-widget h3 {
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}
.sidebar-news-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}
.sidebar-news-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-news-img {
  width: 64px; height: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.sidebar-news-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-news-title {
  font-size: 0.85rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.sidebar-news-item a:hover .sidebar-news-title { color: var(--color-accent); }
.sidebar-news-date { font-size: 0.72rem; color: var(--color-text-muted); }

/* Tags cloud */
.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tags-cloud a {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  transition: all 0.2s;
}
.tags-cloud a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ============================
   CONTACT PAGE
   ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
}
.contact-form { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(44,74,62,0.1);
}
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { appearance: none; cursor: pointer; }
.form-control::placeholder { color: var(--color-text-muted); opacity: 0.6; }
.contact-info-card {
  background: var(--color-accent);
  color: #F5F2EE;
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info-card h3 {
  color: #F5F2EE;
  margin-bottom: 8px;
}
.contact-info-card p {
  color: rgba(245,242,238,0.7);
  margin-bottom: 32px;
  font-size: 0.9rem;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(200,169,122,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; fill: var(--color-warm); }
.contact-info-text .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245,242,238,0.5);
  margin-bottom: 2px;
}
.contact-info-text .value {
  font-size: 0.9rem;
  color: rgba(245,242,238,0.9);
}

/* ============================
   ABOUT PAGE
   ============================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  text-align: center;
}
.team-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  padding: 36px 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--color-warm);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}
.value-card h4 { font-size: 1.15rem; margin-bottom: 10px; }
.value-card p { font-size: 0.875rem; color: var(--color-text-muted); }

/* ============================
   CATEGORY PAGE HERO
   ============================ */
.cat-hero {
  padding-top: var(--header-h);
  height: 420px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.cat-hero-bg {
  position: absolute; inset: 0;
}
.cat-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.cat-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26,23,20,0.7) 100%);
}
.cat-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 48px;
  width: 100%;
}
.cat-hero-content h1 { color: #F5F2EE; }
.cat-hero-content p { color: rgba(245,242,238,0.8); font-size: 1.05rem; }

/* ============================
   SEARCH OVERLAY
   ============================ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,23,20,0.85);
  z-index: 500;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-box {
  width: 100%;
  max-width: 640px;
  padding: 0 24px;
}
.search-input-wrap {
  display: flex;
  align-items: center;
  background: var(--color-surface);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 24px;
  border: 2px solid var(--color-accent);
}
.search-input-wrap input {
  flex: 1;
  border: none;
  background: none;
  font-size: 1.1rem;
  color: var(--color-text);
  outline: none;
}
.search-input-wrap input::placeholder { color: var(--color-text-muted); }
.search-close {
  position: absolute;
  top: 32px; right: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(245,242,238,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #F5F2EE;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.2s;
}
.search-close:hover { background: rgba(245,242,238,0.2); }

/* ============================
   COOKIE BANNER
   ============================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 400;
  background: var(--color-text);
  color: #F5F2EE;
  border-radius: var(--radius-md);
  padding: 20px 28px;
  max-width: 640px;
  width: calc(100% - 48px);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { font-size: 0.875rem; color: rgba(245,242,238,0.8); flex: 1; min-width: 200px; }
.cookie-text a { color: var(--color-warm); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-banner.hidden { display: none; }

/* ============================
   UTILITY
   ============================ */
.divider {
  height: 1px;
  background: var(--color-border);
  margin: 48px 0;
}
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { height: 480px; }
  .hero-content { padding: 60px 24px; max-width: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .editorial { grid-template-columns: 1fr; }
  .editorial-img { aspect-ratio: 16/9; }
  .article-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .card-featured { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-banner { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  .nav-main { display: none; }
  .header-actions .btn { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .section-lg { padding: 80px 0; }
  .hero-stats { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .feature-strip-grid { grid-template-columns: 1fr 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mosaic-item:first-child { grid-row: span 1; }
  .newsletter-banner { padding: 32px 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-radius: var(--radius-pill); border-right: 1.5px solid var(--color-border); margin-bottom: 8px; }
  .newsletter-form .btn { border-radius: var(--radius-pill); width: 100%; justify-content: center; }
  .hero-content { padding: 40px 24px; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; }
  .feature-strip-grid { grid-template-columns: 1fr; }
}
