/* Tennessee Stone Depot — V3 */

:root {
  --forest: #303B2A;
  --forest-d: #252922;
  --olive: #687157;
  --copper: #B47A43;
  --copper-d: #96632F;
  --cream: #F4EEE2;
  --paper: #FBF8F1;
  --border: #D9CCBA;
  --ink: #252922;
  --ink-2: #4A4E43;
  --ink-3: #6E7268;
  --white: #FFFFFF;

  --serif: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --s-1: .5rem;  --s-2: .75rem; --s-3: 1rem;  --s-4: 1.5rem;
  --s-5: 2rem;   --s-6: 3rem;   --s-7: 4rem;  --s-8: 6rem;
  --s-9: 8rem;

  --wrap: 1240px;
  --r: 2px;
  --shadow: 0 1px 2px rgba(37,41,34,.05), 0 8px 24px -12px rgba(37,41,34,.18);
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.018em;
  font-variation-settings: 'opsz' 96, 'SOFT' 0, 'WONK' 1;
  text-wrap: balance;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--forest); color: var(--cream);
  padding: var(--s-2) var(--s-4); text-decoration: none;
}
.skip:focus { left: var(--s-3); top: var(--s-3); }

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

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--s-4); }
@media (min-width: 700px) { .wrap { padding-inline: var(--s-5); } }

.section { padding-block: clamp(3.5rem, 2rem + 6vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.section--forest { background: var(--forest); color: var(--cream); }
.section--forest h2, .section--forest h3 { color: var(--cream); }
.section--cream { background: var(--cream); }

.eyebrow {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: var(--s-3);
}
.section--forest .eyebrow { color: var(--copper); }

.sec-head {
  display: grid;
  gap: var(--s-4);
  align-items: end;
  margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem);
}
@media (min-width: 900px) {
  .sec-head { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: var(--s-7); }
}
.sec-head h2 { font-size: clamp(2rem, 1.2rem + 3.4vw, 3.6rem); }
.sec-head p { color: var(--ink-2); font-size: 1.0625rem; max-width: 46ch; }
.section--forest .sec-head p { color: #D5D8CC; }

.lede { font-size: 1.0625rem; color: var(--ink-2); max-width: 62ch; }

/* page intro: lede left, quick facts right */
.phead { display: grid; gap: var(--s-5); align-items: start; }
@media (min-width: 900px) {
  .phead { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: var(--s-7); }
}
.pfacts { display: grid; gap: 0; border-top: 1px solid var(--border); }
.pfacts div {
  display: flex; justify-content: space-between; gap: var(--s-3);
  padding: .7rem 0; border-bottom: 1px solid var(--border);
}
.pfacts dt, .pfacts .k {
  font-family: var(--sans); font-size: .8125rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--olive);
}
.pfacts .v { font-family: var(--sans); font-size: .9375rem; color: var(--ink); text-align: right; }
.pfacts a.v { color: var(--copper-d); text-decoration: none; font-weight: 600; }
.pfacts a.v:hover { text-decoration: underline; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s-2);
  font-family: var(--sans);
  font-size: .8125rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 1.05rem 1.75rem;
  border: 1px solid transparent;
  border-radius: var(--r);
  text-decoration: none;
  cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--copper); color: #fff; }
.btn--primary:hover { background: var(--copper-d); }
.btn--ghost { border-color: rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn--cream { background: var(--cream); color: var(--forest-d); }
.btn--cream:hover { background: #fff; }
.btn .arw { transition: transform .22s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.tlink {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .8125rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--copper);
  text-decoration: none;
  transition: color .2s var(--ease);
}
.tlink .arw { transition: transform .22s var(--ease); }
.tlink:hover { color: var(--copper-d); }
.tlink:hover .arw { transform: translateX(4px); }
.section--forest .tlink { color: var(--copper); }

/* ---------- utility bar ---------- */
.util {
  background: var(--forest-d);
  color: #C9CCC0;
  font-size: .8125rem;
}
.util .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4);
  min-height: 2.5rem;
}
.util a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
.util a:hover { color: var(--cream); }
.util strong { font-weight: 600; color: #E4E7DC; }
@media (max-width: 760px) { .util { display: none; } }

/* ---------- header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,248,241,.94);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.hdr.is-stuck { box-shadow: 0 1px 0 var(--border), 0 10px 30px -22px rgba(37,41,34,.5); border-color: var(--border); }

.hdr .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4);
  min-height: 5.25rem;
}

.brand { display: flex; align-items: center; gap: var(--s-3); text-decoration: none; flex: 0 0 auto; }
.brand img {
  width: 116px; height: 116px;
  border-radius: 50%;
  margin-block: -1.25rem;
}
.brand-txt { display: none; }

.nav { display: flex; align-items: center; gap: clamp(1rem, .3rem + 1.5vw, 2rem); }
.nav a {
  font-size: .9375rem; font-weight: 500;
  color: var(--ink-2); text-decoration: none;
  padding-block: .35rem;
  border-bottom: 1.5px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.nav a:hover, .nav a.is-active { color: var(--ink); border-color: var(--copper); }

.hdr-cta { flex: 0 0 auto; }
.hdr .btn--outline { padding: .85rem 1.3rem; font-size: .75rem; }

.navtoggle {
  display: none;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: var(--r);
  padding: .7rem 1rem;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .nav, .hdr-cta { display: none; }
  .navtoggle { display: block; }
  .hdr .wrap { min-height: 4.75rem; }
  .brand img { width: 84px; height: 84px; margin-block: -.6rem; }
}

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 150;
  background: var(--forest);
  color: var(--cream);
  padding: var(--s-5) var(--s-4) var(--s-6);
  display: flex; flex-direction: column;
  overflow-y: auto;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform .38s var(--ease), visibility .38s;
}
.drawer.is-open { transform: translateY(0); visibility: visible; }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--s-6); }
.drawer-top img { width: 68px; height: 68px; border-radius: 50%; }
.drawer-close {
  background: transparent; border: 1px solid rgba(255,255,255,.45);
  color: var(--cream); border-radius: var(--r);
  padding: .7rem 1rem; font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
}
.drawer nav { display: flex; flex-direction: column; gap: var(--s-1); }
.drawer nav a {
  font-family: var(--serif);
  font-size: 1.75rem; font-weight: 600;
  color: var(--cream); text-decoration: none;
  padding-block: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.drawer .drawer-actions { margin-top: var(--s-6); display: grid; gap: var(--s-2); }
.drawer .drawer-meta { margin-top: var(--s-5); font-size: .875rem; color: #C9CCC0; line-height: 1.8; }
.drawer .drawer-meta a { color: inherit; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: clamp(30rem, 22rem + 34vw, 44rem);
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--forest-d);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(24,27,21,.90) 0%, rgba(24,27,21,.74) 34%, rgba(24,27,21,.34) 62%, rgba(24,27,21,.20) 100%);
}
.hero .wrap { position: relative; z-index: 2; padding-block: var(--s-8); }
.hero-in { max-width: 40rem; color: #fff; }
.hero h1 {
  font-size: clamp(2.6rem, 1.3rem + 5.4vw, 5.1rem);
  color: #F7F3EA;
  margin-bottom: var(--s-4);
}
.hero p {
  font-size: clamp(1.0625rem, 1rem + .3vw, 1.25rem);
  color: #E2E5D9;
  max-width: 34rem;
  margin-bottom: var(--s-5);
}
.hero-btns { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* trust strip */
.trust { background: var(--cream); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; }
@media (min-width: 700px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-item {
  display: flex; align-items: center; gap: var(--s-3);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--border);
}
.trust-item:last-child { border-bottom: 0; }
@media (min-width: 700px) {
  .trust-item { padding: var(--s-5) var(--s-4); border-bottom: 0; border-right: 1px solid var(--border); justify-content: center; }
  .trust-item:first-child { padding-left: 0; }
  .trust-item:last-child { border-right: 0; }
}
.trust-num {
  font-family: var(--serif); font-weight: 700;
  font-size: 2rem; line-height: 1;
  color: var(--forest);
  flex: 0 0 auto;
}
.trust-lab {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-2); line-height: 1.45;
}

/* ---------- jump chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-7); }
.chips a {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .75rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--white);
  color: var(--ink-2);
  text-decoration: none;
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.chips a:hover { border-color: var(--copper); color: var(--ink); background: var(--cream); }

/* ---------- collection blocks ---------- */
.coll { margin-bottom: clamp(3rem, 2rem + 3vw, 5rem); }
.coll:last-child { margin-bottom: 0; }
.coll-head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: var(--s-2) var(--s-4);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--s-5);
}
.coll-head h3 { font-size: clamp(1.6rem, 1.1rem + 2vw, 2.5rem); }
.coll-head .desc { font-size: .9375rem; color: var(--ink-3); }

.cards { display: grid; gap: var(--s-4); }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.card:hover { border-color: var(--copper); box-shadow: var(--shadow); transform: translateY(-2px); }
.card-img { aspect-ratio: 4/3; background: var(--cream); overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-img img { transform: scale(1.035); }
.card-body { padding: var(--s-4); display: flex; flex-direction: column; gap: var(--s-2); flex: 1; }
.card-body h4 { font-size: 1.375rem; }
.card-body p { font-size: .9375rem; color: var(--ink-2); flex: 1; }
.card-body .tlink { margin-top: var(--s-1); }

/* ---------- photo grids ---------- */
.pgrid { display: grid; gap: var(--s-3); grid-template-columns: 1fr; }
@media (min-width: 620px) { .pgrid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .pgrid { grid-template-columns: repeat(4, 1fr); } }
.pgrid figure {
  aspect-ratio: 4/3;
  background: var(--cream);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
}
.pgrid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pgrid figure:hover img { transform: scale(1.04); }

/* masonry gallery (photo only) */
.masonry { columns: 1; column-gap: var(--s-3); }
@media (min-width: 620px) { .masonry { columns: 2; } }
@media (min-width: 1000px) { .masonry { columns: 3; } }
.masonry figure {
  break-inside: avoid;
  margin: 0 0 var(--s-3);
  border-radius: var(--r);
  overflow: hidden;
  background: rgba(255,255,255,.06);
}
.masonry img { width: 100%; transition: transform .5s var(--ease), opacity .3s var(--ease); }
.masonry figure:hover img { transform: scale(1.03); }

/* ---------- split ---------- */
.split { display: grid; gap: var(--s-5); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: repeat(2, 1fr); gap: clamp(2.5rem, 1rem + 5vw, 5rem); }
  .split--rev .split-media { order: 2; }
}
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r); }
.split-note {
  background: var(--forest);
  color: var(--cream);
  padding: var(--s-4);
  border-radius: var(--r);
  max-width: 22rem;
}
@media (min-width: 900px) {
  .split-note { position: absolute; right: -2rem; bottom: -1.5rem; }
}
.split-note strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; display: block; }
.split-note span { font-size: .875rem; color: #C9CCC0; }
.split-body h2 { font-size: clamp(1.9rem, 1.2rem + 3vw, 3.4rem); margin-bottom: var(--s-4); }
.split-body p { color: var(--ink-2); margin-bottom: var(--s-3); max-width: 46ch; }
.split-body .tlink { margin-top: var(--s-2); }

/* ---------- delivery band ---------- */
.band { display: grid; gap: var(--s-4); align-items: center; }
@media (min-width: 980px) { .band { grid-template-columns: minmax(0,1.1fr) minmax(0,1fr) auto; gap: var(--s-6); } }
.band h2 { font-size: clamp(1.9rem, 1.2rem + 3vw, 3.2rem); }
.band p { color: #D5D8CC; max-width: 40ch; }

/* ---------- reviews ---------- */
.revs { display: grid; gap: var(--s-4); }
@media (min-width: 860px) { .revs { grid-template-columns: repeat(3, 1fr); } }
.rev {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--copper);
  border-radius: var(--r);
  padding: var(--s-5) var(--s-4);
  display: flex; flex-direction: column; gap: var(--s-3);
}
.stars { color: var(--copper); letter-spacing: .22em; font-size: .875rem; }
.rev blockquote {
  font-family: var(--serif);
  font-size: 1.125rem; font-weight: 400;
  line-height: 1.5;
  flex: 1;
}
.rev cite {
  font-style: normal;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- contact ---------- */
.contact { position: relative; overflow: hidden; }
.contact-bg { position: absolute; inset: 0; }
.contact-bg img { width: 100%; height: 100%; object-fit: cover; }
.contact .wrap { position: relative; z-index: 2; padding-block: clamp(3rem, 2rem + 5vw, 6rem); display: flex; justify-content: flex-end; }
.contact-card {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(1.75rem, 1rem + 3vw, 3rem);
  border-radius: var(--r);
  max-width: 32rem;
  width: 100%;
}
.contact-card h2 { font-size: clamp(1.9rem, 1.2rem + 3vw, 3.2rem); margin-bottom: var(--s-3); }
.contact-card p { color: #D5D8CC; margin-bottom: var(--s-5); }
.contact-card .hero-btns .btn { flex: 1 1 12rem; padding-inline: var(--s-3); }
.contact-addr { display: block; margin-top: var(--s-4); color: #C9CCC0; text-decoration: none; font-size: .9375rem; line-height: 1.6; }
.contact-addr:hover { color: var(--cream); text-decoration: underline; }

/* ---------- forms ---------- */
.form { display: grid; gap: var(--s-3); }
@media (min-width: 700px) { .form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-3); } }
.field { display: grid; gap: .4rem; }
.field label {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-2);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 1rem;
  transition: border-color .2s var(--ease);
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--copper); outline: none; box-shadow: 0 0 0 3px rgba(180,122,67,.16); }
.form-status { font-size: .9375rem; color: var(--olive); min-height: 1.4rem; }
.form-note { margin: 0; font-size: .875rem; color: var(--ink-2); }
.form-honey {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}
.calc-context {
  margin: 0 0 var(--s-4);
  padding: var(--s-3);
  background: var(--cream);
  border-left: 3px solid var(--copper);
  border-radius: var(--r);
}
.calc-context .eyebrow { margin-bottom: var(--s-2); }
.calc-context > p:not(.eyebrow) {
  white-space: pre-line;
  font-size: .875rem;
  color: var(--ink-2);
  line-height: 1.6;
}
.calc-context-clear {
  margin-top: var(--s-2);
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
}
.delivery-choice {
  display: grid;
  gap: var(--s-2);
  padding: var(--s-3) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.delivery-choice .btn { justify-self: start; }
.delivery-choice .btn[aria-pressed="true"] {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--cream);
}
.delivery-address {
  display: grid;
  gap: var(--s-3);
  margin: 0;
  padding: var(--s-4);
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--cream);
}
.delivery-address legend {
  padding: 0 var(--s-2);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 650;
  color: var(--forest);
}
.optional {
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

/* ---------- calculator ---------- */
.calc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  display: grid; gap: var(--s-5);
}
@media (min-width: 900px) { .calc { grid-template-columns: minmax(0,1fr) minmax(0,.85fr); gap: var(--s-7); align-items: start; } }
.calc-inputs { display: grid; gap: var(--s-4); }
.radios { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.radios label {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: .7rem 1.1rem;
  font-size: .875rem; font-weight: 500;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  text-transform: none; letter-spacing: 0; color: var(--ink);
}
.radios input { position: absolute; opacity: 0; pointer-events: none; }
.radios label:has(input:checked) { border-color: var(--copper); background: var(--cream); font-weight: 600; }
.radios label:has(input:focus-visible) { outline: 2px solid var(--copper); outline-offset: 2px; }

.calc-out { background: var(--cream); border-radius: var(--r); padding: var(--s-4); display: grid; gap: var(--s-3); }
.calc-row { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-3); padding-bottom: var(--s-3); border-bottom: 1px solid var(--border); }
.calc-row:last-of-type { border-bottom: 0; padding-bottom: 0; }
.calc-row dt { font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); }
.calc-row dd { font-family: var(--serif); font-size: 1.75rem; font-weight: 700; color: var(--forest); }
.calc-note { font-size: .8125rem; color: var(--ink-3); line-height: 1.6; }
.calc-quote {
  display: grid;
  gap: var(--s-2);
  margin-top: var(--s-2);
  padding-top: var(--s-3);
  border-top: 1px solid var(--border);
}
.calc-quote .btn { width: 100%; }
.calc-quote .calc-note { margin: 0; }

/* ---------- quote confirmation ---------- */
.thanks {
  min-height: 62vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(30,43,26,.91), rgba(30,43,26,.74)),
    url("assets/stone/gallery/chestnut-cream-home.webp") center/cover;
}
.thanks-card {
  max-width: 46rem;
  padding: clamp(1.75rem, 1rem + 4vw, 3.5rem);
  background: var(--cream);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
}
.thanks-card h1 {
  margin-bottom: var(--s-3);
  font-size: clamp(2.25rem, 1.4rem + 4vw, 4.5rem);
}
.thanks-card .lede { margin-bottom: var(--s-5); }

/* ---------- tables ---------- */
.tbl-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r); background: var(--white); -webkit-overflow-scrolling: touch; }
.tbl-hint {
  display: none; margin-top: var(--s-2);
  font-family: var(--sans); font-size: .8125rem; color: var(--olive);
}
@media (max-width: 760px) { .tbl-hint { display: block; } }
table { width: 100%; border-collapse: collapse; font-size: .9375rem; min-width: 34rem; }
caption { text-align: left; padding: var(--s-3) var(--s-4); font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); border-bottom: 1px solid var(--border); }
th, td { text-align: left; padding: .85rem var(--s-4); border-bottom: 1px solid var(--border); }
thead th { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); background: var(--cream); }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: rgba(244,238,226,.5); }

/* ---------- footer ---------- */
.ftr { background: var(--forest-d); color: #C9CCC0; padding-block: var(--s-6); font-size: .9375rem; }
.ftr .wrap { display: grid; gap: var(--s-4); align-items: center; }
@media (min-width: 900px) { .ftr .wrap { grid-template-columns: auto 1fr auto; gap: var(--s-6); } }
.ftr-brand { display: flex; align-items: center; gap: var(--s-3); }
.ftr-brand img { width: 52px; height: 52px; border-radius: 50%; }
.ftr-brand span { font-family: var(--serif); font-size: 1.0625rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--cream); }
.ftr-tag { color: #9DA294; }
@media (min-width: 900px) { .ftr-tag { text-align: center; } }
.ftr-links { display: flex; flex-wrap: wrap; gap: var(--s-4); }
.ftr-links a { color: var(--cream); text-decoration: none; font-weight: 500; }
.ftr-links a:hover { text-decoration: underline; }
.ftr-legal { margin-top: var(--s-5); padding-top: var(--s-4); border-top: 1px solid rgba(255,255,255,.1); font-size: .8125rem; color: #7E836F; }
@media (min-width: 900px) { .ftr .wrap.ftr-legal-wrap { display: block; } }

/* ---------- legal pages ---------- */
.legal-page { background: var(--cream); }
.legal-head { border-bottom: 1px solid var(--border); }
.legal-head h1 { font-size: clamp(2.1rem, 1.3rem + 3.6vw, 3.8rem); margin-bottom: var(--s-3); }
.legal-meta { color: var(--ink-3); font-size: .875rem; }
.legal-copy { max-width: 48rem; }
.legal-copy h2 { font-size: clamp(1.45rem, 1.15rem + 1vw, 1.9rem); margin: var(--s-6) 0 var(--s-2); }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy h3 { font-family: var(--sans); font-size: 1rem; margin: var(--s-4) 0 var(--s-2); }
.legal-copy p,
.legal-copy li { color: var(--ink-2); }
.legal-copy p { margin-bottom: var(--s-3); }
.legal-copy ul,
.legal-copy ol { padding-left: 1.25rem; margin: 0 0 var(--s-3); }
.legal-copy ol { padding-left: 1.4rem; }
.legal-copy ol li { padding-left: .15rem; }
.legal-copy ol li::marker { font-variant-numeric: tabular-nums lining-nums; color: var(--ink-3); }
.legal-copy li + li { margin-top: .5rem; }
.legal-copy a { color: var(--forest); text-underline-offset: .16em; }
.legal-note { margin-top: var(--s-6); padding-top: var(--s-4); border-top: 1px solid var(--border); font-size: .875rem; }

/* ---------- collection page ---------- */
.chero { position: relative; min-height: clamp(20rem, 14rem + 20vw, 30rem); display: flex; align-items: flex-end; overflow: hidden; background: var(--forest-d); }
.chero-bg { position: absolute; inset: 0; }
.chero-bg img { width: 100%; height: 100%; object-fit: cover; }
.chero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(24,27,21,.95) 0%, rgba(24,27,21,.78) 42%, rgba(24,27,21,.44) 74%, rgba(24,27,21,.34) 100%),
    linear-gradient(to right, rgba(24,27,21,.6) 0%, rgba(24,27,21,.18) 62%, rgba(24,27,21,0) 100%);
}
.chero .wrap { position: relative; z-index: 2; padding-block: var(--s-6); color: #fff; }
.chero h1 { font-size: clamp(2.2rem, 1.3rem + 4.4vw, 4.2rem); color: #F7F3EA; margin-bottom: var(--s-3); }
.chero p { color: #E2E5D9; max-width: 40rem; margin-bottom: var(--s-4); }
.backlink { display: inline-flex; align-items: center; gap: .5rem; font-size: .8125rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #CFD3C5; text-decoration: none; margin-bottom: var(--s-4); }
.backlink:hover { color: #fff; }

.gsec { margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4rem); }
.gsec:last-child { margin-bottom: 0; }
.gsec-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: var(--s-2); padding-bottom: var(--s-3); border-bottom: 1px solid var(--border); margin-bottom: var(--s-4); }
.gsec-head h2 { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem); }
.gsec-count { font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }

.others { display: grid; gap: var(--s-3); }
@media (min-width: 640px) { .others { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .others { grid-template-columns: repeat(4, 1fr); } }
.other {
  display: block; position: relative; aspect-ratio: 3/2;
  border-radius: var(--r); overflow: hidden; text-decoration: none;
}
.other img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.other::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(24,27,21,.85), rgba(24,27,21,.15)); }
.other span {
  position: absolute; left: var(--s-3); right: var(--s-3); bottom: var(--s-3); z-index: 2;
  font-family: var(--serif); font-size: 1.125rem; font-weight: 600; color: #F7F3EA;
}
.other:hover img { transform: scale(1.05); }

/* ---------- eyebrow override ----------
   Must sit after .hero p / .sec-head p / .split-body p / .band p / .chero p,
   all of which are (0,1,1) and would otherwise win on source order. */
p.eyebrow {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper);
  max-width: none;
  margin-bottom: var(--s-3);
}
.section--forest p.eyebrow,
.contact-card p.eyebrow,
.chero p.eyebrow { color: var(--copper); }

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } }

/* ---------- tonnage calculator ---------- */
.calc-inputs select{
  width:100%; padding:.7rem .8rem; font:inherit; font-size:1rem;
  color:var(--ink); background:var(--paper);
  border:1px solid var(--border); border-radius:var(--r);
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23687157' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right .8rem center;
  padding-right:2.2rem;
}
.calc-inputs select:focus-visible{ outline:2px solid var(--copper); outline-offset:1px; }
.field-help{ margin:.45rem 0 0; font-size:.85rem; color:var(--olive); max-width:none; }
.calc-waste-row{ margin-top:var(--s-2); }
.calc-inputs .check{
  display:flex; align-items:flex-start; gap:.6rem;
  font-size:.9rem; line-height:1.45; font-weight:400;
  letter-spacing:normal; text-transform:none;
  color:var(--ink); cursor:pointer;
}
.calc-inputs .check input{
  margin:.15rem 0 0; accent-color:var(--copper);
  flex:0 0 auto; width:1rem; height:1rem;
}
.calc-inputs .check span{ flex:1 1 auto; min-width:0; }
.calc-row--lead dd{ font-size:1.6rem; color:var(--copper); font-weight:600; }
.calc-basis{
  margin-top:var(--s-3); border-top:1px solid var(--border); padding-top:var(--s-2);
}
.calc-basis summary{
  cursor:pointer; font-size:.9rem; color:var(--olive);
  letter-spacing:.02em; padding:.3rem 0;
}
.calc-basis summary:hover{ color:var(--copper); }
.calc-basis[open] summary{ margin-bottom:var(--s-2); color:var(--ink); }
.calc-basis .tbl{ font-size:.9rem; }
[hidden]{ display:none !important; }
.calc-row--lead dd{ white-space:nowrap; }
@media (max-width:480px){
  .calc-row--lead dd{ font-size:1.35rem; }
  .calc-out .calc-row dt{ max-width:9rem; }
}
.calc-warn{
  margin:var(--s-2) 0 0; padding:.7rem .85rem;
  font-size:.88rem; line-height:1.45; color:var(--forest-d);
  background:#F6E9DA; border-left:3px solid var(--copper);
  border-radius:var(--r); max-width:none;
}
#calc-fields{ margin-top:var(--s-2); }

/* keep result values on one line at every width */
.calc-row dd{ white-space:nowrap; }
@media (max-width:480px){
  .calc-out .calc-row{ display:block; }
  .calc-out .calc-row dt{ max-width:none; margin-bottom:.15rem; }
  .calc-row dd{ font-size:1.5rem; }
  .calc-row--lead dd{ font-size:1.5rem; }
}
