/* =========================================================
   Emberwell Roasters — styles
   Palette: warm cream, deep espresso, ember copper, sage
   Type: Fraunces (display serif) + Archivo (body)
   ========================================================= */

:root {
  --cream:      #f4ece0;
  --cream-deep: #ece0cf;
  --paper:      #fbf6ee;
  --espresso:   #241811;
  --coffee:     #3a281d;
  --bark:       #5a3d2b;
  --ember:      #c05a2b;
  --ember-deep: #9c421c;
  --copper:     #d98a4e;
  --sage:       #7a8564;
  --sage-deep:  #55613f;
  --gold:       #e2b657;
  --ink:        #2b2019;
  --muted:      #6f5f52;

  --radius:   18px;
  --radius-lg: 30px;
  --shadow:   0 22px 50px -28px rgba(36, 24, 17, .55);
  --shadow-sm: 0 10px 26px -18px rgba(36, 24, 17, .55);
  --wrap: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Archivo', -apple-system, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

.wrap { width: min(var(--wrap), 92vw); margin-inline: auto; }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--espresso); color: var(--cream);
  padding: 10px 16px; border-radius: 10px; z-index: 200;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 3px;
  border-radius: 4px;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--ember-deep);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--espresso);
}
.section-title em { font-style: italic; color: var(--ember-deep); }

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-head { max-width: 620px; margin-bottom: 3rem; }
.section-lede { color: var(--muted); font-size: 1.08rem; margin-top: 1rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-weight: 600; font-size: .98rem;
  padding: .92rem 1.7rem;
  border-radius: 100px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ember); color: var(--paper);
  box-shadow: 0 12px 26px -12px rgba(156, 66, 28, .7);
}
.btn-primary:hover { background: var(--ember-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--espresso);
  border-color: rgba(58, 40, 29, .28);
}
.btn-ghost:hover { border-color: var(--espresso); background: rgba(58,40,29,.05); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 236, 224, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 8px 30px -22px rgba(36,24,17,.6);
  border-bottom-color: rgba(90,61,43,.14);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--espresso); }
.brand-mark { color: var(--ember); display: grid; place-items: center; }
.brand-name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.35rem;
  line-height: 1; letter-spacing: -.01em; display: flex; flex-direction: column;
}
.brand-sub {
  font-family: var(--font-body); font-weight: 600;
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ember-deep); margin-top: 2px;
}

.nav-links { list-style: none; display: flex; align-items: center; gap: 2rem; padding: 0; }
.nav-links a { text-decoration: none; font-weight: 500; color: var(--coffee); font-size: .98rem; position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--ember); transition: width .28s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--espresso); color: var(--cream);
  padding: .6rem 1.15rem; border-radius: 100px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav-cta:hover { background: var(--bark); transform: translateY(-2px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 8px;
}
.nav-toggle span { width: 26px; height: 2.5px; background: var(--espresso); border-radius: 4px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(217,138,78,.28), transparent 55%),
    radial-gradient(90% 80% at -10% 110%, rgba(122,133,100,.22), transparent 55%),
    linear-gradient(180deg, var(--paper), var(--cream));
  overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 7vw, 6rem);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--espresso);
  margin: .6rem 0 1.4rem;
}
.hero-title em { font-style: italic; color: var(--ember-deep); }
.hero-lede { font-size: 1.15rem; color: var(--muted); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0 2.5rem; }

.hero-stats { list-style: none; display: flex; gap: 2.4rem; padding: 0; border-top: 1px solid rgba(90,61,43,.2); padding-top: 1.6rem; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--ember-deep); line-height: 1; }
.hero-stats span { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-top: .35rem; }

/* hero visual */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 380px; }
.cup-scene { position: relative; width: 280px; height: 300px; }
.saucer {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  width: 250px; height: 44px; border-radius: 50%;
  background: linear-gradient(180deg, #efe0cc, #d8c3a6);
  box-shadow: var(--shadow), inset 0 3px 6px rgba(255,255,255,.5);
}
.cup {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  width: 180px; height: 165px;
}
.cup-body {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #fff8ef 0%, #e9d6bd 60%, #d9c2a4 100%);
  border-radius: 14px 14px 90px 90px / 14px 14px 60px 60px;
  box-shadow: var(--shadow), inset 0 -14px 24px rgba(90,61,43,.18);
  overflow: hidden; position: relative;
}
.coffee-surface {
  position: absolute; top: 12px; left: 12px; right: 12px; height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #6a4327, var(--espresso) 70%);
  box-shadow: inset 0 3px 8px rgba(0,0,0,.4);
}
.cup-handle {
  position: absolute; right: -34px; top: 44px;
  width: 52px; height: 62px;
  border: 15px solid #e6d2b6; border-left: none;
  border-radius: 0 40px 40px 0;
  box-shadow: var(--shadow-sm);
}
.bean {
  position: absolute; width: 26px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, #5a3823, #2c1a10);
  box-shadow: var(--shadow-sm);
}
.bean::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: linear-gradient(90deg, transparent 46%, rgba(0,0,0,.5) 48%, rgba(0,0,0,.5) 52%, transparent 54%); }
.bean-1 { top: 6px; left: 8px; transform: rotate(28deg); animation: float 5s var(--ease) infinite; }
.bean-2 { top: 60px; right: 0; transform: rotate(-18deg); animation: float 6s var(--ease) infinite .8s; }
.bean-3 { bottom: 8px; left: 24px; transform: rotate(48deg); animation: float 5.5s var(--ease) infinite .4s; }
@keyframes float { 50% { transform: translateY(-12px) rotate(20deg); } }

.hero-badge {
  position: absolute; top: 8px; right: 4px;
  width: 104px; height: 104px; border-radius: 50%;
  background: var(--espresso); color: var(--cream);
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-display); font-style: italic; font-size: .92rem; line-height: 1.2;
  box-shadow: var(--shadow);
  animation: spinBadge 18s linear infinite;
}
@keyframes spinBadge { to { transform: rotate(360deg); } }
.hero-badge span { animation: spinBadge 18s linear infinite reverse; }

/* steam */
.hero-steam { position: absolute; top: 30%; left: 50%; width: 120px; height: 120px; pointer-events: none; }
.hero-steam span {
  position: absolute; bottom: 0; width: 8px; height: 60px; border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.6), transparent);
  filter: blur(3px); opacity: 0;
}
.hero-steam span:nth-child(1) { left: 20px; animation: steam 4s ease-in infinite; }
.hero-steam span:nth-child(2) { left: 50px; animation: steam 4s ease-in infinite 1.3s; }
.hero-steam span:nth-child(3) { left: 80px; animation: steam 4s ease-in infinite 2.5s; }
@keyframes steam { 0% { opacity: 0; transform: translateY(0) scaleX(1); } 30% { opacity: .7; } 100% { opacity: 0; transform: translateY(-90px) scaleX(2.4); } }

/* marquee */
.marquee {
  border-top: 1px solid rgba(90,61,43,.16);
  border-bottom: 1px solid rgba(90,61,43,.16);
  background: var(--espresso);
  color: var(--cream);
  overflow: hidden; padding: .9rem 0;
}
.marquee-track { display: flex; gap: 1.6rem; white-space: nowrap; width: max-content; animation: scroll 32s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; letter-spacing: .01em; }
.marquee-track span:nth-child(even) { color: var(--copper); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- menu ---------- */
.menu { background: var(--cream); }
.menu-filters { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 2.5rem; }
.chip {
  border: 1.5px solid rgba(90,61,43,.3); background: transparent;
  padding: .55rem 1.2rem; border-radius: 100px;
  font-weight: 500; color: var(--coffee);
  transition: all .22s var(--ease);
}
.chip:hover { border-color: var(--ember); color: var(--ember-deep); }
.chip.is-active { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }

.bean-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.6rem; }

.bean-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid rgba(90,61,43,.12);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative; overflow: hidden;
}
.bean-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 6px;
  background: var(--bar-color, var(--ember));
}
.bean-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.bean-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: .3rem; }
.bean-origin { font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); }
.bean-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--espresso); line-height: 1.1; margin-top: .2rem; }
.roast-tag {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700;
  padding: .3rem .7rem; border-radius: 100px; white-space: nowrap;
  background: var(--tag-bg, #eee); color: var(--tag-fg, #333);
}
.bean-desc { color: var(--muted); font-size: .95rem; margin: .8rem 0 1rem; }
.bean-notes { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; }
.note {
  font-size: .74rem; padding: .28rem .7rem; border-radius: 100px;
  background: var(--cream-deep); color: var(--bark); font-weight: 500;
}
.bean-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px dashed rgba(90,61,43,.22); }
.bean-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--ember-deep); }
.bean-price small { font-family: var(--font-body); font-size: .72rem; color: var(--muted); font-weight: 500; }
.bean-strength { display: flex; gap: 4px; align-items: center; }
.bean-strength i { width: 8px; height: 16px; border-radius: 3px; background: rgba(90,61,43,.2); }
.bean-strength i.on { background: var(--bark); }

/* bar menu */
.bar-menu { margin-top: 4rem; background: var(--espresso); color: var(--cream); border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3.2rem); }
.bar-title { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; margin-bottom: 1.8rem; color: var(--paper); }
.bar-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem 3rem; }
.bar-group h4 { font-family: var(--font-body); text-transform: uppercase; letter-spacing: .18em; font-size: .74rem; color: var(--copper); margin-bottom: 1rem; }
.bar-item { display: flex; justify-content: space-between; align-items: baseline; gap: .8rem; padding: .55rem 0; border-bottom: 1px dashed rgba(244,236,224,.15); }
.bar-item .bi-name { font-weight: 500; }
.bar-item .bi-desc { display: block; font-size: .8rem; color: rgba(244,236,224,.6); font-weight: 400; }
.bar-item .bi-price { font-family: var(--font-display); color: var(--gold); white-space: nowrap; }
.bar-note { margin-top: 1.8rem; font-size: .9rem; color: rgba(244,236,224,.65); font-style: italic; }

/* ---------- story ---------- */
.story { background: linear-gradient(180deg, var(--cream), var(--cream-deep)); }
.story-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 3.5rem; align-items: center; }
.story-media { position: relative; min-height: 480px; }
.story-photo {
  position: absolute; border-radius: var(--radius); box-shadow: var(--shadow);
  background-size: cover; background-position: center;
}
.photo-a {
  width: 68%; height: 74%; top: 0; left: 0; z-index: 1;
  background-image: linear-gradient(135deg, rgba(36,24,17,.15), rgba(36,24,17,.45)), url("assets/roast.svg");
  background-color: var(--bark);
}
.photo-b {
  width: 52%; height: 52%; bottom: 8%; right: 0; z-index: 2;
  background-image: linear-gradient(135deg, rgba(36,24,17,.1), rgba(36,24,17,.35)), url("assets/beans.svg");
  background-color: var(--coffee);
  border: 6px solid var(--paper);
}
.story-quote {
  position: absolute; bottom: -6%; left: 4%; z-index: 3;
  background: var(--paper); border-radius: var(--radius); padding: 1.2rem 1.4rem;
  max-width: 260px; box-shadow: var(--shadow); border-left: 4px solid var(--ember);
}
.story-quote p { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--espresso); }
.story-quote span { display: block; margin-top: .6rem; font-size: .78rem; color: var(--muted); }

.story-copy p { color: var(--muted); margin-top: 1.2rem; font-size: 1.03rem; }
.story-copy .section-title { margin-top: .4rem; }

.story-timeline { list-style: none; padding: 0; margin: 2.2rem 0; display: grid; gap: 0; }
.story-timeline li { display: grid; grid-template-columns: 68px 1fr; gap: 1.2rem; padding: .9rem 0; border-top: 1px solid rgba(90,61,43,.2); }
.story-timeline li:last-child { border-bottom: 1px solid rgba(90,61,43,.2); }
.story-timeline .yr { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--ember-deep); }
.story-timeline .ev { color: var(--coffee); font-size: .98rem; }

.values { display: grid; gap: 1.1rem; margin-top: 2rem; }
.value { display: flex; gap: 1rem; align-items: flex-start; }
.value-ico { font-size: 1.5rem; line-height: 1; }
.value strong { color: var(--espresso); font-size: 1.02rem; }
.value p { margin-top: .2rem; font-size: .92rem; }

/* ---------- process ---------- */
.process { background: var(--espresso); color: var(--cream); }
.process .section-title { color: var(--paper); }
.process .section-lede { color: rgba(244,236,224,.7); }
.process .eyebrow { color: var(--copper); }
.process-steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step {
  background: rgba(244,236,224,.05); border: 1px solid rgba(244,236,224,.12);
  border-radius: var(--radius); padding: 1.8rem 1.5rem;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.step:hover { transform: translateY(-6px); background: rgba(244,236,224,.09); }
.step-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--copper); display: block; line-height: 1; }
.step h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin: .8rem 0 .5rem; color: var(--paper); }
.step p { color: rgba(244,236,224,.72); font-size: .95rem; }

/* ---------- testimonials ---------- */
.quotes { background: var(--cream-deep); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.quotes blockquote {
  background: var(--paper); border-radius: var(--radius); padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm); position: relative;
}
.quotes blockquote::before {
  content: "\201C"; font-family: var(--font-display); font-size: 4rem; color: var(--copper);
  position: absolute; top: -6px; left: 14px; line-height: 1; opacity: .55;
}
.quotes blockquote p { font-family: var(--font-display); font-size: 1.12rem; color: var(--espresso); position: relative; z-index: 1; }
.quotes cite { display: block; margin-top: 1rem; font-style: normal; font-size: .86rem; color: var(--muted); }

/* ---------- contact ---------- */
.contact { background: linear-gradient(180deg, var(--cream-deep), var(--cream)); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 3.5rem; align-items: start; }
.contact-lede { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; }
.contact-details { list-style: none; padding: 0; margin: 2rem 0; display: grid; gap: 1.2rem; }
.contact-details li { display: flex; gap: 1rem; align-items: flex-start; }
.ci-ico { font-size: 1.3rem; }
.contact-details strong { color: var(--espresso); }
.contact-details a { color: var(--ember-deep); text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }
.socials { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.socials a {
  text-decoration: none; font-weight: 600; font-size: .88rem; color: var(--coffee);
  padding: .5rem 1rem; border: 1.5px solid rgba(90,61,43,.28); border-radius: 100px;
  transition: all .22s var(--ease);
}
.socials a:hover { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }

.contact-form-wrap { background: var(--paper); border-radius: var(--radius-lg); padding: clamp(1.8rem, 3.5vw, 2.6rem); box-shadow: var(--shadow); border: 1px solid rgba(90,61,43,.1); }
.form-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--espresso); margin-bottom: 1.4rem; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; font-size: .88rem; color: var(--coffee); margin-bottom: .45rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: .85rem 1rem; border-radius: 12px;
  border: 1.5px solid rgba(90,61,43,.24); background: var(--cream);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ember); background: #fff;
  box-shadow: 0 0 0 4px rgba(192,90,43,.14);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0392b; background: #fdf1ef; }
.err { display: block; color: #b83224; font-size: .8rem; margin-top: .4rem; min-height: 1em; }
.form-status { margin-top: 1rem; font-weight: 600; font-size: .95rem; min-height: 1.3em; }
.form-status.ok { color: var(--sage-deep); }
.form-status.bad { color: #b83224; }

/* ---------- footer ---------- */
.site-footer { background: var(--espresso); color: var(--cream); padding: 4rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(244,236,224,.14); }
.footer-brand .brand-name { color: var(--paper); font-size: 1.5rem; }
.footer-brand p { color: rgba(244,236,224,.6); margin-top: .8rem; max-width: 32ch; }
.footer-nav { display: flex; flex-direction: column; gap: .7rem; }
.footer-nav a { color: rgba(244,236,224,.8); text-decoration: none; transition: color .2s; }
.footer-nav a:hover { color: var(--copper); }
.footer-signup label { display: block; font-weight: 600; margin-bottom: .7rem; color: var(--paper); }
.signup-row { display: flex; gap: .6rem; }
.signup-row input {
  flex: 1; min-width: 0; padding: .8rem 1rem; border-radius: 100px;
  border: 1.5px solid rgba(244,236,224,.25); background: rgba(244,236,224,.06); color: var(--cream);
}
.signup-row input::placeholder { color: rgba(244,236,224,.5); }
.signup-row input:focus { outline: none; border-color: var(--copper); }
.footer-signup small { display: block; margin-top: .7rem; font-size: .85rem; color: var(--copper); min-height: 1em; }
.footer-base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; padding-top: 1.6rem; color: rgba(244,236,224,.55); font-size: .84rem; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 300px; margin-bottom: 1rem; }
  .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .story-media { min-height: 420px; max-width: 460px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 76px; right: 0; left: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper);
    padding: 1rem 6vw 1.6rem;
    box-shadow: var(--shadow);
    clip-path: inset(0 0 100% 0); pointer-events: none;
    transition: clip-path .35s var(--ease);
  }
  .nav-links.open { clip-path: inset(0 0 0 0); pointer-events: auto; }
  .nav-links li { border-bottom: 1px solid rgba(90,61,43,.12); }
  .nav-links a { display: block; padding: .95rem 0; }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-cta { display: inline-block; margin-top: .8rem; text-align: center; }
}

@media (max-width: 560px) {
  .hero-stats { gap: 1.4rem; }
  .hero-stats strong { font-size: 1.6rem; }
  .process-steps { grid-template-columns: 1fr; }
  .signup-row { flex-direction: column; }
  .signup-row .btn { width: 100%; }
  .footer-base { flex-direction: column; }
}