:root {
  --bg: #F7F3EC;
  --bg-alt: #EEE7DA;
  --fg: #1C1917;
  --fg-muted: #78716C;
  --accent: #2D6A4F;
  --accent-light: #40916C;
  --accent-xlight: #D8EDD9;
  --warm: #C9A96E;
  --warm-dark: #8B5E3C;
  --clay: #A05C2E;
  --sunflower: #FB8500;
  --off-white: #FDFAF5;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  padding: 5rem 6rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cityline {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  background: var(--accent-xlight);
  color: var(--accent);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-cta {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--accent-light);
}

.cta-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.hero-illustration {
  position: relative;
  z-index: 1;
  width: 300px;
  flex-shrink: 0;
}

.hero-illustration svg {
  width: 100%;
  height: auto;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  background: var(--fg);
  color: var(--bg);
  padding: 7rem 6rem;
}

.philosophy-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.philosophy .section-heading { color: var(--bg); }

.philosophy-columns {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
}

.philosophy-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-right: 3rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.philosophy-text p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.philosophy-text p:last-child { margin-bottom: 0; }

/* ===== FEATURES ===== */
.features {
  background: var(--bg-alt);
  padding: 7rem 6rem;
}

.features-inner { max-width: 1100px; margin: 0 auto; }

.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.06);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.feature-icon svg { width: 100%; height: 100%; }

.feature-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== JOURNEY ===== */
.journey {
  background: var(--accent-xlight);
  padding: 7rem 6rem;
}

.journey-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.journey-text p { color: var(--fg-muted); margin-bottom: 1.2rem; }
.journey-text p:last-child { margin-bottom: 0; }

.season-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.season {
  background: var(--off-white);
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.06);
}

.season-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
}

.season-icon svg { width: 100%; height: 100%; }

.season-label {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.3rem;
}

.season-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ===== CLOSING ===== */
.closing {
  background: var(--fg);
  padding: 8rem 6rem;
  text-align: center;
}

.closing-inner { max-width: 720px; margin: 0 auto; }

.closing-badge {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
}

.closing-badge svg { width: 100%; height: 100%; }

.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.closing-body {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.closing-body:last-child { margin-bottom: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: #111210;
  padding: 3rem 6rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg);
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent-light); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  width: 100%;
}

/* ===== NEWSLETTER ===== */

/* --- Block (homepage landing block) --- */
.newsletter-block {
  background: var(--accent-xlight);
  padding: 6rem 6rem;
  border-top: 2px solid var(--accent-light);
}
.newsletter-block-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-block-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.newsletter-block-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.newsletter-block-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Shared form styles */
.newsletter-form { width: 100%; }
.newsletter-form-row {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}
.newsletter-email-input {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 1rem;
  border: 2px solid var(--accent);
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  background: var(--off-white);
  color: var(--fg);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.newsletter-email-input:focus {
  outline: none;
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(64,145,108,0.15);
}
.newsletter-email-input::placeholder { color: var(--fg-muted); }
.newsletter-btn {
  padding: 0.75rem 1.75rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.newsletter-btn:hover { background: #1f5438; }
.newsletter-note {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--fg-muted);
}
.newsletter-success {
  margin-top: 1rem;
  padding: 0.85rem 1.25rem;
  background: var(--accent-xlight);
  border: 2px solid var(--accent-light);
  border-radius: 8px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

/* --- Sidebar widget --- */
.newsletter-sidebar {
  background: var(--off-white);
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 2px 8px rgba(45,32,22,0.06);
}
.newsletter-sidebar-headline {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.newsletter-sidebar-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 1.1rem;
}
.newsletter-form--sidebar { display: flex; flex-direction: column; gap: 0.6rem; }
.newsletter-form--sidebar .newsletter-email-input { padding: 0.6rem 0.85rem; font-size: 0.9rem; }
.newsletter-form--sidebar .newsletter-btn { padding: 0.6rem 1rem; font-size: 0.9rem; }

/* --- Post-footer --- */
.newsletter-post {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 2.5rem 3rem;
  margin-top: 3rem;
  border: 1px solid rgba(0,0,0,0.05);
}
.newsletter-post-inner { max-width: 560px; margin: 0 auto; }
.newsletter-post-headline {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.newsletter-post-sub {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
}
.newsletter-form--post { }
.newsletter-form--post .newsletter-email-input { padding: 0.65rem 0.9rem; font-size: 0.9rem; }
.newsletter-form--post .newsletter-btn { padding: 0.65rem 1.25rem; font-size: 0.9rem; }
/* ===== LATEST POSTS ===== */
.latest-posts {
  background: var(--bg);
  padding: 5rem 6rem 4rem;
}

.latest-posts-inner { max-width: 1100px; margin: 0 auto; }

.latest-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.post-card {
  background: var(--off-white);
  border: 1px solid var(--bg-alt);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45,32,22,0.10);
}

.post-card time {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 700;
}

.post-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.25;
}

.post-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

.post-card-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.post-card-link:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 4rem 2.5rem 3rem;
    min-height: auto;
  }
  .hero-illustration { display: none; }
  .hero-headline { font-size: 3rem; }

  .philosophy { padding: 5rem 2.5rem; }
  .philosophy-columns { grid-template-columns: 1fr; gap: 2rem; }
  .philosophy-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding-right: 0; padding-bottom: 2rem; }

  .features { padding: 5rem 2.5rem; }
  .feature-cards { grid-template-columns: 1fr; }

  .journey { padding: 5rem 2.5rem; }
  .journey-inner { grid-template-columns: 1fr; gap: 3rem; }

  .closing { padding: 5rem 2.5rem; }
  .site-footer { padding: 3rem 2.5rem; }
  .newsletter-block { padding: 5rem 2.5rem; }
  .newsletter-post { padding: 2rem 1.5rem; }

  .latest-posts { padding: 4rem 2.5rem 3rem; }
  .latest-posts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .hero-headline { font-size: 2.5rem; }
  .philosophy { padding: 4rem 1.5rem; }
  .features { padding: 4rem 1.5rem; }
  .journey { padding: 4rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .site-footer { padding: 2.5rem 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .season-grid { grid-template-columns: 1fr; }
  .newsletter-block { padding: 4rem 1.5rem; }
  .newsletter-post { padding: 1.5rem 1.25rem; }
  .newsletter-form-row { flex-direction: column; }
  .newsletter-form-row .newsletter-btn { width: 100%; }
}