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

:root {
  --rose: #E8B5B0;
  --clay: #A86846;
  --linen: #EADCCF;
  --sage: #7A9B5E;
  --coral: #C25347;
  --coral-shadow: rgba(140, 48, 40, 0.32);
  --chocolate: #3A2E2A;
  --paper: #FCEEEA;
  --white: #FFFDF9;
  --ink-soft: rgba(58, 46, 42, 0.72);
  --border: rgba(58, 46, 42, 0.16);
  --shadow: 0 18px 42px rgba(58, 46, 42, 0.14);
  --warm-shadow: 0 24px 60px rgba(92, 54, 35, 0.18);
  --max: 1180px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--chocolate);
  background:
    radial-gradient(circle at 14% 9%, rgba(232, 181, 176, 0.34), transparent 24rem),
    radial-gradient(circle at 86% 18%, rgba(122, 155, 94, 0.22), transparent 22rem),
    linear-gradient(90deg, rgba(168, 104, 70, 0.09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(168, 104, 70, 0.07) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, 42px 42px, 42px 42px, auto;
  line-height: 1.55;
}

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

svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.demo-banner {
  background: linear-gradient(90deg, var(--chocolate), #5a4038, var(--chocolate));
  color: var(--linen);
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 241, 232, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 72px;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 15rem;
}

.brand-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: drop-shadow(0 6px 10px rgba(58, 46, 42, 0.18));
}

.brand strong {
  display: block;
  font-family: "Cherry Bomb One", "Fraunces", Georgia, serif;
  font-size: 1.22rem;
  line-height: 1;
  color: var(--coral);
  text-shadow:
    1px 1px 0 var(--coral-shadow),
    -1px 1px 0 rgba(140, 48, 40, 0.18);
}

.brand small {
  color: var(--ink-soft);
  display: block;
  margin-top: 0.16rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
}

.nav-links a:hover {
  color: var(--chocolate);
  background: rgba(207, 163, 163, 0.26);
}

.nav-action,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 6px;
  padding: 0.78rem 1rem;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid transparent;
  min-height: 44px;
}

.nav-action {
  color: var(--white);
  background: var(--sage);
  box-shadow: 0 10px 24px rgba(111, 123, 91, 0.22);
  white-space: nowrap;
}

.vine-canopy {
  max-width: var(--max);
  height: 92px;
  margin: 0.2rem auto -1.8rem;
  padding-inline: 1.25rem;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
  overflow: hidden;
}

.vine-canopy span {
  position: relative;
  display: block;
  width: 4px;
  height: calc(44px + var(--drop, 18px));
  background: linear-gradient(var(--sage), transparent);
  border-radius: 999px;
  opacity: 0.85;
}

.vine-canopy span:nth-child(2) { --drop: 42px; }
.vine-canopy span:nth-child(3) { --drop: 24px; }
.vine-canopy span:nth-child(4) { --drop: 52px; }
.vine-canopy span:nth-child(5) { --drop: 30px; }

.vine-canopy span::before,
.vine-canopy span::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 12px;
  top: 14px;
  left: -15px;
  background: var(--sage);
  border-radius: 999px 0 999px 0;
  transform: rotate(-28deg);
  box-shadow:
    14px 18px 0 -2px rgba(111, 123, 91, 0.82),
    -6px 34px 0 -4px rgba(111, 123, 91, 0.72);
}

.vine-canopy span::after {
  left: 1px;
  top: 28px;
  transform: rotate(38deg);
  background: rgba(111, 123, 91, 0.82);
}

.status-strip {
  max-width: var(--max);
  margin: 0 auto 0;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(234, 220, 207, 0.88);
  border: 2px solid rgba(180, 139, 123, 0.26);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(58, 46, 42, 0.08);
}

.status-strip > div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.status-strip a {
  color: var(--sage);
  font-weight: 800;
  text-decoration: none;
}

.status-pill {
  color: var(--white);
  background: var(--sage);
  padding: 0.2rem 0.58rem;
  border-radius: 999px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.6rem 1.25rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(21rem, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-kicker,
.product-tag {
  margin: 0 0 0.55rem;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1, h2, h3, p { margin-top: 0; }

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.2rem;
  font-family: "Cherry Bomb One", "Fraunces", Georgia, serif;
  font-size: clamp(3rem, 7.4vw, 5.45rem);
  font-weight: 400;
  color: var(--clay);
  text-shadow:
    3px 3px 0 rgba(58, 46, 42, 0.23),
    -2px 2px 0 rgba(111, 123, 91, 0.38);
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--chocolate);
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.18rem;
}

.hero-lede {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.6rem 0;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--clay), #8b5d4f);
  border-color: rgba(58, 46, 42, 0.2);
  box-shadow: 0 12px 24px rgba(180, 139, 123, 0.22);
}

.btn-primary:hover { background: linear-gradient(135deg, #a87566, var(--chocolate)); }

.btn-secondary {
  color: var(--chocolate);
  background: var(--white);
  border-color: var(--clay);
  box-shadow: 0 10px 22px rgba(58, 46, 42, 0.07);
}

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

.trust-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.trust-row span {
  padding: 0.35rem 0.65rem;
  background: rgba(207, 163, 163, 0.28);
  border: 1px solid rgba(180, 139, 123, 0.35);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-art {
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.logo-hero {
  padding: 0;
  position: relative;
}

.logo-hero img {
  border-radius: 0;
  filter: drop-shadow(0 18px 32px rgba(140, 48, 40, 0.22));
}

.logo-hero figcaption {
  position: relative;
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  text-align: center;
  font-style: italic;
}

.crosslink,
.section,
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.crosslink {
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
  border-block: 2px solid rgba(180, 139, 123, 0.16);
  background: linear-gradient(90deg, rgba(234, 220, 207, 0.44), rgba(207, 163, 163, 0.14));
  max-width: none;
  padding-inline: max(1.25rem, calc((100vw - var(--max)) / 2 + 1.25rem));
}

.crosslink p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 1.8rem;
}

.section-heading p,
.order-panel p,
.contact-section p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.service-grid,
.product-grid,
.updates-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.product-card,
.updates-grid article,
.order-panel,
.steps > div,
.contact-section {
  background: rgba(255, 253, 249, 0.92);
  border: 2px solid rgba(180, 139, 123, 0.18);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(58, 46, 42, 0.08);
}

.service-card {
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -24px;
  width: 84px;
  height: 84px;
  background: var(--rose);
  border-radius: 999px;
  opacity: 0.14;
}

.service-card svg {
  width: 2rem;
  height: 2rem;
  color: var(--sage);
  margin-bottom: 1rem;
}

.service-card p,
.product-body p,
.updates-grid p,
.steps p {
  color: var(--ink-soft);
}

.shop-section {
  background:
    linear-gradient(180deg, rgba(207, 163, 163, 0.18), rgba(234, 220, 207, 0.32)),
    var(--paper);
  max-width: none;
}

.shop-section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  overflow: hidden;
}

.product-visual {
  min-height: 220px;
  position: relative;
  background:
    linear-gradient(135deg, rgba(234, 220, 207, 0.92), rgba(207, 163, 163, 0.38)),
    var(--linen);
  overflow: hidden;
}

.product-visual::before {
  box-shadow: inset 0 0 0 2px rgba(58, 46, 42, 0.06);
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.pen-set::before {
  width: 54px;
  height: 220px;
  left: 32%;
  top: -6px;
  background: #8a5a47;
  transform: rotate(24deg);
  box-shadow: 66px 12px 0 var(--rose), 132px 24px 0 var(--sage);
}

.pen-set::after {
  width: 72%;
  height: 36px;
  left: 14%;
  bottom: 34px;
  background: rgba(58, 46, 42, 0.13);
  border-radius: 8px;
}

.crochet-set::before {
  width: 150px;
  height: 150px;
  left: 50%;
  top: 28px;
  background: radial-gradient(circle at 50% 50%, transparent 0 34px, var(--rose) 36px 54px, transparent 56px 64px, var(--rose) 66px);
  transform: translateX(-50%);
  box-shadow: -86px 18px 0 -24px var(--clay), 86px 18px 0 -24px var(--sage);
}

.crochet-set::after {
  width: 190px;
  height: 8px;
  left: 80px;
  top: 126px;
  background: var(--chocolate);
  transform: rotate(-19deg);
}

.vinyl-set::before {
  width: 210px;
  height: 140px;
  left: 50%;
  top: 38px;
  background: var(--white);
  border: 8px solid var(--sage);
  border-radius: 8px;
  transform: translateX(-50%) rotate(-4deg);
}

.vinyl-set::after {
  width: 110px;
  height: 34px;
  left: 50%;
  top: 92px;
  background: var(--rose);
  border-radius: 6px;
  transform: translateX(-50%) rotate(-4deg);
  box-shadow: 0 48px 0 -8px var(--clay);
}

.product-body {
  padding: 1.25rem;
}

.product-body strong {
  color: var(--sage);
  font-size: 1.1rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
}

.order-panel,
.steps > div {
  padding: 1.35rem;
}

.order-panel {
  background:
    linear-gradient(160deg, rgba(207, 163, 163, 0.22), rgba(255, 253, 249, 0.94)),
    var(--white);
}

.steps {
  display: grid;
  gap: 1rem;
}

.steps span {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--sage);
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 0.8rem;
}

.updates-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.updates-grid article {
  padding: 1.25rem;
  border-top: 8px solid rgba(207, 163, 163, 0.42);
}

.updates-grid time {
  color: var(--clay);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(234, 220, 207, 0.92), rgba(255, 253, 249, 0.96)),
    var(--white);
}

.site-footer {
  color: rgba(234, 220, 207, 0.82);
  background:
    linear-gradient(180deg, rgba(58, 46, 42, 0.92), var(--chocolate));
  max-width: none;
  text-align: center;
}

.site-footer p {
  margin: 0.3rem auto;
  max-width: var(--max);
}

@media (max-width: 930px) {
  .vine-canopy {
    height: 72px;
    margin-bottom: -1.2rem;
  }

  .nav-shell {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 0.8rem;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero,
  .crosslink,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .product-grid,
  .updates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 640px) {
  .status-strip,
  .status-strip > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-grid,
  .product-grid,
  .updates-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  h1 {
    font-size: 2.62rem;
    text-shadow:
      2px 2px 0 rgba(58, 46, 42, 0.20),
      -1px 1px 0 rgba(111, 123, 91, 0.32);
  }

  .nav-action {
    width: 100%;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }
}

/* ============================================================
   Multi-page additions (2026-05-10)
   ============================================================ */

/* Active nav link (current page indicator) */
.nav-links a[aria-current="page"] {
  color: var(--coral);
  background: rgba(232, 181, 176, 0.30);
  box-shadow: inset 0 -2px 0 var(--coral);
}

/* Hero watermark — square logo as oversized faded backdrop */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -20% -10% auto;
  width: 720px;
  max-width: 80vw;
  background-image: url("../images/hen-house-watermark.webp");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
  filter: saturate(1.15);
}
.hero > * {
  position: relative;
  z-index: 1;
}

/* Sub-page hero — smaller than home hero, no logo art */
.page-hero {
  max-width: var(--max);
  margin: 2.4rem auto 0;
  padding: 3.4rem 1.25rem 2.4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: -25% auto auto -10%;
  width: 480px;
  max-width: 60vw;
  height: 480px;
  background-image: url("../images/hen-house-watermark.webp");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}
.page-hero > * {
  position: relative;
  z-index: 1;
}
.page-hero .section-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
}
.page-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.05;
  margin: 0 auto 1rem;
  max-width: 22ch;
  color: var(--chocolate);
  text-shadow:
    1px 1px 0 rgba(58, 46, 42, 0.10),
    -1px 1px 0 rgba(58, 46, 42, 0.08);
}
.page-hero p {
  margin: 0 auto;
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Explore grid — home page section linking to the four sub-pages */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
  margin-top: 1.4rem;
}
.explore-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.6rem 1.4rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--chocolate);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.explore-card:hover,
.explore-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--warm-shadow);
  border-color: rgba(194, 83, 71, 0.35);
}
.explore-card svg {
  width: 1.8rem;
  height: 1.8rem;
  stroke: var(--coral);
}
.explore-card h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--clay);
}
.explore-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.5;
}
.explore-link {
  margin-top: 0.4rem;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: var(--coral);
  text-transform: uppercase;
}

/* Page-bottom CTA — used on services/shop pages */
.page-cta {
  background: linear-gradient(180deg, transparent, rgba(232, 181, 176, 0.22));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 3rem;
}
.page-cta-inner {
  max-width: 56ch;
  margin: 0 auto;
  text-align: center;
}
.page-cta-inner h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin: 0.4rem 0 0.8rem;
  color: var(--clay);
}
.page-cta-inner p {
  margin: 0 0 1.4rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.page-cta-inner .btn {
  margin: 0 auto;
}

/* Custom order intake form (HENHOUSE-4) */
.custom-order-section {
  align-items: start;
}

.order-note {
  margin-top: 1.2rem;
  padding: 1rem;
  color: var(--chocolate);
  background: rgba(122, 155, 94, 0.14);
  border: 2px dashed rgba(122, 155, 94, 0.36);
  border-radius: 8px;
}

.custom-order-form {
  background: rgba(255, 253, 249, 0.94);
  border: 2px solid rgba(180, 139, 123, 0.20);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(58, 46, 42, 0.10);
  padding: 1.35rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.custom-order-form label {
  display: grid;
  gap: 0.38rem;
  color: var(--chocolate);
  font-weight: 800;
}

.custom-order-form input,
.custom-order-form select,
.custom-order-form textarea {
  width: 100%;
  border: 2px solid rgba(180, 139, 123, 0.28);
  border-radius: 6px;
  padding: 0.72rem 0.78rem;
  color: var(--chocolate);
  background: var(--white);
  font: inherit;
}

.custom-order-form textarea {
  resize: vertical;
}

.custom-order-form input:focus,
.custom-order-form select:focus,
.custom-order-form textarea:focus {
  outline: 3px solid rgba(122, 155, 94, 0.24);
  border-color: var(--sage);
}

.custom-order-form input:disabled {
  color: rgba(58, 46, 42, 0.58);
  background: rgba(234, 220, 207, 0.52);
  cursor: not-allowed;
}

.custom-order-form small,
.form-actions p {
  color: var(--ink-soft);
  font-weight: 600;
}

.full-span {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 2px solid rgba(180, 139, 123, 0.14);
}

.form-actions p {
  margin: 0;
}

@media (max-width: 640px) {
  .form-grid,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
