:root {
  --ivory: #F7F5F0;
  --ivory-2: #F2EFE8;
  --ink: #171512;
  --ink-soft: #4a453e;
  --green: #1E4D3B;
  --green-deep: #163a2c;
  --hair: #17151218;
  --maxw: 1120px;
  --pad: clamp(1.25rem, 5vw, 3rem);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
}

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green);
  color: var(--ivory);
  padding: 0.6rem 1rem;
  z-index: 100;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 240, 0.86);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--hair);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.wordmark {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.28rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  color: var(--ink);
}
.site-nav {
  display: flex;
  gap: clamp(1.2rem, 4vw, 2.4rem);
}
.site-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { transform: scaleX(1); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--hair);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(4.5rem, 11vw, 8.5rem);
  padding-bottom: clamp(4.5rem, 11vw, 8.5rem);
  max-width: 860px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--green);
  margin: 0 0 1.4rem;
}
h1 {
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 1.4rem;
}
.tagline {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.35rem, 3.4vw, 2rem);
  line-height: 1.28;
  color: var(--ink);
  margin: 0 0 1.1rem;
  max-width: 20ch;
}
.subline {
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0 0 2.4rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.7rem;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  transition: transform 0.18s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary {
  background: var(--green);
  color: var(--ivory);
  border: 1px solid var(--green);
}
.btn-primary:hover { background: var(--green-deep); border-color: var(--green-deep); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hair);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }

/* Sections */
.section {
  padding-top: clamp(3.75rem, 9vw, 6.5rem);
  padding-bottom: clamp(3.75rem, 9vw, 6.5rem);
  border-bottom: 1px solid var(--hair);
}
.section-alt { background: var(--ivory-2); }

/* Anchor offset for sticky header */
section[id], main[id] { scroll-margin-top: 88px; }
@media (max-width: 560px) { section[id], main[id] { scroll-margin-top: 124px; } }

.section-grid {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.section-label h2 {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 500;
}
.rule {
  display: block;
  width: 42px;
  height: 2px;
  background: var(--green);
  margin-bottom: 1.1rem;
}
.section-label-block { margin-bottom: clamp(2.2rem, 5vw, 3.2rem); }

.section-body { max-width: 62ch; }
.section-body p { margin: 0 0 1.15rem; color: var(--ink-soft); }
.section-body p:last-child { margin-bottom: 0; }
.lede {
  font-size: clamp(1.18rem, 2.4vw, 1.45rem);
  line-height: 1.45;
  color: var(--ink) !important;
  font-weight: 400;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
}
.card {
  background: var(--ivory);
  border: 1px solid var(--hair);
  border-radius: 4px;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: #17151230;
  box-shadow: 0 14px 40px -22px rgba(23, 21, 18, 0.35);
}
.card h3 {
  font-size: 1.28rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.card p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

/* Categories */
.cat-list {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  border-top: 1px solid var(--hair);
}
.cat-list li {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--hair);
}
.cat-index {
  font-size: 0.82rem;
  color: var(--green);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  min-width: 2ch;
}
.cat-name {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  color: var(--ink);
}
.cat-note { font-size: 0.95rem; }

/* Contact */
.contact-email {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.4rem, 3.4vw, 2rem) !important;
  margin: 0.4rem 0 1.6rem !important;
}
.contact-email a {
  color: var(--green) !important;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.contact-email a:hover { border-color: var(--green); }
.postal {
  font-style: normal;
  color: var(--ink-soft);
  line-height: 1.9;
  font-size: 1rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-mark {
  color: var(--ivory);
  font-size: 1.15rem;
  letter-spacing: 0.16em;
}
.legal {
  margin: 0;
  font-size: 0.85rem;
  color: #cfc9bf;
  max-width: 60ch;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .site-nav a::after { transition: none; }
}

/* Responsive */
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .cards { grid-template-columns: 1fr; }
  .site-nav { gap: 1.1rem; }
  .header-inner { height: 60px; }
  .wordmark { font-size: 1.15rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .hero-cta { width: 100%; }
  .btn { flex: 1; }
}

/* ============================================================
   V2 additions
   ============================================================ */

/* Hero status + stats */
.hero-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin: 0 0 2.2rem;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex: 0 0 auto;
  box-shadow: 0 0 0 3px rgba(30, 77, 59, 0.14);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.6rem, 5vw, 3.2rem);
  margin: 2.6rem 0 0;
  padding-top: 1.8rem;
  border-top: 1px solid var(--hair);
}
.hero-stats div { display: flex; flex-direction: column; gap: 0.3rem; }
.hero-stats dt {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--green);
}
.hero-stats dd {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.12rem;
  color: var(--ink);
}

/* Journey timeline */
.timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.rail-wrap {
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #17151220;
  overflow: hidden;
}
.rail-fill {
  display: block;
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: top center;
  will-change: transform;
}
.milestone {
  position: relative;
  padding: 0 0 clamp(2.3rem, 5vw, 3.6rem) clamp(2.6rem, 6vw, 3.6rem);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.milestone:last-child { padding-bottom: 0; }
.milestone.is-visible { opacity: 1; transform: none; }
.milestone-dot {
  position: absolute;
  left: 2px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ivory);
  border: 2px solid var(--green);
  box-shadow: 0 0 0 5px var(--ivory);
  transition: background 0.45s ease;
}
.milestone.is-visible .milestone-dot { background: var(--green); }
.milestone-year {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--green);
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.5rem;
}
.milestone-title {
  font-size: clamp(1.3rem, 3vw, 1.72rem);
  font-weight: 500;
  margin: 0 0 0.65rem;
}
.milestone p { margin: 0; color: var(--ink-soft); max-width: 58ch; }

/* Approach */
.approach-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 4vw, 3rem);
}
.approach-item {
  border-top: 2px solid var(--green);
  padding-top: 1.3rem;
}
.approach-index {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--green);
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.7rem;
}
.approach-item h3 {
  font-size: 1.32rem;
  font-weight: 600;
  margin: 0 0 0.7rem;
}
.approach-item p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

/* In preparation : collection */
.collection-lede { margin-bottom: clamp(2rem, 4vw, 2.8rem); max-width: 60ch; }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
}
.product-card {
  background: var(--ivory);
  border: 1px solid var(--hair);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: #17151230;
  box-shadow: 0 16px 44px -24px rgba(23, 21, 18, 0.4);
}
.product-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ivory-2);
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-info { padding: clamp(1.2rem, 2.6vw, 1.7rem); }
.product-cat {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.product-info h3 { font-size: 1.24rem; font-weight: 600; margin: 0 0 0.5rem; }
.product-info p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }
.collection-note {
  margin: clamp(1.8rem, 4vw, 2.4rem) 0 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* Notes */
.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 4vw, 2.6rem);
}
.note {
  border-top: 1px solid var(--hair);
  padding-top: 1.4rem;
}
.note-date {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--green);
  margin: 0 0 0.7rem;
}
.note h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 0.9rem;
  line-height: 1.2;
}
.note p { margin: 0 0 0.85rem; color: var(--ink-soft); font-size: 0.95rem; }
.note p:last-child { margin-bottom: 0; }

/* Contact form */
.contact-form {
  margin: 2rem 0 2.4rem;
  max-width: 34rem;
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 0.45rem;
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--hair);
  border-radius: 3px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { resize: vertical; min-height: 7rem; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30, 77, 59, 0.12);
}
.contact-form .btn-primary { cursor: pointer; }
.form-honey { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact-direct { border-top: 1px solid var(--hair); padding-top: 1.6rem; }
.contact-direct-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--green) !important;
  margin: 0 0 0.5rem !important;
}

/* Company information (registry strip) */
.company-info {
  background: var(--ivory-2);
  border-top: 1px solid var(--hair);
  padding: clamp(3rem, 7vw, 4.5rem) 0;
}
.company-heading {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: var(--green);
  margin: 0 0 1.6rem;
}
.company-registry {
  margin: 0;
  border-top: 1px solid var(--hair);
  max-width: 760px;
}
.company-registry > div {
  display: grid;
  grid-template-columns: minmax(140px, 210px) 1fr;
  gap: 1rem clamp(1.2rem, 4vw, 2.5rem);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--hair);
}
.company-registry dt {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding-top: 0.15rem;
}
.company-registry dd {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.company-registry dd a { color: var(--green); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s ease; }
.company-registry dd a:hover { border-color: var(--green); }
.company-note {
  margin: 1.4rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* Footer (enriched) */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid rgba(247, 245, 240, 0.12);
}
.footer-logo {
  display: block;
  width: 160px;
  height: auto;
  margin-bottom: 1.2rem;
}
.footer-tag {
  margin: 0;
  font-size: 0.92rem;
  color: #cfc9bf;
  max-width: 34ch;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 500;
  color: #a49c8f;
  margin: 0 0 1.1rem;
}
.footer-col a {
  display: block;
  text-decoration: none;
  color: #e7e2d8;
  font-size: 0.94rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--ivory); }
.footer-address {
  font-style: normal;
  color: #b8b2a6;
  font-size: 0.9rem;
  line-height: 1.75;
  margin-top: 0.4rem;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: clamp(1.6rem, 4vw, 2.2rem);
}
.footer-legal { display: flex; gap: 1.4rem; }
.footer-legal a {
  color: #cfc9bf;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--ivory); }

/* Reduced motion for timeline */
@media (prefers-reduced-motion: reduce) {
  .milestone { opacity: 1; transform: none; transition: none; }
  .rail-fill { transform: scaleY(1); }
  .milestone-dot, .product-card { transition: none; }
}

/* Responsive V2 */
@media (max-width: 900px) {
  .approach-cols { grid-template-columns: 1fr; gap: 1.6rem; }
  .notes-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .collection-grid { grid-template-columns: 1fr; }
  .company-registry > div { grid-template-columns: 1fr; gap: 0.25rem; padding: 0.9rem 0; }
  .company-registry dt { padding-top: 0; }
}

@media (max-width: 560px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 0.55rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }
  .site-nav { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .site-nav a { font-size: 0.9rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Legal + thanks pages */
.legal-page {
  padding-top: clamp(2.6rem, 6vw, 4.5rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
}
.legal-page .wrap { max-width: 760px; }
.legal-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin: 0 0 1.4rem;
}
.legal-eyebrow a { color: var(--green); text-decoration: none; }
.legal-eyebrow a:hover { text-decoration: underline; }
.legal-title {
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 0.5rem;
}
.legal-updated {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin: 0 0 2.4rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--hair);
}
.legal-body h2 {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 2.2rem 0 0.7rem;
}
.legal-body p { color: var(--ink-soft); margin: 0 0 1.15rem; }
.legal-body a { color: var(--green); }

.thanks-page {
  display: flex;
  align-items: center;
  min-height: 60vh;
  padding: clamp(4rem, 10vw, 7rem) 0;
}
.thanks-inner { max-width: 620px; }
.thanks-title {
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 1.1rem 0 1rem;
}
.thanks-text {
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 2.2rem;
  max-width: 46ch;
}
