/* Olivyra — Pure Valley LLC
   Palette: cream #faf7ef, olive #4a5d23 / #2f3d14, gold #c8a24a
   Type: Cormorant Garamond + Source Sans 3 */

:root {
  --cream: #faf7ef;
  --cream-deep: #f3eee3;
  --olive: #4a5d23;
  --olive-deep: #2f3d14;
  --gold: #c8a24a;
  --gold-soft: #d4b56a;
  --ink: #1c1c1c;
  --text: #3a3a32;
  --muted: #5c5c52;
  --white: #ffffff;
  --line: #e4dcc8;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--olive-deep); }

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* ===== Header (tight cream, large logo) ===== */
.site-header {
  background: var(--cream);
  padding: 0.85rem 0 0.35rem;
}

.brand {
  display: flex;
  justify-content: center;
  text-decoration: none;
}

.brand img {
  width: min(560px, 92vw);
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.75rem;
  list-style: none;
  padding: 0.85rem 1rem 1.1rem;
}

.site-nav a {
  font-family: var(--sans);
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--olive-deep);
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--olive-deep);
  border-bottom-color: var(--gold);
}

.nav-toggle {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--olive-deep);
  margin: 5px 0;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(180deg, #4a5d23 0%, #3a4c1c 48%, #2f3d14 100%);
  color: var(--white);
  text-align: center;
  padding: 3.75rem 1.25rem 3.5rem;
}

.hero-kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.15rem);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.hero-lead {
  max-width: 720px;
  margin: 0 auto 2.25rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  font-weight: 400;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
  max-width: 1040px;
  margin: 0 auto 2.25rem;
}

.stat {
  border: 1px solid rgba(200, 162, 74, 0.55);
  background: rgba(18, 28, 8, 0.22);
  padding: 1.05rem 0.7rem 1rem;
  min-height: 96px;
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.stat span {
  display: block;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.78rem 1.55rem;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-gold {
  background: var(--gold);
  color: var(--olive-deep);
  border: 1px solid var(--gold);
}

.btn-gold:hover { background: var(--gold-soft); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-olive {
  background: var(--olive-deep);
  color: var(--white);
  border: 1px solid var(--olive-deep);
  width: 100%;
}

.btn-olive:hover { background: var(--olive); }

/* ===== Sections ===== */
.section { padding: 4.5rem 0; }
.section-tight { padding: 4rem 0 4.5rem; }

.section-heading {
  text-align: center;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  margin-bottom: 0.85rem;
}

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.6rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ===== Sizes ===== */
.sizes-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.product-shot {
  background: var(--cream-deep);
  padding: 0.4rem;
}

.product-shot img {
  width: 100%;
  object-fit: cover;
}

.sizes-panel h3 {
  font-size: 2rem;
  margin-bottom: 0.35rem;
}

.size-list { list-style: none; }

.size-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.15rem;
}

.size-list .size { font-weight: 600; color: var(--olive-deep); }
.size-list .price { color: var(--muted); }

/* ===== Why / benefits ===== */
.why-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.callout {
  grid-column: 1 / -1;
  background: var(--white);
  border: 1px solid var(--gold);
  padding: 1.4rem 1.6rem;
  margin-bottom: 0.25rem;
}

.callout h3 {
  font-size: 1.45rem;
  color: var(--olive);
  margin-bottom: 0.4rem;
}

.callout p { color: var(--text); }

.tree-photo {
  display: flex;
  justify-content: center;
}

.tree-photo img {
  max-width: 340px;
  width: 100%;
}

.benefits { display: grid; gap: 1.35rem; }

.benefit h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.benefit p { color: var(--muted); font-size: 0.98rem; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-copy p { margin-bottom: 1.1rem; color: var(--muted); }

.contact-detail {
  margin-bottom: 1rem;
}

.contact-detail strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.15rem;
}

.contact-detail a {
  color: var(--olive-deep);
  text-decoration: none;
}

.contact-detail a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.75rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }

.form-group { margin-bottom: 0.95rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--olive-deep);
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}

.form-group textarea { min-height: 120px; resize: vertical; }

/* ===== Footer ===== */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 2.75rem 0 2rem;
  text-align: center;
}

.seal {
  width: 168px;
  height: auto;
  margin: 0 auto 1rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0.4rem 0 0.85rem;
}

.footer-nav a {
  text-decoration: none;
  color: var(--olive);
  font-size: 0.92rem;
}

.footer-nav a:hover { color: var(--gold); }

.site-footer p { color: var(--muted); font-size: 0.88rem; }

/* ===== Blog index ===== */
.page-hero {
  background: linear-gradient(180deg, #4a5d23 0%, #2f3d14 100%);
  color: var(--white);
  text-align: center;
  padding: 3.25rem 1.25rem 2.75rem;
}

.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 0.55rem; }
.page-hero p { color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem 1.45rem 1.35rem;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, transform 0.15s;
}

.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.blog-card time {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.blog-card h2 {
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
}

.blog-card p { color: var(--muted); font-size: 0.96rem; }

/* ===== Article ===== */
.article {
  width: min(760px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.article-kicker {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.article h1 { font-size: clamp(2rem, 4vw, 2.7rem); margin-bottom: 1.25rem; }
.article h2 { font-size: 1.55rem; color: var(--olive); margin: 2rem 0 0.7rem; }
.article h3 { font-size: 1.2rem; margin: 1.4rem 0 0.45rem; }
.article p { margin-bottom: 1rem; color: var(--muted); }
.article ul, .article ol { margin: 0 0 1rem 1.25rem; color: var(--muted); }
.article li { margin-bottom: 0.4rem; }
.article table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: 0.95rem; }
.article th, .article td { border: 1px solid var(--line); padding: 0.6rem 0.7rem; text-align: left; }
.article th { background: var(--cream-deep); color: var(--olive-deep); }
.article a { color: var(--olive); }
.article a:hover { color: var(--gold); }
.article hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

.back-link {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--olive);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.back-link:hover { color: var(--gold); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .stat:last-child { grid-column: 1 / -1; }
  .sizes-grid,
  .why-layout,
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .site-header { position: relative; padding-top: 0.6rem; }
  .brand img { width: min(420px, 86vw); }
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    flex-direction: column;
    gap: 1.1rem;
    padding-bottom: 1.25rem;
  }
  .site-nav.is-open { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 2.6rem 1rem 2.4rem; }
  .section { padding: 3.25rem 0; }
}
