@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #FAFAF8;
  --bg-secondary: #F4EFE6;
  --bg-dark: #161614;
  --text: #1C1C1A;
  --text-muted: #7A7A73;
  --text-light: #A8A8A0;
  --accent: #B89A6A;
  --accent-light: #D4B98A;
  --border: #E6E0D6;
  --white: #FFFFFF;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 80px;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: height 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  height: 68px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

.logo {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text);
  text-transform: uppercase;
}

.logo span {
  color: var(--accent);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown > a::before {
  content: '';
  display: block;
  order: 2;
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  min-width: 180px;
  padding: 0.75rem 0;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.55rem 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.dropdown-menu a:hover {
  color: var(--text);
  background: var(--bg-secondary);
}

.dropdown-menu a::after {
  display: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.5rem;
  border: 1px solid var(--accent);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent) !important;
  transition: background 0.25s, color 0.25s;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--white) !important;
}

.nav-cta::after { display: none !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  padding: 2rem 2rem;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.04em;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,24,0.55) 0%, rgba(26,26,24,0.1) 60%, transparent 100%);
}

.hero-text {
  position: absolute;
  bottom: 12%;
  left: 6%;
  max-width: 540px;
  color: var(--white);
}

.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin-bottom: 1.4rem;
}

.hero-title em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 400px;
  margin-bottom: 2rem;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s;
}

.hero-scroll:hover {
  color: var(--accent-light);
}

.hero-scroll-line {
  display: block;
  width: 40px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s;
}

.hero-scroll:hover .hero-scroll-line {
  width: 60px;
}

/* ─── BTN ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.28s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: #9E8255;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  border: 1px solid var(--text);
  color: var(--text);
}

.btn-outline-dark:hover {
  background: var(--text);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding-left: 0;
  padding-right: 0;
  letter-spacing: 0.14em;
}

.btn-ghost::after {
  content: '→';
  transition: transform 0.2s;
  display: inline-block;
}

.btn-ghost:hover {
  color: var(--accent);
}

.btn-ghost:hover::after {
  transform: translateX(4px);
}

.btn-white {
  background: var(--white);
  color: var(--text);
}

.btn-white:hover {
  background: var(--bg-secondary);
}

/* ─── SECTION UTILITIES ─── */
.section {
  padding: 5rem 4rem;
}

.section-sm {
  padding: 3.5rem 4rem;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--white);
}

.section-cream {
  background: var(--bg-secondary);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.eyebrow-light {
  color: var(--accent-light);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.15;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: 0.01em;
  color: inherit;
}

.section-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
}

.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.text-right { text-align: right; }

.divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 1.5rem 0;
}

.divider-center {
  margin: 1.5rem auto;
}

/* ─── GRID LAYOUTS ─── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.grid-asymm {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 4rem;
  align-items: center;
}

.grid-asymm-rev {
  display: grid;
  grid-template-columns: 1fr 55%;
  gap: 4rem;
  align-items: center;
}

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.card-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img {
  transform: scale(1.03);
}

.card-img-wrap {
  overflow: hidden;
  aspect-ratio: 3/2;
}

.card-body {
  padding: 1.75rem;
}

.card-category {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.card-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.card-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

/* ─── ARTICLE HORIZONTAL CARD ─── */
.article-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.article-row:first-child {
  border-top: 1px solid var(--border);
}

.article-row-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.article-row-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}

/* ─── QUOTE / PULL QUOTE ─── */
.pull-quote {
  border-left: 3px solid var(--accent);
  padding: 1.5rem 2.5rem;
  background: var(--bg-secondary);
  margin: 2.5rem 0;
}

.pull-quote p {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
}

.pull-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-style: normal;
}

/* ─── FEATURE STRIP ─── */
.feature-strip {
  display: flex;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-item {
  flex: 1;
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background 0.25s;
}

.feature-item:last-child { border-right: none; }

.feature-item:hover {
  background: var(--bg-secondary);
}

.feature-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.2;
}

.feature-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.feature-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── BANNER DARK ─── */
.banner-dark {
  background: var(--bg-dark);
  color: var(--white);
  padding: 5rem 4rem;
  text-align: center;
}

.banner-dark .section-title {
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.banner-dark .section-lead {
  color: rgba(255,255,255,0.6);
  margin: 0 auto 2.5rem;
}

/* ─── SPLIT SECTION ─── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.split-img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.split-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.split-section.dark .split-content {
  background: var(--bg-dark);
  color: var(--white);
}

.split-section.cream .split-content {
  background: var(--bg-secondary);
}

/* ─── STATS ROW ─── */
.stats-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
}

.stat-item {
  flex: 1;
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--accent);
  display: block;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* ─── MOSAIC / EDITORIAL GRID ─── */
.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.mosaic-main {
  grid-row: span 2;
}

.mosaic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic-main .mosaic-img {
  min-height: 500px;
}

.mosaic-side .mosaic-img {
  height: 220px;
}

/* ─── TAXONOMY TAG ─── */
.tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.2s;
}

.tag:hover, .tag.active {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb-sep {
  color: var(--border);
}

/* ─── PAGE HERO ─── */
.page-hero {
  padding-top: 120px;
  padding-bottom: 4rem;
  padding-left: 4rem;
  padding-right: 4rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.page-hero-lead {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ─── ARTICLE FULL ─── */
.article-header {
  padding-top: 120px;
  padding-bottom: 3rem;
  padding-left: 4rem;
  padding-right: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.article-full-img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  margin-bottom: 3rem;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 4rem 5rem;
}

.article-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.article-body h2 {
  font-size: 1.75rem;
  margin: 3rem 0 1rem;
}

.article-body h3 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.article-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.article-body ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── CONTACT FORM ─── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-control {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}

.form-control:focus {
  border-color: var(--accent);
}

.form-control::placeholder {
  color: var(--text-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.success-message {
  display: none;
  background: #f0f7f0;
  border: 1px solid #b5d6b5;
  padding: 1.25rem 1.5rem;
  color: #2d6a2d;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.success-message.visible {
  display: block;
}

/* ─── NEWSLETTER ─── */
.newsletter {
  background: var(--bg-dark);
  padding: 4.5rem 4rem;
  text-align: center;
}

.newsletter-title {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.newsletter-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  padding: 0.85rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--white);
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.35);
}

.newsletter-btn {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--white);
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}

.newsletter-btn:hover {
  background: #9E8255;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 4rem 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  color: var(--white);
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: var(--accent-light);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 0.65rem;
}

.footer-col ul a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  max-width: 1280px;
  margin: 2.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.footer-policy-links {
  display: flex;
  gap: 1.5rem;
}

.footer-policy-links a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.footer-policy-links a:hover {
  color: rgba(255,255,255,0.6);
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(22,22,20,0.97);
  color: rgba(255,255,255,0.8);
  z-index: 9999;
  padding: 1.25rem 4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
  backdrop-filter: blur(8px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-text {
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 700px;
}

.cookie-text a {
  color: var(--accent-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-accept:hover {
  background: #9E8255;
}

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.6rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-decline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

/* ─── POLICY PAGES ─── */
.policy-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 4rem 6rem;
}

.policy-body h2 {
  font-size: 1.5rem;
  margin: 3rem 0 0.75rem;
  font-weight: 400;
}

.policy-body h3 {
  font-size: 1.15rem;
  margin: 2rem 0 0.5rem;
  font-weight: 500;
  font-family: var(--font-body);
}

.policy-body p, .policy-body li {
  font-size: 0.95rem;
  line-height: 1.82;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.policy-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .section, .section-sm { padding-left: 2.5rem; padding-right: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .site-header { padding: 0 1.5rem; }
  .main-nav { display: none; }
  .burger { display: flex; }

  .section { padding: 3.5rem 1.5rem; }
  .section-sm { padding: 2.5rem 1.5rem; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-asymm, .grid-asymm-rev { grid-template-columns: 1fr; gap: 2rem; }
  .split-section { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic-main { grid-row: auto; }

  .hero-text { left: 5%; right: 5%; max-width: 100%; }
  .hero-title { font-size: 2.4rem; }

  .article-row { grid-template-columns: 1fr; }
  .article-row-img { height: 220px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer { padding: 3.5rem 1.5rem 2rem; }

  .cookie-banner { padding: 1.25rem 1.5rem; flex-direction: column; align-items: flex-start; }

  .page-hero { padding-left: 1.5rem; padding-right: 1.5rem; }
  .article-header { padding-left: 1.5rem; padding-right: 1.5rem; }
  .article-body { padding-left: 1.5rem; padding-right: 1.5rem; }
  .policy-body { padding-left: 1.5rem; padding-right: 1.5rem; }

  .feature-strip { flex-direction: column; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-row { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }

  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid rgba(255,255,255,0.2); }

  .banner-dark { padding: 3.5rem 1.5rem; }
}

@media (max-width: 560px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
}

/* ─── MISC ─── */
.img-full {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.accent-line {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--accent);
  margin-bottom: 0;
}

.text-columns-2 {
  column-count: 2;
  column-gap: 3rem;
}

@media (max-width: 700px) {
  .text-columns-2 { column-count: 1; }
}

.list-styled {
  list-style: none;
  padding: 0;
}

.list-styled li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.list-styled li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
}

.highlight-box {
  padding: 2rem 2.5rem;
  background: var(--bg-secondary);
  border-left: 3px solid var(--accent);
  margin: 2rem 0;
}

.highlight-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================
   POLICY PAGES
   ============================================ */

.policy-block {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.policy-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-heading {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.policy-subheading {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 1.5rem 0 0.75rem;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem;
}

.policy-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.85;
  padding: 0.5rem 0 0.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.policy-list li:last-child {
  border-bottom: none;
}

.policy-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
  top: 0.6rem;
}

.policy-list li strong {
  color: var(--text-dark);
}

.policy-list li code {
  background: var(--bg-secondary);
  padding: 0.1em 0.4em;
  border-radius: 3px;
  font-size: 0.8rem;
  color: var(--text-dark);
  font-family: var(--font-mono, monospace);
}

/* Policy page table */
.policy-block table th,
.policy-block table td {
  color: var(--text-muted);
  vertical-align: middle;
}
