:root {
  --bg: #fdfbf7;
  --surface: #f4efe6;
  --ink: #2c2421;
  --muted: #6f665f;
  --accent: #7a8b5d;
  --line: #e8dcc4;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(44, 36, 33, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.page-shell { min-height: 100vh; }
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(253, 251, 247, 0.9);
  border-bottom: 1px solid rgba(232, 220, 196, 0.8);
}
.site-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.brand span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 600;
}
.nav-links a.active,
.nav-links a:hover { color: var(--accent); }
.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--white);
}
.nav-button:hover { background: var(--accent); }
.page-hero,
.article-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 32px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}
.hero-copy,
.hero-media,
.content-card,
.article-card,
.sidebar-card {
  border-radius: 36px;
  overflow: hidden;
}
.hero-copy {
  background: linear-gradient(180deg, var(--surface), #fbf6ef);
  border: 1px solid var(--line);
  padding: 42px;
  box-shadow: var(--shadow);
}
.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--surface);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-title,
.article-title,
.section-title {
  font-family: "Playfair Display", serif;
  line-height: 1;
  margin: 20px 0 0;
}
.hero-title { font-size: clamp(3rem, 6vw, 5.6rem); }
.hero-title span,
.article-title span {
  color: var(--accent);
  font-style: italic;
}
.hero-summary,
.article-summary,
.article-body p,
.list-intro {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}
.hero-summary {
  margin-top: 22px;
  max-width: 58ch;
  font-size: 1.1rem;
}
.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.hero-stat {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}
.hero-stat strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.hero-media {
  min-height: 520px;
  position: relative;
  box-shadow: var(--shadow);
}
.hero-media img,
.article-hero-image img,
.gallery-card img,
.list-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay,
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 36, 33, 0.76), rgba(44, 36, 33, 0.12));
}
.hero-media-copy,
.article-hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px;
  color: var(--white);
}
.hero-media-copy h2,
.article-hero-copy h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
}
.hero-media-copy p,
.article-hero-copy p {
  margin: 12px 0 0;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}
.section-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 80px;
}
.section-heading { margin-bottom: 26px; }
.section-kicker {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-top: 12px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.list-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(44, 36, 33, 0.06);
}
.list-card-image {
  height: 240px;
  position: relative;
}
.list-card-copy { padding: 24px; }
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}
.list-card-copy h3 {
  margin: 16px 0 12px;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1.08;
}
.read-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  color: var(--accent);
  font-weight: 700;
}
.article-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 90px;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
}
.article-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.article-hero-image {
  position: relative;
  min-height: 500px;
}
.article-copy { padding: 34px; }
.article-title { font-size: clamp(2.5rem, 5vw, 4.4rem); }
.article-summary { margin-top: 18px; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.article-body { padding: 0 34px 36px; }
.article-body h2 {
  margin: 34px 0 16px;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}
.article-quote {
  margin: 30px 0;
  padding: 28px;
  border-left: 4px solid var(--accent);
  border-radius: 24px;
  background: var(--surface);
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  line-height: 1.5;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.gallery-card {
  overflow: hidden;
  border-radius: 26px;
  min-height: 280px;
  box-shadow: 0 12px 28px rgba(44, 36, 33, 0.08);
}
.data-table-wrap {
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: var(--white);
}
thead { background: var(--surface); }
th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.takeaways {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.takeaways li {
  border-radius: 18px;
  padding: 16px 18px;
  background: var(--surface);
  line-height: 1.7;
}
.sidebar-card {
  position: sticky;
  top: 108px;
  background: linear-gradient(180deg, var(--surface), #fbf6ef);
  border: 1px solid var(--line);
  padding: 28px;
  height: fit-content;
  box-shadow: 0 16px 36px rgba(44, 36, 33, 0.06);
}
.sidebar-card h3 {
  margin: 0 0 16px;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}
.sidebar-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-list a {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}
.sidebar-list a:hover { border-color: var(--accent); }
.footer {
  border-top: 1px solid var(--line);
  padding: 28px 24px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}
@media (max-width: 1100px) {
  .blog-grid,
  .hero-grid,
  .article-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
}
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }
  .nav-links { display: none; }
  .hero-copy,
  .article-copy,
  .article-body,
  .sidebar-card {
    padding-left: 22px;
    padding-right: 22px;
  }
  .hero-stat-grid,
  .gallery-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .hero-media,
  .article-hero-image,
  .gallery-card,
  .list-card-image {
    min-height: 0;
    height: auto;
  }
  .hero-media img,
  .article-hero-image img,
  .gallery-card img,
  .list-card-image img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    background: var(--surface);
  }
  .hero-title,
  .article-title,
  .section-title,
  .list-card-copy h3,
  .article-body h2,
  .hero-summary,
  .article-summary,
  .article-body p,
  .hero-media-copy p,
  .article-hero-copy p,
  .sidebar-card h3,
  th,
  td {
    overflow-wrap: break-word;
  }
  table {
    min-width: 100%;
  }
  th,
  td {
    padding: 14px 12px;
  }
}
