/* ══════════════════════════════════════════
   TOKENS — sampled directly from the logo
══════════════════════════════════════════ */
:root {
  /* core greens from the AR monogram */
  --ink:       #2A2F26;   /* darkest text */
  --pine:      #41493C;   /* A leg — darkest logo green */
  --moss:      #515E4D;   /* A apex */
  --fern:      #5B6857;   /* mid blend */
  --sage:      #6A7765;   /* R strokes */
  --sage-soft: #8A968A;
  --sage-bg:   #9DA99B;   /* the logo's own background sage */
  --haze:      #C2CCC0;
  --mist:      #DFE5DD;
  --paper:     #EEF1EC;
  --paper-w:   #F6F8F4;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
/* prevent any element from causing horizontal scroll on mobile */
html, body { max-width: 100%; overflow-x: hidden; }
img, video { max-width: 100%; height: auto; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--paper-w);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

/* ══════════════════════════════════════════
   CURSOR
══════════════════════════════════════════ */
#cur {
  position: fixed; z-index: 9999; width: 7px; height: 7px;
  background: var(--moss); border-radius: 50%;
  top: 0; left: 0; transform: translate(-50%,-50%); pointer-events: none;
  transition: width .25s, height .25s, background .25s;
}
#cur-o {
  position: fixed; z-index: 9998; width: 38px; height: 38px;
  border: 1.5px solid var(--moss); border-radius: 50%;
  top: 0; left: 0; transform: translate(-50%,-50%); pointer-events: none;
  opacity: .35; transition: width .35s var(--ease-out), height .35s var(--ease-out), opacity .35s;
}
body.cur-hover #cur { width: 15px; height: 15px; }
body.cur-hover #cur-o { width: 52px; height: 52px; opacity: .2; }
body.cur-dark #cur { background: var(--haze); }
body.cur-dark #cur-o { border-color: var(--haze); }

/* ══════════════════════════════════════════
   LOGO MARK (reusable inline SVG styling)
══════════════════════════════════════════ */
.logo-mark { display: block; }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 800; height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: background .4s, border-color .4s, height .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(246,248,244,0.9); backdrop-filter: blur(14px);
  border-color: var(--mist); height: 64px;
}
.nav-brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.nav-brand .logo-mark { width: 32px; height: 32px; }
.nav-brand-text { display: flex; flex-direction: column; gap: 1px; line-height: 1; }
.nav-brand-name {
  font-family: 'Cormorant', serif; font-size: 22px; font-weight: 600;
  letter-spacing: 0.06em; color: var(--pine);
}
.nav-brand-tld {
  font-size: 8.5px; font-weight: 400; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--sage);
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 400; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--pine);
  text-decoration: none; opacity: .55; transition: opacity .2s;
}
.nav-links a:hover { opacity: 1; }
.nav-end { display: flex; align-items: center; gap: 22px; }
.nav-eco {
  display: flex; align-items: center; gap: 7px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage); font-weight: 400;
}
.nav-eco::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage); animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }
.nav-cta {
  font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--paper-w);
  background: var(--pine); border: none; padding: 11px 22px; cursor: none;
  transition: background .25s;
}
.nav-cta:hover { background: var(--ink); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  background: var(--sage-bg);
}
/* faint grain */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='f'%3E%3CfeTurbulence baseFrequency='0.8' numOctaves='4' type='fractalNoise'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23f)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .55;
}
.hero-left {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 0 80px 64px;
}
.hero-eyebrow {
  font-size: 10px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--moss); font-weight: 400; margin-bottom: 30px;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: fadeSlide .8s var(--ease-out) .5s both;
}
.hero-eyebrow::before { content:''; width:34px; height:1px; background: var(--moss); opacity:.5; }
.hero-h1 {
  font-family: 'Cormorant', serif;
  font-size: clamp(56px, 7vw, 104px); font-weight: 500; line-height: 0.94;
  letter-spacing: -0.015em; color: var(--pine); margin-bottom: 34px;
  opacity: 0; animation: fadeSlide .9s var(--ease-out) .7s both;
}
.hero-h1 em { font-style: italic; font-weight: 400; color: var(--moss); }
.hero-sub {
  font-size: 14.5px; font-weight: 300; line-height: 1.9;
  color: var(--fern); max-width: 400px; margin-bottom: 50px;
  opacity: 0; animation: fadeSlide .9s var(--ease-out) .9s both;
}
.hero-actions {
  display: flex; gap: 22px; align-items: center;
  opacity: 0; animation: fadeSlide .9s var(--ease-out) 1.05s both;
}
.btn-primary {
  display: inline-block; font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--paper-w);
  background: var(--pine); padding: 15px 34px; text-decoration: none;
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: var(--ink); transform: translateY(-1px); }
.btn-ghost {
  font-size: 11px; font-weight: 400; letter-spacing: 0.14em;
  color: var(--moss); text-decoration: none;
  display: flex; align-items: center; gap: 9px; transition: gap .2s;
}
.btn-ghost::after { content:'↓'; font-size: 14px; }
.btn-ghost:hover { gap: 14px; }

/* HERO RIGHT — the big logo mark, drawn in */
.hero-right {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.hero-logo-disc {
  position: relative;
  opacity: 0; animation: fadeIn 1.1s var(--ease-out) .4s both;
}
.hero-logo-disc .logo-mark { width: min(60vh, 460px); height: min(60vh, 460px); }

/* stroke-draw for the logo paths */
.draw {
  stroke-dasharray: 2600; stroke-dashoffset: 2600;
  animation: draw 2.4s var(--ease-out) .7s forwards;
}
.draw-2 { animation-delay: 1.0s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.fill-in { opacity: 0; animation: fadeIn 1.2s var(--ease-out) 2s both; }

@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes fadeSlide { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }

.hero-scroll {
  position: absolute; bottom: 38px; left: 64px; z-index: 3;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: fadeIn 1s 1.8s both;
}
.hero-scroll .bar {
  width: 46px; height: 1px; background: var(--moss); opacity: .4;
  position: relative; overflow: hidden;
}
.hero-scroll .bar::after {
  content:''; position: absolute; inset: 0; width: 40%;
  background: var(--pine); animation: slideBar 2.4s ease-in-out infinite;
}
@keyframes slideBar { 0%{transform:translateX(-100%)} 100%{transform:translateX(250%)} }
.hero-scroll span {
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--moss);
}

/* ══════════════════════════════════════════
   TICKER
══════════════════════════════════════════ */
.ticker {
  background: var(--pine); overflow: hidden; padding: 14px 0;
}
.ticker-track { display: flex; white-space: nowrap; animation: ticker 30s linear infinite; }
.ticker-item {
  font-family: 'Lora', serif; font-style: italic; font-size: 14px;
  color: var(--haze); padding: 0 38px; display: flex; align-items: center; gap: 38px;
}
.ticker-item::after { content:'✦'; font-style: normal; font-size: 7px; color: var(--sage); }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════════
   SECTION HELPERS
══════════════════════════════════════════ */
.eyebrow {
  font-size: 9px; letter-spacing: 0.48em; text-transform: uppercase;
  color: var(--sage); font-weight: 400; margin-bottom: 22px;
  display: flex; align-items: center; gap: 13px;
}
.eyebrow::before { content:''; width: 22px; height: 1px; background: var(--haze); }

/* ══════════════════════════════════════════
   STATEMENT
══════════════════════════════════════════ */
.statement {
  padding: 116px 64px 104px;
  display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start;
}
.statement-left { position: sticky; top: 108px; }
.statement-heading {
  font-family: 'Cormorant', serif; font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 500; line-height: 1.08; color: var(--pine);
}
.statement-heading em { font-style: italic; font-weight: 400; color: var(--sage); }
.statement-body { font-size: 16px; font-weight: 300; line-height: 2; color: var(--fern); margin-bottom: 26px; }
.statement-body strong {
  font-family: 'Cormorant', serif; font-style: italic; font-size: 18px;
  font-weight: 500; color: var(--pine);
}
.statement-rule { width: 46px; height: 1px; background: var(--haze); margin: 32px 0; }
.statement-pledge { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.pledge { padding: 24px; background: var(--paper); border-left: 2px solid var(--sage); }
.pledge-title {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pine); font-weight: 500; margin-bottom: 8px;
}
.pledge-text { font-size: 12px; font-weight: 300; line-height: 1.7; color: var(--fern); }

/* ══════════════════════════════════════════
   COLLECTION
══════════════════════════════════════════ */
.collection { background: var(--pine); padding: 100px 0 0; }
.collection-header {
  padding: 0 64px 60px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.collection-header .eyebrow { color: var(--haze); }
.collection-header .eyebrow::before { background: var(--sage); }
.collection-title {
  font-family: 'Cormorant', serif; font-size: clamp(40px, 4.6vw, 66px);
  font-weight: 500; color: var(--paper-w); line-height: 1.04; margin-top: 16px;
}
.collection-title em { font-style: italic; font-weight: 400; color: var(--haze); }
.collection-meta {
  font-size: 11px; font-weight: 300; color: rgba(238,241,236,0.4);
  letter-spacing: 0.08em; max-width: 200px; text-align: right; line-height: 1.7;
}
.product-row { display: grid; border-top: 1px solid rgba(255,255,255,0.07); transition: background .4s; }
.product-row:hover { background: rgba(255,255,255,0.025); }
.product-row.a { grid-template-columns: 5fr 7fr; }
.product-row.b { grid-template-columns: 7fr 5fr; }
.product-row.c { grid-template-columns: 1fr 1fr; }
.product-visual {
  position: relative; overflow: hidden; min-height: 430px;
  display: flex; align-items: center; justify-content: center;
}
.product-visual svg { transition: transform .7s var(--ease-out); }
.product-row:hover .product-visual svg { transform: scale(1.03); }
.product-content { padding: 60px 64px; display: flex; flex-direction: column; justify-content: center; }
.product-row.b .product-content { order: -1; }
.product-num { font-family: 'Cormorant', serif; font-style: italic; font-size: 13px; color: var(--sage); letter-spacing: 0.1em; margin-bottom: 18px; }
.product-name {
  font-family: 'Cormorant', serif; font-size: clamp(28px, 3vw, 46px);
  font-weight: 500; color: var(--paper-w); line-height: 1.12; margin-bottom: 8px;
}
.product-species {
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--sage-soft); font-weight: 400; margin-bottom: 24px;
}
.product-desc {
  font-size: 13px; font-weight: 300; line-height: 1.85;
  color: rgba(238,241,236,0.45); max-width: 380px; margin-bottom: 40px;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.08);
}
.product-price { font-family: 'Cormorant', serif; font-size: 33px; font-weight: 500; color: var(--paper-w); }
.product-price sup { font-size: 16px; vertical-align: super; }
.product-dims { font-size: 10px; letter-spacing: 0.18em; color: var(--sage-soft); margin-top: 4px; }
.btn-enquire {
  font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--pine);
  background: var(--haze); padding: 12px 26px; text-decoration: none;
  border: none; cursor: none; transition: background .22s;
}
.btn-enquire:hover { background: var(--mist); }

/* all-green product backgrounds */
.vis-1 { background: linear-gradient(150deg, #5B6857 0%, #41493C 55%, #2A2F26 100%); }
.vis-2 { background: linear-gradient(160deg, #6A7765 0%, #515E4D 50%, #2A2F26 100%); }
.vis-3 { background: linear-gradient(150deg, #8A968A 0%, #5B6857 50%, #3A413300 100%), linear-gradient(150deg,#7A857A,#41493C); }
.vis-4 { background: linear-gradient(145deg, #6A7765 0%, #4A5544 50%, #262B22 100%); }

/* ══════════════════════════════════════════
   COMMISSION (now all-green, no brown)
══════════════════════════════════════════ */
.commission { display: grid; grid-template-columns: 1fr 1fr; background: var(--moss); }
.commission-content { padding: 92px 64px; display: flex; flex-direction: column; justify-content: center; }
.commission-content .eyebrow { color: var(--haze); }
.commission-content .eyebrow::before { background: var(--sage-soft); }
.commission-heading {
  font-family: 'Cormorant', serif; font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 500; color: var(--paper-w); line-height: 1.1; margin: 16px 0 22px;
}
.commission-heading em { font-style: italic; font-weight: 400; }
.commission-body {
  font-size: 14px; font-weight: 300; line-height: 1.9;
  color: rgba(246,248,244,0.62); max-width: 420px; margin-bottom: 38px;
}
.btn-commission {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--moss);
  background: var(--paper-w); padding: 15px 30px; text-decoration: none;
  width: fit-content; transition: background .22s;
}
.btn-commission:hover { background: var(--mist); }
.commission-visual {
  background: linear-gradient(160deg, #6A7765 0%, #515E4D 55%, #353D30 100%);
  position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.commission-visual::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 35% 45%, rgba(223,229,221,0.12) 0%, transparent 62%);
}

/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */
.process { padding: 116px 64px; background: var(--paper); }
.process-header { margin-bottom: 70px; }
.process-heading {
  font-family: 'Cormorant', serif; font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 500; color: var(--pine); line-height: 1.05; margin-top: 16px; max-width: 560px;
}
.process-heading em { font-style: italic; font-weight: 400; color: var(--sage); }
.timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--haze); border: 1px solid var(--haze); }
.timeline-step { background: var(--paper); padding: 40px 34px 46px; transition: background .3s; }
.timeline-step:hover { background: var(--paper-w); }
.step-mark { font-family: 'Cormorant', serif; font-style: italic; font-size: 14px; color: var(--sage); margin-bottom: 24px; }
.step-heading { font-family: 'Cormorant', serif; font-size: 21px; font-weight: 500; color: var(--pine); margin-bottom: 13px; }
.step-body { font-size: 13px; font-weight: 300; line-height: 1.8; color: var(--fern); }

/* ══════════════════════════════════════════
   ECO BAND
══════════════════════════════════════════ */
.eco-band { background: var(--ink); padding: 84px 64px; display: flex; align-items: center; gap: 80px; }
.eco-left { flex: 1; }
.eco-left .eyebrow { color: var(--haze); }
.eco-left .eyebrow::before { background: var(--sage); }
.eco-heading {
  font-family: 'Cormorant', serif; font-size: clamp(28px, 3vw, 46px);
  font-weight: 500; color: var(--paper-w); line-height: 1.14; margin-top: 14px;
}
.eco-heading em { font-style: italic; font-weight: 400; color: var(--sage-soft); }
.eco-stats { flex: 0 0 auto; display: flex; gap: 56px; }
.eco-stat { text-align: center; }
.eco-stat-num { font-family: 'Cormorant', serif; font-size: 50px; font-weight: 500; color: var(--sage-soft); line-height: 1; margin-bottom: 8px; }
.eco-stat-label { font-size: 9px; letter-spacing: 0.36em; text-transform: uppercase; color: rgba(246,248,244,0.35); font-weight: 300; max-width: 100px; line-height: 1.6; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials { padding: 116px 64px; background: var(--paper-w); }
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-header .eyebrow { justify-content: center; }
.testimonials-header .eyebrow::before { display: none; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.tcard { background: var(--paper); padding: 46px 40px; transition: background .3s, transform .3s var(--ease-out); }
.tcard:hover { background: var(--mist); transform: translateY(-4px); }
.tcard-stars { color: var(--sage); font-size: 11px; letter-spacing: 2px; margin-bottom: 16px; }
.tcard-quote {
  font-family: 'Lora', serif; font-style: italic; font-size: 15px;
  line-height: 1.85; color: var(--fern); margin-bottom: 30px;
  position: relative; padding-top: 14px;
}
.tcard-quote::before {
  content: '\201C'; font-family: 'Cormorant', serif; font-size: 62px;
  color: var(--haze); line-height: 0; position: absolute; top: 26px; left: -4px;
}
.tcard-author { display: flex; align-items: center; gap: 14px; }
.tcard-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--haze);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant', serif; font-size: 16px; color: var(--pine);
}
.tcard-name { font-size: 13px; font-weight: 400; color: var(--pine); }
.tcard-loc { font-size: 11px; font-weight: 300; color: var(--sage); margin-top: 2px; }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.about-visual { background: var(--sage-bg); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.about-visual::before { content:''; position: absolute; inset: 0; background: radial-gradient(ellipse at 42% 40%, rgba(246,248,244,0.16) 0%, transparent 60%); }
.about-visual-inner { position: relative; z-index: 1; }
.about-content { padding: 72px 70px; background: var(--pine); display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.about-content .eyebrow { color: var(--haze); }
.about-content .eyebrow::before { background: var(--sage); }
.about-heading { font-family: 'Cormorant', serif; font-size: clamp(30px, 3vw, 48px); font-weight: 500; color: var(--paper-w); line-height: 1.1; }
.about-heading em { font-style: italic; font-weight: 400; color: var(--haze); }
.about-body { font-size: 14px; font-weight: 300; line-height: 1.95; color: rgba(238,241,236,0.5); max-width: 460px; }
.about-sig { font-family: 'Cormorant', serif; font-style: italic; font-size: 32px; color: var(--sage-soft); margin-top: 6px; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact { padding: 104px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; background: var(--paper-w); }
.contact-heading { font-family: 'Cormorant', serif; font-size: clamp(34px, 3.6vw, 54px); font-weight: 500; color: var(--pine); line-height: 1.05; margin-bottom: 20px; }
.contact-heading em { font-style: italic; font-weight: 400; color: var(--sage); }
.contact-sub { font-size: 14px; font-weight: 300; line-height: 1.9; color: var(--fern); max-width: 420px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-field label { font-size: 9px; letter-spacing: 0.36em; text-transform: uppercase; color: var(--sage); font-weight: 400; }
.contact-field input, .contact-field textarea, .contact-field select {
  background: var(--paper); border: 1px solid var(--haze); padding: 14px 16px;
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 300; color: var(--pine);
  outline: none; transition: border-color .2s; -webkit-appearance: none;
}
.contact-field input:focus, .contact-field textarea:focus, .contact-field select:focus { border-color: var(--sage); }
.contact-field textarea { resize: vertical; min-height: 100px; }
.btn-send {
  font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--paper-w);
  background: var(--pine); border: none; padding: 16px 36px; cursor: none;
  width: fit-content; transition: background .22s;
}
.btn-send:hover { background: var(--ink); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer { background: var(--ink); padding: 64px 64px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand-top .logo-mark { width: 34px; height: 34px; }
.footer-logo-name { font-family: 'Cormorant', serif; font-size: 23px; font-weight: 600; color: var(--paper-w); letter-spacing: 0.05em; }
.footer-logo-tld { font-size: 8.5px; letter-spacing: 0.45em; text-transform: uppercase; color: var(--sage); }
.footer-tagline { font-size: 12px; font-weight: 300; line-height: 1.8; color: rgba(246,248,244,0.32); max-width: 240px; }
.footer-col-label { font-size: 8px; letter-spacing: 0.46em; text-transform: uppercase; color: var(--sage); font-weight: 400; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 13px; font-weight: 300; color: rgba(246,248,244,0.4); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--sage-soft); }
.footer-bottom { grid-column: 1/-1; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; margin-top: 16px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 10px; font-weight: 300; color: rgba(246,248,244,0.22); letter-spacing: 0.08em; }
.footer-eco { display: flex; align-items: center; gap: 8px; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); font-weight: 400; }
.footer-eco::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }

/* ══════════════════════════════════════════
   REVEAL
══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease-out), transform .75s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; } .reveal-d3 { transition-delay: .3s; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
body.menu-open { overflow: hidden; }

/* iOS safe-area: keep fixed nav clear of the notch/home indicator */
@supports (padding: max(0px)) {
  .nav { padding-left: max(20px, env(safe-area-inset-left)); padding-right: max(20px, env(safe-area-inset-right)); }
  .mobile-menu-inner { padding-bottom: env(safe-area-inset-bottom); }
}

/* ══════════════════════════════════════════
   MOBILE NAV — hamburger + slide-in menu
   (hidden on desktop, shown <=900px)
══════════════════════════════════════════ */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; padding: 10px; margin-right: -10px;
  z-index: 810;
}
.nav-toggle-bar {
  display: block; width: 22px; height: 2px;
  background: var(--pine); border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .2s;
}
body.menu-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; right: 0; z-index: 805;
  width: min(80vw, 340px); height: 100%;
  height: 100dvh;
  background: var(--sage-bg);
  transform: translateX(100%);
  transition: transform .4s var(--ease-out);
  display: flex; align-items: center;
  box-shadow: -20px 0 60px rgba(42,47,38,0.18);
  visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateX(0); visibility: visible; }
.mobile-menu-inner {
  display: flex; flex-direction: column; gap: 4px;
  width: 100%; padding: 0 36px;
}
.mobile-link {
  font-family: 'Cormorant', serif; font-size: 30px; font-weight: 500;
  color: var(--pine); text-decoration: none; padding: 12px 0;
  border-bottom: 1px solid rgba(65,73,60,0.12);
  transition: color .2s, padding-left .2s;
}
.mobile-link:active { color: var(--moss); padding-left: 8px; }
.mobile-cta {
  margin-top: 26px; text-align: center;
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--paper-w);
  background: var(--pine); padding: 16px 28px; text-decoration: none;
}
.mobile-cta:active { background: var(--ink); }
.mobile-eco {
  margin-top: 22px; font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--moss); text-align: center;
}
.mobile-backdrop {
  position: fixed; inset: 0; z-index: 804;
  background: rgba(26,30,26,0.4);
  opacity: 0; transition: opacity .4s;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
body.menu-open .mobile-backdrop { opacity: 1; }

/* ══════════════════════════════════════════
   TABLET  (<= 900px)
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links, .nav-eco, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav { padding: 0 24px; }

  /* hero: logo moves above headline, smaller + centred */
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 104px 28px 64px; order: 2; }
  .hero-right { order: 1; min-height: 200px; padding-top: 96px; }
  .hero-logo-disc > .logo-mark { width: 132px; }
  .hero-rings .rings-svg { width: 210px; height: 210px; }
  .hero-scroll { display: none; }

  .statement, .contact { grid-template-columns: 1fr; gap: 44px; }
  .statement-left { position: static; }
  .product-row.a, .product-row.b, .product-row.c { grid-template-columns: 1fr; }
  .product-row.b .product-content { order: 0; }
  .collection-header { flex-direction: column; align-items: flex-start; gap: 14px; padding: 0 28px 48px; }
  .collection-meta { text-align: left; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .commission, .about { grid-template-columns: 1fr; }
  .eco-band { flex-direction: column; gap: 40px; align-items: flex-start; }
  .eco-stats { gap: 32px; }
  footer { grid-template-columns: 1fr 1fr; gap: 36px; padding: 52px 28px 32px; }
  .statement, .process, .testimonials, .contact { padding: 72px 28px; }
  .product-content, .about-content, .commission-content, .eco-band { padding: 56px 28px; }
}

/* ══════════════════════════════════════════
   PHONE  (<= 640px)
══════════════════════════════════════════ */
@media (max-width: 640px) {
  .nav { padding: 0 20px; height: 64px; }
  .nav.scrolled { height: 56px; }
  .nav-brand .logo-mark { width: 28px; }
  .nav-brand-name { font-size: 19px; }

  .hero-left { padding: 92px 20px 56px; }
  .hero-right { padding-top: 88px; min-height: 180px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 0.3em; margin-bottom: 22px; }
  .hero-eyebrow::before { width: 22px; }
  .hero-sub { font-size: 14px; max-width: 100%; margin-bottom: 38px; }
  .hero-actions { flex-wrap: wrap; gap: 16px; }
  .btn-primary { padding: 15px 28px; }

  /* section padding tightened */
  .statement, .process, .testimonials, .contact { padding: 64px 20px; }
  .collection { padding-top: 72px; }
  .collection-header { padding: 0 20px 40px; }
  .product-content, .about-content, .commission-content { padding: 48px 20px; }
  .eco-band { padding: 56px 20px; }
  footer { padding: 48px 20px 28px; }

  /* product visuals: cap height so SVGs don't dominate */
  .product-visual { min-height: 300px; }
  .product-visual.tall { min-height: 300px; }
  .product-visual svg { max-width: 80%; height: auto; }

  /* contact form: stack the two-up row */
  .contact-row { grid-template-columns: 1fr; }

  /* eco stats: stack vertically, larger tap rhythm */
  .eco-stats { flex-direction: column; gap: 28px; width: 100%; }
  .eco-stat { text-align: left; display: flex; align-items: baseline; gap: 18px; }
  .eco-stat-label { max-width: none; }

  /* footer: single column reads better on narrow screens */
  footer { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 14px; align-items: flex-start; }

  /* timeline single column */
  .timeline { grid-template-columns: 1fr; }

  /* tap targets: comfortable hit area for inline links */
  .product-link, .btn-ghost, .footer-links a { padding-top: 4px; padding-bottom: 4px; }
}

/* ══════════════════════════════════════════
   SMALL PHONE  (<= 400px)
══════════════════════════════════════════ */
@media (max-width: 400px) {
  .hero-h1 { font-size: 50px; }
  .hero-left { padding: 88px 18px 52px; }
  .statement, .process, .testimonials, .contact { padding: 56px 18px; }
  .collection-header { padding: 0 18px 36px; }
  .product-content, .about-content, .commission-content { padding: 44px 18px; }
  .mobile-menu-inner { padding: 0 28px; }
  .mobile-link { font-size: 26px; }
  .product-footer { flex-wrap: wrap; gap: 16px; }
}

/* ══════════════════════════════════════════
   TOUCH DEVICES — disable custom cursor entirely
══════════════════════════════════════════ */
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  #cur, #cur-o { display: none !important; }
  /* restore active-state feedback since there's no hover */
  .btn-primary:active, .nav-cta:active, .btn-enquire:active,
  .btn-commission:active, .btn-send:active { opacity: 0.85; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* traced-logo hero ring backdrop */
.hero-logo-disc { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 0; }
.rings-svg { width: min(72vh, 560px); height: min(72vh, 560px); }
.rdraw { stroke-dasharray: 320; stroke-dashoffset: 320; animation: ringdraw 2.6s var(--ease-out) forwards; }
.rd1 { animation-delay: .5s; } .rd2 { animation-delay: .7s; } .rd3 { animation-delay: .9s; } .rd4 { animation-delay: 1.1s; }
@keyframes ringdraw { to { stroke-dashoffset: 0; } }
.hero-logo-disc > .logo-mark { position: relative; z-index: 1; width: min(50vh, 380px); height: auto; }
.about-logo { width: min(42vh, 300px); height: auto; opacity: 0.9; }

/* ── utility classes (replace former inline styles, CSP-safe) ── */
.product-visual.tall { min-height: 360px; }
.eco-stat-num.netzero { font-size: 34px; line-height: 1.4; }
.eyebrow.center-eyebrow { justify-content: center; margin-bottom: 18px; }
.process-heading.center-heading { max-width: 100%; text-align: center; }
.footer-logo-tld.block { display: block; }

/* ══════════════════════════════════════════
   REFINEMENTS
══════════════════════════════════════════ */

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 900;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--sage), var(--moss));
  transition: width .08s linear;
  pointer-events: none;
}

/* ── Back-to-top button ── */
.to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 700;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--pine); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), background .25s;
  box-shadow: 0 8px 24px rgba(42,47,38,0.22);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--moss); }
.to-top svg { width: 16px; height: 16px; }
.to-top svg path { stroke: var(--paper-w); }
@media (hover: none), (pointer: coarse) { .to-top { display: none; } }

/* ── Refined Enquire button: arrow slides in ── */
.btn-enquire {
  display: inline-flex; align-items: center; gap: 0;
  position: relative; overflow: hidden;
}
.btn-enquire .arr {
  display: inline-block; width: 0; opacity: 0;
  transition: width .3s var(--ease-out), opacity .3s var(--ease-out), margin-left .3s var(--ease-out);
  overflow: hidden;
}
.btn-enquire:hover .arr { width: 14px; opacity: 1; margin-left: 8px; }

/* ── Product number badge + availability ── */
.product-tag {
  position: absolute; top: 22px; left: 22px; z-index: 3;
  display: flex; align-items: center; gap: 8px;
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--paper-w); font-weight: 400;
  background: rgba(26,30,26,0.42); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 7px 13px; border-radius: 2px;
}
.product-tag .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--sage-soft);
  box-shadow: 0 0 0 0 rgba(168,201,167,0.6);
  animation: availPulse 2.6s ease-in-out infinite;
}
@keyframes availPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(168,201,167,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(168,201,167,0); }
}

/* ── Product visual: subtle vignette + grain for depth ── */
.product-visual::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 45%, transparent 55%, rgba(26,30,26,0.18) 100%);
  mix-blend-mode: multiply;
}

/* ── Staggered content reveal inside product rows ── */
.product-content > * {
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.product-row.in .product-content > * { opacity: 1; transform: none; }
.product-row.in .product-content > *:nth-child(1) { transition-delay: .05s; }
.product-row.in .product-content > *:nth-child(2) { transition-delay: .12s; }
.product-row.in .product-content > *:nth-child(3) { transition-delay: .19s; }
.product-row.in .product-content > *:nth-child(4) { transition-delay: .26s; }
.product-row.in .product-content > *:nth-child(5) { transition-delay: .33s; }

/* ── Eco stat count-up: keep layout stable while animating ── */
.eco-stat-num { font-variant-numeric: tabular-nums; }

/* ── Testimonial cards: lift + subtle border accent ── */
.tcard { border-top: 2px solid transparent; }
.tcard:hover { border-top-color: var(--sage); }

/* ── Section divider flourish under centred headings ── */
.center-heading::after {
  content: ''; display: block; width: 40px; height: 1px;
  background: var(--sage); margin: 22px auto 0;
}

/* ── Nav link underline grow ── */
.nav-links a { position: relative; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--moss);
  transition: width .28s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }

/* ── Hero CTA: subtle sheen on hover ── */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  transition: left .6s var(--ease-out);
}
.btn-primary:hover::before { left: 100%; }

/* ── Reduced-motion: silence the new flourishes ── */
@media (prefers-reduced-motion: reduce) {
  .product-content > * { opacity: 1 !important; transform: none !important; }
  .product-tag .dot { animation: none; }
  .scroll-progress { transition: none; }
}
.svg-defs { position: absolute; width: 0; height: 0; }

/* ── Contact form: honeypot + status messages ── */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}
.form-status {
  font-size: 13px; font-weight: 300; line-height: 1.6;
  margin-top: 4px; min-height: 1.2em;
}
.form-status.success { color: var(--moss); }
.form-status.error { color: #9a4a3a; }
.btn-send:disabled { opacity: 0.6; cursor: default; }
