/* ═══════════════════════════════════════════════
   MY HAMPSHIRE GARDEN — Shared Styles
   ═══════════════════════════════════════════════ */

:root {
  --cream: #FAF7F2;
  --cream-dark: #F3EDE4;
  --sage: #6B8F6B;
  --sage-light: #E8EDE4;
  --sage-muted: #A8BFA8;
  --deep-green: #2F4F2F;
  --forest: #1E3A1E;
  --rose: #C4727E;
  --rose-light: #E8B4BA;
  --blush: #F5E0E3;
  --lavender: #9B89A8;
  --lavender-light: #E5DFE9;
  --terracotta: #C4835D;
  --warm-brown: #5C4A3A;
  --charcoal: #2C2C2C;
  --off-white: #FDFCF9;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Lora', 'Georgia', serif;

  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-width: 1200px;
  --container-narrow: 800px;
  --article-width: 720px;
  --nav-home-overlap: 108px;
  --page-top-spacing: clamp(1.75rem, 7vw, 4.5rem);
}

/* ── Reset & Base ── */

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

html {
  scroll-behavior: smooth;
  font-size: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body.body--nav-open {
  overflow: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* ── Typography ── */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }

p { font-size: clamp(0.95rem, 1.1vw, 1.05rem); }

.section-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-label--muted {
  color: var(--sage-muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  background: var(--off-white);
  color: var(--deep-green);
  z-index: 1000;
}

/* ── Navigation ── */

.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

body.admin-bar .nav {
  top: 32px;
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: 0 1px 20px rgba(47, 79, 47, 0.08);
}

.nav--static {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(47, 79, 47, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.nav__logo {
  height: 60px;
  transition: height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.nav.scrolled .nav__logo,
.nav--static.scrolled .nav__logo {
  opacity: 1;
  height: 56px;
}

.nav--static:not(.scrolled) .nav__logo {
  opacity: 1;
  height: 84px;
}

.nav__links {
  display: flex;
  gap: 0.4rem;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  background: #000;
  padding: 0.3em 0.7em;
  border-radius: 3px;
  transition: color 0.3s ease, background 0.3s ease;
  position: relative;
}

.nav.scrolled .nav__links a,
.nav--static .nav__links a {
  background: none;
  color: var(--charcoal);
}

.nav__links a:hover {
  color: var(--sage);
}

.nav__links a.active {
  background: var(--deep-green) !important;
  color: #fff !important;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__mobile-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--off-white);
  transition: background 0.3s ease;
}

.nav.scrolled .nav__mobile-toggle span,
.nav--static .nav__mobile-toggle span {
  background: var(--charcoal);
}

/* ── Mobile Nav Panel ── */

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(30, 58, 30, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--off-white);
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--sage-muted);
}

.mobile-nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--off-white);
  padding: 0.5rem;
}

.mobile-nav__close svg {
  width: 28px;
  height: 28px;
}

/* ── Footer ── */

.footer {
  background: var(--forest);
  color: var(--sage-muted);
  padding: 3rem 0 3.5rem;
  padding-bottom: calc(3.5rem + env(safe-area-inset-bottom));
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer__logo {
  height: 80px;
  opacity: 0.8;
}

.footer__location {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
}

.footer__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer__links a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--off-white);
}

.footer__copy {
  font-size: 0.78rem;
  color: rgb(168, 191, 168);
  margin-top: 0.85rem;
}

/* ── Scroll Animations ── */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--deep-green);
  transition: gap 0.3s ease;
}

.read-link:hover { gap: 0.7rem; }
.read-link svg { width: 16px; height: 16px; }

/* ═══════════════════════════════════════════════
   HOME PAGE
   ═══════════════════════════════════════════════ */

/* ── Botanical Divider ── */

.botanical-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
}

.botanical-divider__line {
  width: 60px;
  height: 1px;
  background: var(--sage-muted);
}

.botanical-divider__leaf {
  width: 24px;
  height: 24px;
  color: var(--sage);
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

body.home .hero {
  margin-top: calc(-1 * var(--nav-home-overlap));
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--off-white);
  padding: 2rem;
}

.hero__logo-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10rem;
}

.hero__logo-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(440px, 62vw, 760px);
  height: clamp(260px, 38vw, 460px);
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse farthest-side at center,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.hero__logo {
  position: relative;
  z-index: 1;
  width: clamp(180px, 28vw, 300px);
  margin: 0;
  animation: heroLogoIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
}

@keyframes heroLogoIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
  animation: heroTextIn 1s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
  background: #000;
  display: inline-block;
  padding: 0.4em 0.8em;
  font-style: italic;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  font-weight: 400;
  opacity: 0;
  animation: heroTextIn 1s 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 14px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.45);
}

@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: scrollFadeIn 1s 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
             scrollBounce 2.5s 2s ease-in-out infinite;
  opacity: 0;
}

@keyframes scrollFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.hero__scroll svg {
  width: 32px;
  height: 32px;
  color: #fff;
  background: #000;
  border-radius: 50%;
  padding: 10px;
  box-sizing: content-box;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Welcome / About ── */

.welcome {
  padding: var(--section-padding) 0;
  background: var(--cream);
}

.welcome__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.welcome__text h2 {
  color: var(--deep-green);
  margin-bottom: 1.5rem;
}

.welcome__text p {
  color: var(--warm-brown);
  margin-bottom: 1.2rem;
}

.welcome__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--sage);
  border-left: 2px solid var(--sage-muted);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.5;
}

.welcome__image-frame {
  position: relative;
}

.welcome__image-frame img {
  border-radius: 200px 200px 20px 20px;
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 20%;
}

.welcome__image-frame::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  bottom: 12px;
  left: 12px;
  border: 1px solid var(--sage-muted);
  border-radius: 200px 200px 20px 20px;
  z-index: -1;
}

/* ── Garden Details Band ── */

.details-band {
  background: var(--deep-green);
  color: var(--off-white);
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}

.details-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(107, 143, 107, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(107, 143, 107, 0.1) 0%, transparent 60%);
}

.details-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  position: relative;
}

.details-band__item { padding: 1rem; }

.details-band__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-muted);
  margin-bottom: 0.5rem;
}

.details-band__value {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  line-height: normal;
}

.details-band__note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--sage-muted);
  margin-top: 0.3rem;
}

/* ── Signature Plants ── */

.plants {
  padding: var(--section-padding) 0;
  background: var(--cream);
}

.plants__header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.plants__header h2 { color: var(--deep-green); }

.plants__header p {
  color: var(--warm-brown);
  max-width: 520px;
  margin: 1rem auto 0;
}

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

.plant-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: clamp(1.8rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease;
  border: 1px solid rgba(107, 143, 107, 0.1);
}

.plant-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(47, 79, 47, 0.08);
}

.plant-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
}

.plant-card__icon--dahlia { background: var(--blush); }
.plant-card__icon--sweetpea { background: var(--lavender-light); }
.plant-card__icon--rose { background: #FDE8E0; }
.plant-card__icon--tulip { background: #FFF0E6; }
.plant-card__icon--bulbs { background: #E8EAF6; }
.plant-card__icon--anemone { background: var(--sage-light); }

.plant-card h3 {
  color: var(--deep-green);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.plant-card p {
  color: var(--warm-brown);
  font-size: 0.9rem;
  line-height: 1.6;
}

.plant-card__varieties {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--sage);
  line-height: 1.5;
}

.plant-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
}

.plant-card--dahlia::after { background: var(--rose); }
.plant-card--sweetpea::after { background: var(--lavender); }
.plant-card--rose::after { background: var(--terracotta); }
.plant-card--tulip::after { background: #E8A87C; }
.plant-card--bulbs::after { background: #7986CB; }
.plant-card--anemone::after { background: var(--sage); }

/* ── Photo Break ── */

.photo-break {
  position: relative;
  height: clamp(300px, 45vw, 500px);
  overflow: hidden;
}

.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.photo-break__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(250, 247, 242, 0.22) 0%, rgba(250, 247, 242, 0.08) 8%, rgba(250, 247, 242, 0) 18%),
    linear-gradient(to top, rgba(250, 247, 242, 0.18) 0%, rgba(250, 247, 242, 0.06) 7%, rgba(250, 247, 242, 0) 16%),
    linear-gradient(to bottom, rgba(20, 40, 20, 0) 45%, rgba(20, 40, 20, 0.38) 100%);
}

.reveal-quote {
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.reveal-quote.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.photo-break__quote {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.4);
  max-width: 620px;
  padding: 0 2rem;
  line-height: 1.4;
}

/* ── Guides / Content ── */

.guides {
  padding: var(--section-padding) 0;
  background: var(--sage-light);
}

.guides__intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.guides__header {
  max-width: 620px;
}

.guides__header h2 { color: var(--deep-green); }

.guides__header p {
  color: var(--warm-brown);
  max-width: 480px;
  margin: 1rem 0 0;
}

.guides__cta {
  flex-shrink: 0;
}

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

.guide-card {
  display: block;
  background: var(--off-white);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease;
  border: 1px solid rgba(107, 143, 107, 0.08);
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(47, 79, 47, 0.08);
}

.guide-card__image {
  height: 150px;
  overflow: hidden;
  position: relative;
}

.guide-card__image-gradient {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-card__image-gradient svg {
  width: clamp(88px, 8vw, 112px);
  height: clamp(88px, 8vw, 112px);
  opacity: 0.5;
}

.guide-card__body { padding: clamp(1.5rem, 2.5vw, 2rem); }

.guide-card__category {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
}

.guide-card h3 {
  color: var(--deep-green);
  font-weight: 500;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.guide-card p {
  color: var(--warm-brown);
  font-size: 0.88rem;
  line-height: 1.6;
}

.guide-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--sage);
  font-weight: 500;
  transition: gap 0.3s ease;
}

.guide-card:hover .guide-card__link { gap: 0.7rem; }

.guide-card__image--sweetpeas {
  background: linear-gradient(135deg, #E5DFE9 0%, #F5E0E3 50%, #E8EDE4 100%);
}
.guide-card__image--roses {
  background: linear-gradient(135deg, #FDE8E0 0%, #F5E0E3 50%, #FFF0E6 100%);
}
.guide-card__image--seeds {
  background: linear-gradient(135deg, #E8EDE4 0%, #D5E0D5 50%, #E8EAF6 100%);
}
.guide-card__image--dahlia {
  background: linear-gradient(135deg, #FDE8E0 0%, #F5E0E3 60%, #E8EDE4 100%);
}
.guide-card__image--bulb-pot {
  background: linear-gradient(135deg, #E5DFE9 0%, #EDE8F0 50%, #F5E0E3 100%);
}
.guide-card__image--seed-tray {
  background: linear-gradient(135deg, #E8EDE4 0%, #DEE8D8 50%, #E8EAF0 100%);
}
.guide-card__image--ranunculus {
  background: linear-gradient(135deg, #FFF0E6 0%, #FDE8E0 50%, #F5E0E3 100%);
}
.guide-card__image--border {
  background: linear-gradient(135deg, #E8EDE4 0%, #E0E8DA 40%, #E5DFE9 100%);
}

/* ── Featured (Magazine) ── */

.journal-preview {
  padding: var(--section-padding) 0;
  background: var(--cream);
}

.journal-preview__intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.journal-preview__copy {
  max-width: 620px;
}

.journal-preview__copy h2 {
  color: var(--deep-green);
}

.journal-preview__copy p:last-child {
  color: var(--warm-brown);
  margin-top: 1rem;
}

.journal-preview__cta {
  flex-shrink: 0;
}

.journal-preview__grid {
  padding-bottom: 0;
}

.featured {
  padding: var(--section-padding) 0;
  background: var(--cream-dark);
  border-top: 1px solid rgba(107, 143, 107, 0.08);
}

.featured__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.featured__text .section-label { color: var(--rose); }
.featured__text h2 { color: var(--deep-green); margin-bottom: 1rem; }
.featured__text p { color: var(--warm-brown); margin-bottom: 1rem; }

.featured__magazine { position: relative; padding: 2rem; }

.featured__magazine-bg {
  position: absolute;
  inset: 0;
  background: var(--off-white);
  border: 1px solid rgba(107, 143, 107, 0.16);
  border-radius: 24px;
  transform: rotate(-2deg);
  box-shadow: 0 18px 44px rgba(47, 79, 47, 0.08);
}

.featured__magazine-quote {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  color: var(--deep-green);
  text-align: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.4;
}

.featured__magazine-quote cite {
  display: block;
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-top: 1.5rem;
  text-transform: uppercase;
}

/* ── Newsletter / Connect ── */

.connect {
  padding: var(--section-padding) 0;
  background: var(--deep-green);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.connect::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 80%, rgba(107, 143, 107, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 20%, rgba(155, 137, 168, 0.1) 0%, transparent 50%);
}

.connect__inner { position: relative; text-align: center; }
.connect h2 { margin-bottom: 1rem; }

.connect__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--sage-muted);
  margin-bottom: 2.5rem;
}

.connect__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  row-gap: 0.85rem;
  max-width: 480px;
  margin: 0 auto 3rem;
}

.connect__input {
  flex: 1;
  min-width: 0;
  padding: 1rem 1.4rem;
  border: 1px solid rgba(168, 191, 168, 0.3);
  border-right: none;
  border-radius: 8px 0 0 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.connect__input::placeholder { color: var(--sage-muted); }

.connect__input:focus {
  border-color: var(--sage-muted);
  background: rgba(255, 255, 255, 0.12);
}

.connect__button {
  padding: 1rem 2rem;
  background: var(--sage);
  color: var(--off-white);
  border-radius: 0 8px 8px 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.connect__button:hover { background: var(--sage-muted); }

.newsletter-notice {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: left;
  text-wrap: pretty;
}

.connect__form .newsletter-notice {
  flex: 0 0 100%;
}

.newsletter-notice:focus {
  outline: 2px solid rgba(168, 191, 168, 0.8);
  outline-offset: 3px;
}

.newsletter-notice--success {
  background: rgba(245, 241, 232, 0.96);
  border-color: rgba(168, 191, 168, 0.45);
  color: var(--deep-green);
}

.newsletter-notice--error {
  background: rgba(248, 232, 235, 0.98);
  border-color: rgba(162, 73, 89, 0.35);
  color: #5d2430;
}

.connect__social {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.connect__social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--sage-muted);
  transition: color 0.3s ease;
}

.connect__social-link:hover { color: var(--off-white); }
.connect__social-link svg { width: 20px; height: 20px; }

.connect-page__body {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.connect-page__body p {
  color: var(--warm-brown);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.connect-page__body p:first-of-type::first-letter {
  float: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  padding: 0;
  color: inherit;
  font-weight: inherit;
}

.contact-page {
  padding: 0 0 clamp(4rem, 8vw, 7rem);
}

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.contact-page__methods,
.contact-page__newsletter {
  background: var(--off-white);
  border: 1px solid rgba(107, 143, 107, 0.1);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 18px 50px rgba(47, 79, 47, 0.06);
}

.contact-page__methods h2,
.contact-page__newsletter h2 {
  color: var(--deep-green);
  margin-bottom: 0.8rem;
}

.contact-page__intro,
.contact-page__newsletter-copy {
  color: var(--warm-brown);
  font-size: 1rem;
  line-height: 1.75;
}

.contact-page__method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-page__method {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.4rem 1.25rem;
  align-items: start;
  padding: 1.4rem;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(243, 237, 228, 0.75) 0%, rgba(253, 252, 249, 1) 100%);
  border: 1px solid rgba(107, 143, 107, 0.12);
  color: var(--deep-green);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact-page__method:hover {
  transform: translateY(-4px);
  border-color: rgba(107, 143, 107, 0.22);
  box-shadow: 0 16px 38px rgba(47, 79, 47, 0.08);
}

.contact-page__method-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(107, 143, 107, 0.12);
  color: var(--deep-green);
  margin-top: 0.15rem;
  grid-column: 1;
  grid-row: 1 / span 3;
}

.contact-page__method-icon svg {
  width: 24px;
  height: 24px;
}

.contact-page__method-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  grid-column: 2;
}

.contact-page__method-value {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--deep-green);
  grid-column: 2;
  overflow-wrap: anywhere;
}

.contact-page__method-meta {
  color: var(--warm-brown);
  font-size: 0.95rem;
  line-height: 1.65;
  grid-column: 2;
}

.contact-page__form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.contact-page__input {
  width: 100%;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(107, 143, 107, 0.22);
  border-radius: 10px;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.contact-page__input::placeholder {
  color: rgba(92, 74, 58, 0.6);
}

.contact-page__input:focus {
  border-color: rgba(107, 143, 107, 0.45);
  box-shadow: 0 0 0 4px rgba(107, 143, 107, 0.1);
  background: #fff;
}

.contact-page__button {
  width: 100%;
  padding: 1rem 1.4rem;
  border-radius: 10px;
  background: var(--deep-green);
  color: var(--off-white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-page__button:hover {
  background: var(--sage);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════
   BLOG INDEX PAGE
   ═══════════════════════════════════════════════ */

.page-header {
  padding: var(--page-top-spacing) 0 3rem;
  background: var(--cream);
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--deep-green);
  margin-bottom: 0.5rem;
}

.page-header p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--warm-brown);
  max-width: 500px;
  margin: 0 auto;
}

.category-filter {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0 1rem 3rem;
}

.category-filter a,
.category-filter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  padding: 0.4em 1em;
  border-radius: 3px;
  color: var(--warm-brown);
  border: 1px solid rgba(107, 143, 107, 0.2);
  transition: all 0.3s ease;
}

.category-filter a {
  background: transparent;
}

.category-filter a[aria-current="page"] {
  pointer-events: none;
}

.category-filter a:hover,
.category-filter a.active,
.category-filter button:hover,
.category-filter button.active {
  background: var(--deep-green);
  color: #fff;
  border-color: var(--deep-green);
}

.featured-post {
  display: block;
  margin-bottom: 3rem;
}

.featured-post__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  background: var(--off-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(107, 143, 107, 0.08);
  transition: box-shadow 0.4s ease;
}

.featured-post__inner:hover {
  box-shadow: 0 12px 40px rgba(47, 79, 47, 0.08);
}

.featured-post__image {
  height: 100%;
  min-height: 360px;
  overflow: hidden;
}

.featured-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-post__inner:hover .featured-post__image img {
  transform: scale(1.03);
}

.featured-post__body { padding: clamp(2rem, 3vw, 3rem); }

.featured-post__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: var(--rose);
  padding: 0.3em 0.8em;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.featured-post__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--deep-green);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.featured-post__meta {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--sage);
  margin-bottom: 1rem;
}

.featured-post__excerpt {
  color: var(--warm-brown);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.archive-layout--no-pagination {
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.post-card {
  background: var(--off-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(107, 143, 107, 0.08);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(47, 79, 47, 0.08);
}

.post-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.post-card__image--soft-sage {
  background: linear-gradient(135deg, #E8EDE4 0%, #D5E0D5 50%, #E8EAF6 100%);
}

.post-card__image--spring-blush {
  background: linear-gradient(135deg, #E8EDE4 0%, #F5E0E3 50%, #FFF0E6 100%);
}

.post-card__image--lavender-mist {
  background: linear-gradient(135deg, #E5DFE9 0%, #F5E0E3 50%, #E8EDE4 100%);
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card-image--fallback img {
  filter: grayscale(0.08) saturate(0.72) brightness(0.66);
  transform: scale(1.08);
}

.card-image--fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.card-image--fallback--seasonal-updates::after {
  background: linear-gradient(145deg, rgba(47, 79, 47, 0.34), rgba(75, 99, 71, 0.64));
}

.card-image--fallback--growing-planting::after {
  background: linear-gradient(145deg, rgba(42, 64, 39, 0.3), rgba(107, 143, 107, 0.68));
}

.card-image--fallback--garden-projects::after {
  background: linear-gradient(145deg, rgba(98, 68, 48, 0.28), rgba(196, 131, 93, 0.66));
}

.card-image--fallback--garden-life::after {
  background: linear-gradient(145deg, rgba(78, 57, 89, 0.28), rgba(196, 114, 126, 0.66));
}

.card-fallback__label {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 78%;
  margin: auto;
  padding: 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--off-white);
  text-shadow: 0 4px 24px rgba(30, 24, 18, 0.35);
  pointer-events: none;
}

.card-fallback__label--related {
  max-width: 82%;
  font-size: clamp(1rem, 1.9vw, 1.35rem);
}

.media-crop--top-15 { object-position: center 15%; }
.media-crop--top-20 { object-position: center 20%; }
.media-crop--top-60 { object-position: center 60%; }
.media-crop--top-75 { object-position: center 75%; }
.media-crop--right-center { object-position: right center; }

.post-card:hover .post-card__image img {
  transform: scale(1.05);
}

.post-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-card__body { padding: clamp(1.3rem, 2vw, 1.8rem); }

.post-card__category {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.post-card__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 500;
  color: var(--deep-green);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.post-card__date {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sage);
  margin-bottom: 0.6rem;
}

.post-card__excerpt {
  color: var(--warm-brown);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.pagination {
  padding: 2rem 0 clamp(4rem, 8vw, 8rem);
}

.pagination .page-numbers {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.pagination li {
  list-style: none;
}

.pagination a,
.pagination span {
  font-family: var(--font-display);
  font-size: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.pagination a {
  color: var(--warm-brown);
  border: 1px solid rgba(107, 143, 107, 0.2);
}

.pagination a:hover,
.pagination a:focus-visible {
  background: var(--sage-light);
}

.pagination span.current {
  background: var(--deep-green);
  color: #fff;
}

.page-content {
  padding: var(--page-top-spacing) 0 clamp(4rem, 8vw, 7rem);
}

.page-content__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.page-content__header h1 {
  color: var(--deep-green);
  margin-bottom: 0.75rem;
}

.page-content__intro {
  color: var(--warm-brown);
}

.page-content__body {
  padding-bottom: 0;
}

.page-content__body p:first-of-type::first-letter {
  float: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  padding: 0;
  color: inherit;
  font-weight: inherit;
}

.page-summary {
  padding: 0 0 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(107, 143, 107, 0.15);
}

.page-summary:last-of-type {
  margin-bottom: 3rem;
}

.page-summary__title {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  margin-bottom: 0.35rem;
}

.page-summary__title a {
  color: var(--deep-green);
}

.page-summary__meta {
  font-family: var(--font-display);
  color: var(--sage);
  margin-bottom: 0.9rem;
}

.page-summary__excerpt p:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════
   POST PAGE
   ═══════════════════════════════════════════════ */

.article-header {
  padding: var(--page-top-spacing) 0 0;
  max-width: var(--article-width);
  margin: 0 auto;
  padding-left: clamp(1.5rem, 4vw, 3rem);
  padding-right: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.article-header__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--sage);
  margin-bottom: 2rem;
  transition: gap 0.3s ease;
}

.article-header__back:hover { gap: 0.7rem; }
.article-header__back svg { width: 16px; height: 16px; }

.article-header__category {
  display: block;
  width: fit-content;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: var(--rose);
  padding: 0.3em 0.8em;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: var(--deep-green);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.article-header__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--sage);
}

.article-header__author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.article-header__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.guide-hero {
  max-width: var(--article-width);
  margin: 0 auto 2.5rem;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.guide-hero__inner {
  height: clamp(140px, 20vw, 180px);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-hero__inner svg {
  width: clamp(120px, 15vw, 150px);
  height: clamp(120px, 15vw, 150px);
  opacity: 0.55;
}

.article-body {
  max-width: var(--article-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
}

.article-body .article-hero {
  width: clamp(14rem, 31vw, 18rem);
  margin: 0 clamp(-4.5rem, calc((100vw - var(--article-width)) * -0.12), -1rem) 1.75rem 2rem;
  float: right;
}

.article-body .article-hero img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  border-radius: 18px;
}

.article-lede::after {
  content: "";
  display: block;
  clear: both;
}

.article-body p {
  color: var(--charcoal);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.article-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.8em;
  float: left;
  line-height: 0.8;
  padding-right: 0.12em;
  padding-top: 0.06em;
  color: var(--deep-green);
  font-weight: 500;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--deep-green);
  margin: 2.5rem 0 1rem;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--deep-green);
  margin: 2rem 0 0.8rem;
}

.article-body ul, .article-body ol {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--charcoal);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.85;
}

.article-body li { margin-bottom: 0.4rem; }

.article-body blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--sage);
  border-left: 3px solid var(--sage);
  padding: 1rem 0 1rem 2rem;
  margin: 2.5rem 0;
  line-height: 1.5;
}

.article-body blockquote p:first-of-type::first-letter,
.article-body .tip-box p:first-of-type::first-letter,
.article-body .is-style-tip-box p:first-of-type::first-letter {
  float: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  padding: 0;
  color: inherit;
  font-weight: inherit;
}

.article-body blockquote p {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  color: inherit;
  line-height: inherit;
  margin-bottom: 0;
}

.article-body figure { margin: 2.5rem -3rem; }
.article-body figure img { width: 100%; border-radius: 8px; }

.article-body figure.focus-top img { object-position: center 20%; }
.article-body figure.focus-bottom img { object-position: center 80%; }
.article-body figure.focus-left img { object-position: 20% center; }
.article-body figure.focus-right img { object-position: 80% center; }

.article-body figcaption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--sage);
  text-align: center;
  margin-top: 0.8rem;
}

.article-body .tip-box,
.article-body .is-style-tip-box {
  background: var(--sage-light);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.article-body .tip-box__label,
.article-body .is-style-tip-box .tip-box__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--deep-green);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.article-body .tip-box p,
.article-body .is-style-tip-box p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.article-tags {
  max-width: var(--article-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem) 2rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.article-tags a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  padding: 0.3em 0.8em;
  border-radius: 3px;
  border: 1px solid rgba(107, 143, 107, 0.2);
  color: var(--sage);
  transition: all 0.3s ease;
}

.article-tags a:hover {
  background: var(--deep-green);
  color: #fff;
  border-color: var(--deep-green);
}

.article-divider {
  max-width: var(--article-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.article-divider hr {
  border: none;
  border-top: 1px solid rgba(107, 143, 107, 0.15);
  margin: 1rem 0 3rem;
}

.author-box {
  max-width: var(--article-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem) 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.author-box__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-box__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--deep-green);
  margin-bottom: 0.2rem;
}

.author-box__bio {
  font-size: 0.88rem;
  color: var(--warm-brown);
  line-height: 1.6;
}

.related {
  background: var(--sage-light);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.related__header {
  text-align: center;
  margin-bottom: 2rem;
}

.related__header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--deep-green);
}

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

.related-card {
  background: var(--off-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(107, 143, 107, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(47, 79, 47, 0.08);
}

.related-card__image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.related-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.related-card:hover .card-image--fallback img {
  transform: scale(1.12);
}

.related-card__body { padding: 1.2rem 1.5rem; }

.related-card__category {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.4rem;
}

.related-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--deep-green);
  line-height: 1.3;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 900px) {
  .welcome__grid { grid-template-columns: 1fr; gap: 3rem; }
  .welcome__image-frame { max-width: 400px; margin: 0 auto; order: -1; }
  .plants__grid { grid-template-columns: repeat(2, 1fr); }
  .guides__grid { grid-template-columns: repeat(2, 1fr); }
  .guides__intro { align-items: start; flex-direction: column; }
  .guides--home .guides__grid .guide-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
  .journal-preview__intro { align-items: start; flex-direction: column; }
  .featured__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .details-band__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page__grid { grid-template-columns: 1fr; }
  .featured-post__inner { grid-template-columns: 1fr; }
  .featured-post__image { min-height: 250px; }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .related__grid { grid-template-columns: repeat(2, 1fr); }
  .related__grid .related-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
  .article-body .article-hero {
    width: clamp(13rem, 34vw, 16rem);
    margin-right: -0.75rem;
    margin-left: 1.5rem;
  }
  .article-body figure { margin-left: 0; margin-right: 0; }
}

@media (max-width: 640px) {
  body.admin-bar .nav {
    top: 46px;
  }

  .nav--static:not(.scrolled) .nav__logo { height: 68px; }
  .nav.scrolled .nav__logo,
  .nav--static.scrolled .nav__logo { height: 52px; }

  .nav__links { display: none; }
  .nav__mobile-toggle { display: flex; }
  .plants__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .guides__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .guides--home .guides__grid .guide-card:last-child { max-width: 100%; }
  .journal-preview__grid { max-width: 450px; margin: 0 auto; }
  .details-band__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .contact-page__methods,
  .contact-page__newsletter { padding: 1.5rem; }
  .connect__form { flex-direction: column; }
  .connect__input { border-right: 1px solid rgba(168, 191, 168, 0.3); border-radius: 8px; }
  .connect__button { border-radius: 8px; }
  .connect__social { flex-direction: column; align-items: center; gap: 1rem; }
  .footer { padding-bottom: calc(4.25rem + env(safe-area-inset-bottom)); }
  .footer__links { flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem; }
  .post-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
  .related__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .related__grid .related-card:last-child { max-width: 100%; }
  .article-body .article-hero {
    width: min(100%, 22rem);
    float: none;
    margin: 0 auto 1.5rem;
  }
  .author-box { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
