/* OBD Tree Farm — Main Stylesheet */

:root {
  --forest:  #1E3A2F;
  --forest2: #162B23;
  --moss:    #3D6B52;
  --sage:    #6B9E7E;
  --mist:    #EAF2EC;
  --cream:   #F7F3EE;
  --warm:    #F0EAE0;
  --amber:   #C17D3C;
  --amber2:  #D4943F;
  --gold:    #C9A84C;
  --text:    #1A2420;
  --text2:   #3D5245;
  --text3:   #7A9585;
  --border:  rgba(30,58,47,0.12);
  --white:   #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .2s; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.1;
  color: var(--forest);
}
h1 { font-size: clamp(40px, 5vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 54px); }
h3 { font-size: clamp(24px, 3vw, 36px); }
h4 { font-size: 22px; }
p  { font-weight: 300; line-height: 1.75; color: var(--text2); }

em { font-style: italic; color: var(--moss); }

/* ── NAVIGATION ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 128px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .4s, box-shadow .4s;
}
.site-header-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.scrolled {
  background: rgba(22,43,35,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.site-logo img { height: 108px; width: auto; }

.primary-nav { display: flex; align-items: center; gap: 36px; list-style: none; }
.primary-nav a {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.primary-nav a:hover { color: var(--gold); }
.primary-nav .nav-cta {
  background: var(--amber);
  color: white !important;
  padding: 14px 32px;
  border-radius: 2px;
  letter-spacing: .1em;
}
.primary-nav .nav-cta:hover { background: var(--amber2); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: white; transition: transform .3s, opacity .3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: #0F1F18;
  padding: 24px 32px 32px;
  flex-direction: column;
  z-index: 999;
  border-top: 2px solid rgba(201,168,76,.4);
  box-shadow: 0 12px 40px rgba(0,0,0,.8);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav a:last-child {
  border-bottom: none;
  margin-top: 12px;
  background: var(--amber);
  color: white;
  text-align: center;
  padding: 16px;
  border-radius: 2px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--amber2); transform: translateY(-1px); color: white; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,.45);
  transition: border-color .2s, background .2s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,.1); color: white; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--forest);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  border: 2px solid var(--forest);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.btn-outline:hover { background: var(--forest); color: white; }

/* ── SECTION COMMONS ── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: block;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--forest);
  margin-bottom: 20px;
}
.section-heading em { font-style: italic; color: var(--moss); }
.section-heading.light { color: white; }
.section-heading.light em { color: var(--gold); }
.section-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text2);
  max-width: 560px;
}
.section-body.light { color: rgba(255,255,255,.7); }

/* ── HERO ── */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,28,22,.6) 0%, rgba(15,28,22,.42) 50%, rgba(15,28,22,.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .8s ease .3s forwards;
}
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: white;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .8s ease .5s forwards;
}
.hero-content h1 em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 300;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp .8s ease .7s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s ease .9s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp .8s ease 1.2s forwards;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,28,22,.65);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  color: white;
  line-height: 1.05;
  margin-bottom: 16px;
}
.page-hero-content h1 em { color: var(--gold); }
.page-hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto;
}
.page-breadcrumb {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.page-breadcrumb a { color: var(--gold); }

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--forest);
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.intro-strip-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,.85);
  max-width: 640px;
  line-height: 1.4;
}
.intro-strip-text strong { font-style: normal; font-weight: 600; color: var(--gold); }
.intro-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage);
  border: 1px solid rgba(107,158,126,.4);
  padding: 10px 20px;
  border-radius: 2px;
  white-space: nowrap;
}

/* ── ABOUT SPLIT ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-split-image { overflow: hidden; }
.about-split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.about-split-image:hover img { transform: scale(1.03); }
.about-split-content {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--warm);
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text3);
}

/* ── CATEGORY CARDS ── */
.categories-section {
  background: var(--forest2);
  padding: 100px 60px;
}
.categories-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.cat-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  cursor: pointer;
  text-decoration: none;
}
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s ease;
}
.cat-card:hover img { transform: scale(1.07); }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,18,.9) 0%, rgba(10,25,18,.2) 60%, transparent 100%);
}
.cat-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 20px;
}
.cat-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: white;
  line-height: 1.15;
  margin-bottom: 12px;
}
.cat-arrow {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }
.cat-arrow svg { width: 14px; height: 14px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── WHY CARDS ── */
.why-section { background: var(--cream); padding: 100px 60px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.why-card {
  padding: 40px;
  background: white;
  border-top: 3px solid var(--moss);
  position: relative;
}
.why-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
}
.why-icon {
  width: 48px; height: 48px;
  background: var(--mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--moss); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 14px;
}
.why-text { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--text2); }

/* ── PARALLAX ── */
.parallax-section {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-bg {
  position: absolute;
  inset: -80px 0;
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}
.parallax-overlay { position: absolute; inset: 0; background: rgba(15,28,22,.65); }
.parallax-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.parallax-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 300; color: white; line-height: 1.1; margin-bottom: 20px;
}
.parallax-content h2 em { font-style: italic; color: var(--gold); }
.parallax-content p { font-size: 16px; color: rgba(255,255,255,.7); font-weight: 300; max-width: 520px; margin: 0 auto 32px; line-height: 1.6; }

/* ── VIDEO SECTION ── */
.video-section {
  background: var(--warm);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.video-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ── GALLERY ── */
.gallery-section { background: var(--forest); padding: 100px 60px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 48px;
}
.gallery-item { overflow: hidden; cursor: pointer; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s, filter .3s;
  aspect-ratio: 1;
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1.08); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.tall img { aspect-ratio: unset; height: 100%; }

/* ── SERVICE AREA ── */
.area-section { background: var(--warm); padding: 100px 60px; text-align: center; }
.states-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 40px 0 24px;
}
.state-pill {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 10px;
}
.state-pill .dot { width: 8px; height: 8px; background: var(--moss); border-radius: 50%; flex-shrink: 0; }
.area-note { font-size: 13px; color: var(--text3); font-style: italic; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--forest);
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.02); }
.cta-section::after  { content: ''; position: absolute; bottom: -120px; left: -80px;  width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,.015); }
.cta-label { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; position: relative; z-index: 1; display: block; }
.cta-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 64px); font-weight: 300; color: white; line-height: 1.1; margin-bottom: 20px; position: relative; z-index: 1; }
.cta-heading em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: 16px; color: rgba(255,255,255,.6); font-weight: 300; max-width: 480px; margin: 0 auto 48px; line-height: 1.6; position: relative; z-index: 1; }
.cta-form { display: flex; max-width: 480px; margin: 0 auto 16px; position: relative; z-index: 1; }
.cta-input {
  flex: 1; min-width: 0;
  padding: 16px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-right: none;
  color: white; outline: none;
  border-radius: 2px 0 0 2px;
}
.cta-input::placeholder { color: rgba(255,255,255,.4); }
.cta-input:focus { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.12); }
.cta-btn {
  background: var(--amber); color: white; border: none;
  padding: 16px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; border-radius: 0 2px 2px 0;
  transition: background .2s; white-space: nowrap; flex-shrink: 0;
}
.cta-btn:hover { background: var(--amber2); }
.cta-note { font-size: 12px; color: rgba(255,255,255,.35); position: relative; z-index: 1; }

/* WPForms overrides */
.wpforms-container .wpforms-form input[type="text"],
.wpforms-container .wpforms-form input[type="email"],
.wpforms-container .wpforms-form input[type="tel"],
.wpforms-container .wpforms-form textarea,
.wpforms-container .wpforms-form select {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  padding: 14px 18px !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 2px !important;
  background: white !important;
  color: var(--text) !important;
  width: 100% !important;
  transition: border-color .2s !important;
}
.wpforms-container .wpforms-form input:focus,
.wpforms-container .wpforms-form textarea:focus {
  border-color: var(--moss) !important;
  outline: none !important;
  box-shadow: none !important;
}
.wpforms-container .wpforms-form .wpforms-submit {
  background: var(--amber) !important;
  color: white !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  padding: 16px 40px !important;
  border-radius: 2px !important;
  border: none !important;
  cursor: pointer !important;
  transition: background .2s !important;
}
.wpforms-container .wpforms-form .wpforms-submit:hover { background: var(--amber2) !important; }
.wpforms-container .wpforms-form label { font-size: 12px !important; font-weight: 600 !important; letter-spacing: .08em !important; text-transform: uppercase !important; color: var(--text2) !important; margin-bottom: 8px !important; }

/* ── FOOTER ── */
.site-footer { background: var(--forest2); padding: 64px 60px 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 36px;
}
.footer-logo img { height: 80px; margin-bottom: 20px; }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-style: italic; color: rgba(255,255,255,.5); line-height: 1.5; margin-bottom: 24px; max-width: 260px; }
.footer-contact { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.9; }
.footer-contact a { color: rgba(255,255,255,.55); }
.footer-contact a:hover { color: var(--gold); }
.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); margin-bottom: 20px; display: block; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-wholesale { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); border: 1px solid rgba(193,125,60,.3); padding: 6px 14px; border-radius: 2px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

/* ── INNER PAGE CONTENT ── */
.page-content { padding: 80px 60px; max-width: 1200px; margin: 0 auto; }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 80px; align-items: start; }
.content-sidebar { position: sticky; top: 100px; }
.sidebar-card { background: white; padding: 36px; border-top: 3px solid var(--moss); margin-bottom: 24px; }
.sidebar-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--forest); margin-bottom: 16px; }
.sidebar-card p { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 16px; }
.contact-item { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.contact-item .label { font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--text3); }
.contact-item .value { font-size: 15px; font-weight: 500; color: var(--forest); }
.contact-item a { color: var(--moss); }
.contact-item a:hover { color: var(--amber); }

/* ── SPECIES/PRODUCT CARDS ── */
.species-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.species-card { position: relative; overflow: hidden; cursor: pointer; text-decoration: none; }
.species-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s; }
.species-card:hover img { transform: scale(1.05); }
.species-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,25,18,.85) 0%, transparent 60%); }
.species-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px; }
.species-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: white; margin-bottom: 6px; }
.species-desc { font-size: 13px; color: rgba(255,255,255,.7); font-weight: 300; }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .content-grid { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
}

@media (max-width: 768px) {
  .site-header { height: 80px; padding: 0 24px; }
  .site-logo img { height: 56px; }
  .primary-nav { display: none; }
  .nav-hamburger { display: flex; }

  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions a { width: 100%; max-width: 280px; text-align: center; }

  .intro-strip { padding: 24px; flex-direction: column; gap: 16px; }
  .intro-strip-text { font-size: 18px; }

  .about-split { grid-template-columns: 1fr; }
  .about-split-image { height: 300px; }
  .about-split-content { padding: 48px 24px; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 20px; }

  .categories-section { padding: 60px 24px; }
  .categories-header { flex-direction: column; align-items: flex-start; margin-bottom: 32px; }
  .categories-grid { grid-template-columns: 1fr 1fr; }

  .why-section { padding: 60px 24px; }
  .why-grid { grid-template-columns: 1fr; gap: 20px; }

  .parallax-bg { background-attachment: scroll; }
  .parallax-section { height: 380px; }

  .video-section { padding: 60px 24px; grid-template-columns: 1fr; gap: 40px; }

  .gallery-section { padding: 60px 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.tall img { aspect-ratio: 1; }

  .area-section { padding: 60px 24px; }
  .states-grid { gap: 10px; }
  .state-pill { padding: 10px 18px; font-size: 13px; }

  .cta-section { padding: 80px 24px; }
  .cta-form { flex-direction: column; }
  .cta-input { border-right: 1px solid rgba(255,255,255,.2); border-bottom: none; border-radius: 2px 2px 0 0; }
  .cta-btn { border-radius: 0 0 2px 2px; padding: 16px; }

  .site-footer { padding: 48px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

  .page-content { padding: 48px 24px; }
  .species-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .cat-card { aspect-ratio: 4/3; }
  .species-grid { grid-template-columns: 1fr; }
}

/* ── PRODUCT FORMS (Bare Root / B&B / Container) ── */
.forms-section { background: var(--cream); padding: 100px 60px; }
.forms-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.forms-header .section-label { display: block; text-align: center; }
.forms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.form-card {
  background: white;
  border-top: 3px solid var(--moss);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.form-icon {
  width: 56px; height: 56px;
  background: var(--mist);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.form-icon svg {
  width: 26px; height: 26px;
  fill: none; stroke: var(--moss);
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.form-tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 400;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 14px;
}
.form-desc {
  font-size: 15px; font-weight: 300;
  line-height: 1.7; color: var(--text2);
  margin-bottom: 24px;
  flex-grow: 1;
}
.form-avail {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--moss);
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.form-avail-dot { width: 8px; height: 8px; background: var(--moss); border-radius: 50%; flex-shrink: 0; }
.forms-cta { text-align: center; margin-top: 48px; }

@media (max-width: 768px) {
  .forms-section { padding: 60px 24px; }
  .forms-grid { grid-template-columns: 1fr; gap: 20px; }
  .forms-header { margin-bottom: 36px; }
  .form-card { padding: 32px 24px; }
  .forms-cta { margin-top: 32px; }
}

/* ── FOOTER DIVISION LINE ── */
.footer-division {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(255,255,255,.55);
  margin: 4px 0 14px;
}

/* ── LOGO WORDMARK FALLBACK (until custom logo is set in Customizer) ── */
.logo-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  letter-spacing: .01em;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.site-footer .logo-wordmark { font-size: 24px; }

/* ── Neutralize stale Customizer content:url() overrides that pointed at the dev site ── */
html body img[src*="Fruitpicture"],
html body img[src*="Coniferpicture_1"],
html body img[src*="1000009373_2"] { content: normal !important; }
html body .gallery-grid .gallery-item img { content: normal !important; }

/* ── HERO YOUTUBE BACKGROUND VIDEO (scaled to cover the hero) ── */
.hero-video-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero-video-yt {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw; height: 56.25vw;      /* 16:9 by width */
  min-width: 177.78vh; min-height: 100vh; /* 16:9 by height, guarantees full cover */
  border: 0;
  pointer-events: none;
}

/* ── HERO TEXT LEGIBILITY OVER VIDEO ── */
.hero-eyebrow,
.hero-content h1,
.hero-sub { text-shadow: 0 2px 18px rgba(0,0,0,.5), 0 1px 4px rgba(0,0,0,.55); }
.hero-content .btn-ghost { text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.hero-scroll span { text-shadow: 0 1px 6px rgba(0,0,0,.6); }

/* ── CATALOG PAGE (password gate) ── */
.catalog-lock-icon {
  width: 66px; height: 66px; margin: 0 auto 24px;
  background: var(--mist); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.catalog-lock-icon svg { width: 30px; height: 30px; }
.acp-pass-form {
  display: flex; gap: 12px; flex-wrap: wrap;
  max-width: 440px; margin: 0 auto; justify-content: center;
}
.acp-pass-form input[type="password"] {
  flex: 1 1 220px; padding: 15px 16px;
  border: 1px solid var(--border); border-radius: 2px;
  font-size: 15px; font-family: inherit; background: #fff;
}
.acp-pass-form input[type="password"]:focus { outline: none; border-color: var(--moss); }
.acp-pass-form button {
  background: var(--amber); color: #fff; border: 0;
  padding: 15px 30px; border-radius: 2px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; white-space: nowrap;
}
.acp-pass-form button:hover { opacity: .92; }
