
/* Grazing Lands — matched to live Squarespace tokens
   Headings: mrs-eaves-xl-serif → Cormorant Garamond 700
   Body/nav: sofia-pro → Nunito Sans 300/500
   Buttons: Inter Tight 500 (exact match on Google Fonts) */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Nunito+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter+Tight:wght@400;500;600&display=swap');

:root {
  /* Brand colors from Squarespace HSL tokens */
  --cream: #faf3e1;          /* lightAccent */
  --cream-dark: #f3ead0;
  --ink: #000000;
  --ink-soft: #1a1a1a;
  --muted: #4a4a4a;
  --forest: #024336;         /* safeDarkAccent */
  --forest-deep: #013329;
  --olive: #a1bc97;          /* darkAccent */
  --olive-light: #b8d0ad;
  --white: #ffffff;
  --line: rgba(0,0,0,0.1);
  --shadow: 0 18px 50px rgba(2,67,54,0.12);
  --max: 1200px;
  --font: "Nunito Sans", "sofia-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Cormorant Garamond", "mrs-eaves-xl-serif", Georgia, "Times New Roman", serif;
  --btn-font: "Inter Tight", "Nunito Sans", sans-serif;
  --heading-weight: 700;
  --heading-tracking: 0.005em;
  --heading-leading: 1.2;
  --body-weight: 300;
  --body-tracking: 0.01em;
  --body-leading: 1.5;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: var(--body-leading);
  letter-spacing: var(--body-tracking);
  font-size: 1.1rem; /* --normal-text-size */
  font-weight: var(--body-weight);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-tracking);
  line-height: var(--heading-leading);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--olive); }
.container { width: min(var(--max), calc(100% - 3rem)); margin: 0 auto; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: .5rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ========== Header ========== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,243,225,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
/* Live uses transparent/dynamic header over hero — grass fills the first screen */
.site-header.is-overlay {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}
/* Keep header fixed (not sticky) once it leaves overlay so it doesn't jump */
.site-header.is-solid-fixed {
  position: fixed;
  top: 0; left: 0; right: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.site-header.is-overlay .nav-link,
.site-header.is-overlay .nav-folder-btn,
.site-header.is-overlay .nav-toggle {
  color: var(--forest); /* deep green — readable on bright grass */
  border-color: rgba(2, 67, 54, 0.35);
  text-shadow: 0 1px 2px rgba(250, 243, 225, 0.55);
}
.site-header.is-overlay .nav-link:hover,
.site-header.is-overlay .nav-folder-btn:hover,
.site-header.is-overlay .nav-link.active {
  color: var(--forest-deep);
}
.site-header.is-overlay .logo-on-light { display: none; }
.site-header.is-overlay .logo-on-dark { display: block; }
.site-header:not(.is-overlay) .logo-on-dark { display: none; }
.site-header:not(.is-overlay) .logo-on-light { display: block; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 110px; gap: 1.25rem;
}
.logo img {
  height: auto;
  width: auto;
  /* live Squarespace header logo-height: 92px */
  max-height: 92px;
  max-width: min(360px, 52vw);
  display: block;
}
.nav-desktop { display: flex; align-items: center; gap: .15rem; }
.nav-item { position: relative; }
.nav-link, .nav-folder-btn {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .6rem .95rem;
  color: var(--ink); text-decoration: none;
  font-size: .95rem; font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase;
  background: none; border: 0; cursor: pointer; font-family: var(--font);
}
.nav-link:hover, .nav-folder-btn:hover, .nav-link.active { color: var(--olive); }
.nav-dropdown {
  display: none; position: absolute; top: 100%; left: 0; min-width: 260px;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow);
  padding: .55rem 0; border-radius: 2px;
}
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; padding: .65rem 1.15rem; color: var(--ink); text-decoration: none;
  font-size: .9rem; letter-spacing: .02em; text-transform: none; font-weight: 400;
}
.nav-dropdown a:hover { background: var(--cream); color: var(--forest); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line); padding: .5rem .75rem;
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
  font-family: inherit;
}
.mobile-nav {
  display: none; border-top: 1px solid var(--line); background: var(--cream);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: .6rem 0; color: var(--ink); text-decoration: none; font-weight: 500;
  letter-spacing: .04em;
}
.mobile-nav .sub { padding-left: 1rem; font-weight: 400; color: var(--muted); font-size: .95rem; }
@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-inner { min-height: 80px; }
  .logo img { max-height: 56px; max-width: min(220px, 58vw); }
}

/* ========== Hero — full bleed lush grass (live: 80vh, left, overlay 0.08) ========== */
.hero {
  position: relative;
  /* Live: 80vh section + transparent header ≈ full first screen of grass */
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--cream);
  background: #152102;
  overflow: hidden;
  text-align: left;
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  /* live imageOverlayOpacity: 0.08 */
  background: rgba(0, 0, 0, 0.08);
}
.hero-content {
  position: relative; z-index: 1;
  width: min(var(--max), calc(100% - 3rem));
  margin: 0 auto;
  padding: 7rem 0 5.5rem; /* clear overlay header */
  max-width: none;
}
.hero-content > * {
  max-width: 40rem; /* content-width--medium, left-aligned */
}
.hero h1 {
  font-family: var(--serif);
  font-weight: var(--heading-weight);
  font-size: clamp(2.8rem, 7vw, 5.4rem); /* --heading-1-size */
  line-height: 1.12;
  margin: 0 0 1.1rem;
  letter-spacing: var(--heading-tracking);
  color: var(--cream);
}
.hero .hero-sub {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem); /* ~h4 */
  font-weight: 500;
  max-width: 34rem;
  margin: 0 0 1.75rem;
  color: var(--cream);
  line-height: 1.35;
  letter-spacing: var(--heading-tracking);
  opacity: .98;
}
.hero .btn-row { justify-content: flex-start; }

/* ========== Intro band (section under hero) ========== */
.intro-band {
  background: var(--cream);
  min-height: 50vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 5rem 0;
}
.intro-band .container { max-width: 820px; }
.intro-band h2 {
  font-family: var(--serif);
  font-weight: var(--heading-weight);
  font-size: clamp(1.65rem, 3vw, 2.8rem); /* heading-3 */
  line-height: 1.25;
  margin: 0 0 1.25rem;
  color: var(--ink);
}
.intro-band h2 em {
  font-style: italic;
  font-weight: 600;
}
.intro-band p {
  margin: 0 auto;
  max-width: 40rem;
  font-size: 1.1rem;
  font-weight: var(--body-weight);
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ========== Collage panels (Squarespace design-layout-collage) ==========
   Image ~70% width, cream text card ~45% overlapping, offset ~5% */
.collage {
  position: relative;
  width: min(1200px, calc(100% - 2rem));
  margin: 2.5rem auto;
  min-height: 420px;
}
.collage-media {
  width: 70%;
  min-height: 480px;
  background-color: var(--cream-dark);
  background-size: contain;       /* live collage images use object-fit: contain */
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.collage-media::after {
  content: "";
  position: absolute; inset: 0;
  background: hsla(104, 22%, 67%, 0.12); /* subtle darkAccent wash */
}
.collage-card {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: min(45%, 420px);
  background: var(--cream);
  color: var(--ink);
  padding: 2.25rem 2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  z-index: 2;
}
.collage-card h2, .collage-card h3 {
  font-family: var(--serif);
  font-weight: var(--heading-weight);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--ink);
}
.collage-card p {
  margin: 0 0 1.35rem;
  font-size: 1.05rem;
  font-weight: var(--body-weight);
  line-height: 1.55;
  color: var(--ink-soft);
}
.collage-card .btn-row { margin-top: .25rem; }
/* image left → card on right */
.collage-left .collage-media { margin-right: auto; }
.collage-left .collage-card { right: 5%; left: auto; }
/* image right → card on left */
.collage-right .collage-media { margin-left: auto; }
.collage-right .collage-card { left: 5%; right: auto; }
.collage-stack {
  padding: 1rem 0 2.5rem;
  background: var(--white);
}
@media (max-width: 800px) {
  .collage {
    width: calc(100% - 1.5rem);
    min-height: 0;
    margin: 1.5rem auto;
  }
  .collage-media {
    width: 100%;
    min-height: 280px;
    aspect-ratio: 3/2;
  }
  .collage-card {
    position: relative;
    top: auto;
    left: auto !important;
    right: auto !important;
    transform: none;
    width: calc(100% - 2rem);
    margin: -3rem auto 0;
    padding: 1.75rem 1.5rem;
  }
}

/* ========== Page hero (inner pages) ========== */
/* Interior page heroes — full-bleed photo like Squarespace (often ~75vh) */
.page-hero {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero.has-bg {
  min-height: 85vh;
  min-height: 85dvh;
  display: flex;
  align-items: center;          /* live: vertical middle */
  justify-content: flex-start;
  padding: 6.5rem 0 4rem;       /* room for overlay header */
}
.page-hero.has-bg.hero-tall { min-height: 92vh; min-height: 92dvh; }
.page-hero.has-bg.hero-medium { min-height: 70vh; min-height: 70dvh; }
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
}
/* default overlay ~0.15–0.25 (set per page via --hero-overlay) */
.page-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(0, 0, 0, var(--hero-overlay, 0.18));
}
.page-hero .container { position: relative; z-index: 1; max-width: 720px; }
.page-hero.has-bg .container {
  width: min(var(--max), calc(100% - 3rem));
  margin: 0 auto;
  max-width: 40rem;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: var(--heading-weight);
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin: 0 0 .75rem;
  line-height: var(--heading-leading);
  letter-spacing: var(--heading-tracking);
  color: var(--cream);
}
.page-hero .lede {
  max-width: 36rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: var(--body-weight);
  opacity: .95;
  margin: 0;
  line-height: var(--body-leading);
  color: var(--cream);
}
.page-hero .eyebrow {
  color: var(--cream);
  opacity: .85;
}
@media (max-width: 700px) {
  .page-hero.has-bg { min-height: 70vh; min-height: 70dvh; }
  .page-hero.has-bg.hero-tall { min-height: 78vh; min-height: 78dvh; }
}

/* ========== Sections ========== */
.section { padding: 5rem 0; }
.section-tight { padding: 3.25rem 0; }
.section-dark { background: var(--forest-deep); color: var(--cream); }
/* Don't paint button labels cream — that made cream buttons unreadable */
.section-dark a:not(.btn) { color: var(--cream); }
.section-dark .btn-light {
  background: var(--cream);
  color: var(--forest);
}
.section-dark .btn-light:hover {
  background: var(--white);
  color: var(--forest-deep);
}
.section-dark .btn-outline {
  color: var(--cream);
  border-color: var(--cream);
  background: transparent;
}
.section-dark .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--cream);
}
.section-dark .btn-primary {
  background: var(--cream);
  color: var(--forest);
}
.section-alt { background: var(--cream-dark); }
.section h2 {
  font-family: var(--serif);
  font-weight: var(--heading-weight);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  margin: 0 0 1.25rem;
  line-height: var(--heading-leading);
  letter-spacing: var(--heading-tracking);
}
.section h3 {
  font-family: var(--serif);
  font-weight: var(--heading-weight);
  font-size: 1.55rem;
  margin: 0 0 .75rem;
  line-height: 1.25;
  letter-spacing: var(--heading-tracking);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--olive);
  margin: 0 0 .85rem;
}
.section-dark .eyebrow { color: var(--olive-light); }

/* ========== Grids / cards (blog etc) ========== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
@media (max-width: 800px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}
.card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,31,24,.07);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  background: var(--cream-dark);
}
.card-body { padding: 1.45rem 1.45rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.card h3 { font-size: 1.35rem; margin: 0 0 .5rem; }
.card p { margin: 0 0 1rem; color: var(--muted); flex: 1; font-weight: 300; }
.card a.more { margin-top: auto; font-weight: 600; text-decoration: none; color: var(--forest); letter-spacing: .02em; }
.card a.more:hover { color: var(--olive); }

.feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.feature.reverse { grid-template-columns: 1fr 1.1fr; }
.feature.reverse .feature-media { order: 2; }
.feature-media {
  background: var(--cream-dark);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: .75rem;
}
.feature-media img {
  width: 100%;
  height: auto;
  max-height: 420px;
  border-radius: 2px;
  object-fit: contain;   /* match live image-card content-fit */
  object-position: center;
}
.feature-media-cover {
  padding: 0;
  background: #111;
}
.feature-media-cover img {
  object-fit: cover;
  height: 100%;
  min-height: 280px;
  max-height: 480px;
}
@media (max-width: 800px) {
  .feature, .feature.reverse { grid-template-columns: 1fr; }
  .feature.reverse .feature-media { order: 0; }
}

/* ========== Buttons (live: Inter Tight 500, no uppercase, rounded 6.4px) ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1.1rem 2rem;
  border-radius: 6.4px;
  font-weight: 500;
  font-size: 1.08rem;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--btn-font);
  line-height: 1.22;
  transition: .18s ease;
}
.btn-primary { background: var(--forest); color: var(--cream); }
.btn-primary:hover { background: var(--ink); color: var(--cream); }
.btn-outline { border-color: currentColor; color: inherit; background: transparent; border-width: 2px; }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-light { background: var(--cream); color: var(--forest); }
.btn-light:hover { background: var(--white); color: var(--forest-deep); }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.25rem; }
/* Dark green solid on cream collage cards */
.collage-card .btn-primary,
.collage-card .btn-light {
  background: var(--forest);
  color: var(--cream);
}
.collage-card .btn-primary:hover,
.collage-card .btn-light:hover {
  background: var(--forest-deep);
  color: var(--cream);
}

/* ========== Team — live Squarespace image-card layout ==========
   2 columns; each card = photo LEFT + bio RIGHT; object-fit: contain (no zoom crop) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.75rem;
}
.person {
  display: grid;
  grid-template-columns: minmax(140px, 42%) 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,31,24,.07);
  min-height: 220px;
}
.person-media {
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: .5rem;
}
.person img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: contain;          /* live: content-fit / contain — full photo, not cropped */
  object-position: center center;
  display: block;
}
.person-body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.person h3 {
  margin: 0 0 .15rem;
  font-size: 1.2rem;
  line-height: 1.25;
}
.person .role {
  color: var(--olive);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin: 0 0 .65rem;
  text-transform: none;         /* live shows "Name, Role" style — keep role readable */
}
.person p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 800px) {
  .team-grid { grid-template-columns: 1fr; }
  .person {
    grid-template-columns: 1fr;
  }
  .person-media {
    min-height: 240px;
    max-height: 320px;
  }
  .person img { max-height: 300px; }
}

/* ========== Blog ========== */
.blog-list { display: grid; gap: 1.5rem; }
.blog-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.75rem;
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,31,24,.07);
}
.blog-item img { width: 100%; height: 100%; min-height: 170px; object-fit: cover; }
.blog-item-body { padding: 1.4rem 1.4rem 1.4rem 0; }
.blog-item h2 {
  font-size: 1.45rem;
  margin: 0 0 .55rem;
  font-family: var(--serif);
  font-weight: var(--heading-weight);
}
.blog-item h2 a { text-decoration: none; color: var(--ink); }
.blog-item h2 a:hover { color: var(--olive); }
.meta { font-size: .82rem; color: var(--muted); margin-bottom: .5rem; letter-spacing: .04em; text-transform: uppercase; }
@media (max-width: 700px) {
  .blog-item { grid-template-columns: 1fr; }
  .blog-item-body { padding: 0 1.25rem 1.25rem; }
  .blog-item img { aspect-ratio: 16/9; min-height: 0; }
}
.prose { max-width: 720px; margin: 0 auto; }
.prose h2, .prose h3 { margin-top: 2rem; font-family: var(--serif); font-weight: var(--heading-weight); }
.prose p, .prose li { color: var(--ink-soft); font-weight: 300; }
.prose a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 400;
}
.prose a:hover { color: var(--olive); }
.prose img { margin: 1.5rem 0; border-radius: 2px; width: 100%; }
.prose blockquote {
  margin: 1.75rem 0;
  padding: 1.1rem 1.35rem;
  border-left: 3px solid var(--olive);
  background: var(--cream-dark);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}
.post-header { padding: 4rem 0 1.5rem; }
.post-header h1 {
  font-family: var(--serif);
  font-weight: var(--heading-weight);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  line-height: 1.15;
  margin: 0 0 .75rem;
  max-width: 900px;
  letter-spacing: var(--heading-tracking);
}

/* ========== Forms ========== */
.form { display: grid; gap: 1rem; max-width: 560px; }
.form label { display: grid; gap: .35rem; font-weight: 600; font-size: .88rem; letter-spacing: .03em; }
.form input, .form textarea, .form select {
  font: inherit; padding: .8rem .95rem; border: 1px solid var(--line);
  border-radius: 2px; background: var(--white); color: var(--ink);
}
.form textarea { min-height: 140px; resize: vertical; }
.form .note {
  font-size: .85rem; color: var(--muted); background: #fff7e6; border: 1px solid #f0d9a8;
  padding: .75rem 1rem; border-radius: 2px; font-weight: 400;
}
.contact-grid {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: start;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-details { font-size: 1.05rem; }
.contact-details a { text-decoration: none; font-weight: 600; }

/* ========== Quote ========== */
.quote-block { max-width: 820px; margin: 0 auto; text-align: center; }
.quote-block blockquote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  line-height: 1.4;
  margin: 0 0 1rem;
  font-weight: var(--heading-weight);
}
.quote-block cite { color: var(--muted); font-style: normal; letter-spacing: .04em; }

/* ========== Newsletter (live-style signup) ========== */
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: 1.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form input[type="email"] {
  flex: 1 1 220px;
  font: inherit;
  padding: .95rem 1.1rem;
  border: 1px solid rgba(250,243,225,.35);
  border-radius: 6.4px;
  background: rgba(255,255,255,.08);
  color: var(--cream);
}
.newsletter-form input[type="email"]::placeholder { color: rgba(250,243,225,.65); }
.newsletter-form .btn { flex: 0 0 auto; }

/* ========== Footer (closer to live: logo + contact line) ========== */
.site-footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 3.5rem 0 2.5rem;
}
.footer-simple {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.footer-logo img { height: 56px; width: auto; margin: 0 auto 0.25rem; }
.footer-contact-line {
  margin: 0;
  font-weight: 300;
  opacity: .92;
  line-height: 1.7;
  font-size: 1rem;
}
.site-footer a { color: var(--cream); text-decoration: none; opacity: .95; }
.site-footer a:hover { opacity: 1; text-decoration: underline; }

/* Legacy multi-column footer (if any remain) */
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.75rem;
}
.site-footer h4 {
  margin: 0 0 1rem;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .65;
  font-weight: 600;
  font-family: var(--font);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 0 0 .55rem; }
.site-footer p { font-weight: 300; opacity: .9; max-width: 28rem; }
.footer-bottom {
  border-top: 1px solid rgba(245,241,232,.14);
  padding-top: 1.35rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  font-size: .88rem; opacity: .7; font-weight: 300;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Home recent posts: allow 4 cards */
.home-posts {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1000px) {
  .home-posts { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 700px) {
  .home-posts { grid-template-columns: 1fr; }
}

/* ========== Utils ========== */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--muted); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
