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

:root {
  --bg: #F7F3EC;
  --bg-alt: #EFE9DF;
  --ink: #1C2521;
  --ink-soft: #3D4A44;
  --moss: #3A5A40;
  --moss-light: #5C7A62;
  --copper: #B36A3C;
  --copper-soft: #D4A574;
  --sand: #D9CDB8;
  --white: #FFFcf7;
  --border: #E0D6C5;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(28, 37, 33, 0.06);
  --shadow-hover: 0 8px 32px rgba(28, 37, 33, 0.1);
  --font-head: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--moss); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--copper); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin: 1.8rem 0 0.8rem; color: var(--moss); }

p { margin-bottom: 1.15rem; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HEADER - unique thin top + big logo row ===== */
.top-bar {
  background: var(--ink);
  color: var(--bg);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.45rem 0;
  text-align: center;
}
.top-bar span { opacity: 0.85; }

header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.75rem;
  color: var(--ink);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--moss);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.8rem;
  align-items: center;
}
nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
nav a:hover, nav a.active { color: var(--moss); }

.nav-cta {
  background: var(--moss);
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem !important;
}
.nav-cta:hover { background: var(--copper); color: var(--white) !important; }

/* Mobile nav */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.2s;
}

/* ===== HERO unique split with decorative shape ===== */
.hero {
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--sand) 0%, transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--copper);
  margin-bottom: 1.1rem;
}
.hero-label::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--copper);
}
.hero h1 { margin-bottom: 1.25rem; }
.hero-lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 34ch;
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--moss);
  color: var(--white);
}
.btn-primary:hover { background: var(--copper); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--moss); color: var(--moss); }

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}
.hero-card::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--copper);
  border-radius: 50%;
  opacity: 0.15;
}
.hero-card-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.hero-card h3 { margin: 0 0 0.6rem; color: var(--ink); font-size: 1.25rem; }
.hero-card p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* ===== SECTIONS ===== */
section { padding: 3.5rem 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--copper);
  margin-bottom: 0.4rem;
}

/* Articles grid - unique 1 large + 2 small then row */
.articles-showcase {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.article-card.featured {
  min-height: 340px;
  justify-content: flex-end;
  background: linear-gradient(160deg, var(--moss) 0%, #2C4534 100%);
  color: var(--white);
  border: none;
  padding: 2.2rem;
}
.article-card.featured h3 { color: var(--white); font-size: 1.7rem; }
.article-card.featured p { color: rgba(255,255,255,0.85); }
.article-card.featured .card-meta { color: var(--copper-soft); }
.card-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.card-meta {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--copper);
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.article-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.7rem;
  color: var(--ink);
}
.article-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  flex: 1;
  margin-bottom: 1.2rem;
}
.card-link {
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.card-link::after { content: '→'; transition: transform 0.2s; }
.article-card:hover .card-link::after { transform: translateX(3px); }

.articles-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Long text blocks */
.prose {
  max-width: 680px;
  margin: 0 auto;
}
.prose p { font-size: 1.05rem; }
.prose h2 { margin-top: 2.5rem; }
.drop-cap::first-letter {
  font-family: var(--font-head);
  font-size: 3.4rem;
  float: left;
  line-height: 0.85;
  padding-right: 0.5rem;
  color: var(--moss);
  margin-top: 0.15rem;
}

.pull-quote {
  border-left: 3px solid var(--copper);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* About teaser */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
.about-visual {
  background: var(--moss);
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  top: 20%;
  left: 15%;
}
.about-visual::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--copper);
  opacity: 0.3;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: 18%;
  right: 12%;
}
.about-initials {
  font-family: var(--font-head);
  font-size: 5rem;
  color: rgba(255,255,255,0.9);
  z-index: 1;
}

/* Footer */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 0 2rem;
  margin-top: 2rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.footer-brand span { color: var(--copper-soft); }
footer a { color: rgba(255,255,255,0.7); }
footer a:hover { color: var(--copper-soft); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sand);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.2rem; }

/* Page hero (inner pages) */
.page-hero {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 0.8rem;
}
.page-hero .breadcrumb a { color: var(--ink-soft); }
.page-hero h1 { margin-bottom: 0.6rem; }
.page-hero .meta { color: var(--copper); font-size: 0.9rem; font-weight: 500; }

/* Content layout */
.content-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}
.sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  margin-bottom: 1.2rem;
}
.sidebar-card h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--moss);
  margin-bottom: 0.9rem;
}
.sidebar-card ul { list-style: none; }
.sidebar-card li { margin-bottom: 0.5rem; }
.sidebar-card a { font-size: 0.92rem; color: var(--ink-soft); }
.sidebar-card a:hover { color: var(--moss); }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
}
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--moss);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 1rem; }

/* Thank you */
.thanks-box {
  text-align: center;
  max-width: 520px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.thanks-icon {
  width: 64px;
  height: 64px;
  background: var(--moss);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
}

/* Policy pages */
.policy-content {
  max-width: 720px;
  margin: 0 auto 3rem;
}
.policy-content h2 { margin-top: 2.2rem; font-size: 1.5rem; }
.policy-content ul, .policy-content ol {
  margin: 1rem 0 1.5rem 1.4rem;
}
.policy-content li { margin-bottom: 0.5rem; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .articles-showcase,
  .about-teaser,
  .contact-grid,
  .content-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .articles-row { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .hero-card { max-width: 360px; }
  nav ul { display: none; }
  .menu-toggle { display: block; }
  nav.open ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.2rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
    box-shadow: var(--shadow);
  }
  header { position: relative; }
}

@media (max-width: 600px) {
  .hero { padding: 2.5rem 0 2rem; }
  .header-inner { padding: 0.9rem 0; }
  .logo { font-size: 1.45rem; }
  section { padding: 2.5rem 0; }
}
