/* ============================================================
   AGAINST THE GRAYNE LLC — EPOXY RIVER-POUR WORKSHOP / LIGHT
   Palette
     pour-canvas body   #F3F1EA
     cure-shelf text    #36322A
     river-verdigris    #175248  (primary)
     hardener-straw      #D9C36B  (tiny accents only)
     tape-grey           #918B80  (secondary text / hairlines)
     mold-plastic        #FAF9F4  (panels)
     drop-cloth          #E6E2D6  (soft section bands)
   No rgba on text. No opacity on decorative layers.
   ============================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #36322A;
  background-color: #F3F1EA;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #175248;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   EPOXY-LINE NAV — common header for homepage + secondary pages
   ============================================================ */
.epoxy-line-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: #FAF9F4;
  width: 100%;
}

/* Top pour-line band — flat decorative river-verdigris band with
   a gently uneven top edge (wave bumps) and three trapped bubbles. */
.epoxy-line-nav .pour-line-band {
  position: relative;
  height: 20px;
  overflow: hidden;
}

.epoxy-line-nav .pour-line-band .pour {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 3px;
  background-color: #175248;
}

/* uneven wavy top edge silhouette sitting above the deep pour */
.epoxy-line-nav .pour-line-band .lip {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background-color: #175248;
  border-radius: 0 0 46% 42%;
}

.epoxy-line-nav .pour-line-band .lip::before,
.epoxy-line-nav .pour-line-band .lip::after {
  content: "";
  position: absolute;
  top: -1px;
  height: 8px;
  width: 90px;
  background-color: #175248;
  border-radius: 50%;
}

.epoxy-line-nav .pour-line-band .lip::before {
  left: 8%;
}

.epoxy-line-nav .pour-line-band .lip::after {
  right: 22%;
  width: 60px;
}

/* three tiny trapped bubbles in hardener-straw, caught mid-band */
.epoxy-line-nav .bubble {
  position: absolute;
  bottom: 4px;
  width: 5px;
  height: 5px;
  background-color: #D9C36B;
  border-radius: 50%;
  z-index: 2;
}

.epoxy-line-nav .bubble.b1 { left: 18%; }
.epoxy-line-nav .bubble.b2 { left: 55%; width: 4px; height: 4px; }
.epoxy-line-nav .bubble.b3 { left: 80%; width: 6px; height: 6px; }

.epoxy-line-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.epoxy-line-nav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* small graduated mixing-cup glyph built in CSS */
.epoxy-line-nav .cup {
  position: relative;
  width: 20px;
  height: 26px;
  border: 2px solid #175248;
  border-radius: 2px 2px 4px 4px;
  flex: none;
}

.epoxy-line-nav .cup::before,
.epoxy-line-nav .cup::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  height: 1px;
  background-color: #175248;
}

.epoxy-line-nav .cup::before { top: 8px; }
.epoxy-line-nav .cup::after { top: 15px; }

.epoxy-line-nav .brand .wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #36322A;
  line-height: 1.15;
}

.epoxy-line-nav .brand .sub-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #918B80;
  margin-top: 2px;
}

.epoxy-line-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.epoxy-line-nav .nav-links a {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #918B80;
  padding: 8px 10px;
  transition: color 0.2s ease;
}

.epoxy-line-nav .nav-links a:hover,
.epoxy-line-nav .nav-links a.active {
  color: #175248;
  text-decoration: none;
}

.epoxy-line-nav .pour-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #175248;
  flex: none;
}

/* mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid #175248;
  color: #175248;
  font-size: 20px;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 3px;
  cursor: pointer;
}

/* ============================================================
   RIVER-POUR HERO
   ============================================================ */
.river-pour-hero {
  background-color: #F3F1EA;
  padding: 0;
}

.river-pour-hero .hero-upper {
  text-align: center;
  padding: 78px 24px 56px;
}

.eyebrow {
  display: inline-block;
  background-color: #175248;
  color: #FAF9F4;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 2px;
  margin-bottom: 26px;
}

.hero-upper h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: #36322A;
  max-width: 900px;
  margin: 0 auto 22px;
}

.hero-upper h1 .teal {
  color: #175248;
}

.hero-upper .subcopy {
  font-size: 18px;
  color: #918B80;
  max-width: 760px;
  margin: 0 auto 34px;
  line-height: 1.7;
}

.hero-cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background-color: #175248;
  color: #FAF9F4;
}

.btn-primary:hover {
  background-color: #0F3C34;
  color: #FAF9F4;
  text-decoration: none;
}

.btn-outline {
  background-color: #F3F1EA;
  color: #36322A;
  border-color: #36322A;
}

.btn-outline:hover {
  border-color: #175248;
  color: #175248;
  text-decoration: none;
}

.btn-dark {
  background-color: #36322A;
  color: #FAF9F4;
}

.btn-dark:hover {
  background-color: #175248;
  color: #FAF9F4;
  text-decoration: none;
}

.btn-light {
  background-color: #FAF9F4;
  color: #175248;
}

.btn-light:hover {
  background-color: #E6E2D6;
  color: #175248;
  text-decoration: none;
}

/* -- lower deck: pour bench band -- */
.pour-bench {
  background-color: #FAF9F4;
  border-top: 1px solid #175248;
  border-bottom: 1px solid #175248;
  overflow: hidden;
}

.pour-bench .bench-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 26px 0;
}

/* River table mid-pour illustration (CSS) */
.river-table {
  flex: 1 1 34%;
  display: flex;
  align-items: flex-end;
  min-width: 0;
  padding: 0 8px;
}

.slab {
  position: relative;
  height: 46px;
  width: 15%;
  border-radius: 3px;
  background-color: #A97C50;
}

.slab.left {
  border-top-right-radius: 46% 16px;
  border-right: none;
}

.slab.right {
  border-top-left-radius: 46% 16px;
  border-left: none;
  margin-left: 3px;
}

.slab::before,
.slab::after {
  content: "";
  position: absolute;
  left: 12%;
  width: 60%;
  height: 2px;
  background-color: #6E4A2C;
  border-radius: 2px;
}

.slab::before { top: 8px; }
.slab::after { top: 18px; left: 26%; }

.slab.right::before { left: 20%; }
.slab.right::after { top: 26px; left: 30%; }

/* resin channel between the two slabs */
.channel {
  flex: 1;
  position: relative;
  height: 50px;
  background-color: #175248;
  margin: 0 4px 0 -2px;
}

.channel::before {
  content: "";
  position: absolute;
  top: 3px;
  right: 1px;
  left: 1px;
  height: 2px;
  background-color: #F3F1EA;
  border-radius: 50%;
}

.channel .mini-bubble {
  position: absolute;
  border-radius: 50%;
  background-color: #D9C36B;
}

.channel .mini-bubble.t1 { width: 5px; height: 5px; top: 14px; left: 15%; }
.channel .mini-bubble.t2 { width: 3px; height: 3px; top: 26px; right: 22%; }

/* sealing tape strip along the mold-frame edge */
.tape-strip {
  flex: none;
  width: 16px;
  height: 10px;
  align-self: center;
  background-color: #D9C36B;
  border-radius: 2px;
  position: relative;
  margin: 0 6px 18px;
}

/* mixing bucket with stir stick and ratio ticks */
.bucket {
  position: relative;
  flex: none;
  width: 44px;
  height: 40px;
  border: 3px solid #175248;
  border-radius: 3px 3px 8px 8px;
  align-self: center;
  margin-right: 10px;
}

.bucket::before {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 12px;
  height: 1px;
  background-color: #175248;
}

.bucket::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #175248;
  top: 18px;
  left: 20px;
}

.bucket .stick {
  position: absolute;
  width: 4px;
  height: 52px;
  background-color: #A97C50;
  transform: rotate(14deg);
  top: -18px;
  left: 26px;
  border-radius: 2px;
}

/* heat gun chasing bubbles across the surface */
.heat-gun {
  position: relative;
  flex: none;
  align-self: center;
  width: 74px;
  height: 30px;
  margin: 0 10px 22px 4px;
}

.heat-gun .gun-body {
  position: absolute;
  top: 10px;
  left: 0;
  width: 40px;
  height: 12px;
  background-color: #36322A;
  border-radius: 4px;
}

.heat-gun .gun-nozzle {
  position: absolute;
  top: 13px;
  left: 40px;
  width: 16px;
  height: 6px;
  background-color: #36322A;
  border-radius: 0 3px 3px 0;
}

.heat-gun .ripple {
  position: absolute;
  border: 2px solid #175248;
  border-radius: 50%;
}

.heat-gun .ripple.r1 { width: 10px; height: 6px; top: 0; right: 0; }
.heat-gun .ripple.r2 { width: 18px; height: 10px; top: -2px; right: -4px; }

/* cure rack with two shelves and date tags */
.cure-rack {
  flex: none;
  align-self: center;
  position: relative;
  width: 74px;
  height: 74px;
  margin-right: 10px;
}

.cure-rack .post {
  position: absolute;
  width: 3px;
  background-color: #36322A;
  height: 74px;
}

.cure-rack .post.p-left { left: 2px; }
.cure-rack .post.p-right { right: 2px; }

.cure-rack .shelf {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #36322A;
}

.cure-rack .shelf.s1 { bottom: 18px; }
.cure-rack .shelf.s2 { bottom: 2px; }

.cure-rack .board {
  position: absolute;
  height: 8px;
  width: 30px;
  background-color: #A97C50;
  border-radius: 2px;
}

.cure-rack .board.b1 { top: 8px; left: 14px; }
.cure-rack .board.b2 { top: 26px; left: 30px; width: 26px; }
.cure-rack .board.b3 { top: 44px; left: 18px; }

.cure-rack .resin-top {
  position: absolute;
  height: 4px;
  background-color: #175248;
  right: 1px;
  left: 1px;
  top: 0;
}

.cure-rack .date-tag {
  position: absolute;
  width: 18px;
  height: 10px;
  background-color: #E6E2D6;
  border: 1px solid #918B80;
  font-size: 6px;
  color: #36322A;
  line-height: 10px;
  text-align: center;
}

.cure-rack .date-tag.d1 { bottom: 24px; right: 0; }
.cure-rack .date-tag.d2 { bottom: 8px; right: 10px; }

/* folded nitrile gloves on the bench corner */
.gloves {
  flex: none;
  align-self: flex-end;
  position: relative;
  width: 34px;
  height: 30px;
  margin: 0 8px;
}

.gloves .glove {
  position: absolute;
  width: 18px;
  height: 22px;
  background-color: #D9C36B;
  border-radius: 9px 9px 2px 2px;
}

.gloves .glove.g1 { left: 0; top: 4px; transform: rotate(-6deg); }
.gloves .glove.g2 { right: 0; top: 6px; }

/* stacked graduated mixing cups beside the rack */
.mix-cups {
  flex: none;
  align-self: center;
  width: 34px;
  height: 44px;
  position: relative;
}

.mix-cups .mc {
  position: absolute;
  left: 4px;
  border: 2px solid #175248;
  width: 24px;
}

.mix-cups .mc.m1 { bottom: 2px; height: 24px; border-radius: 2px 2px 5px 5px; }
.mix-cups .mc.m2 { bottom: 14px; height: 20px; border-radius: 2px 2px 5px 5px; left: 12px; }
.mix-cups .mc.m3 { bottom: 26px; height: 14px; border-radius: 2px 2px 5px 5px; left: -4px; }

.mix-cups .mc::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 7px;
  height: 1px;
  background-color: #175248;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec {
  padding: 76px 0;
}

.sec-head {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.sec-head .kicker {
  display: inline-block;
  color: #175248;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sec-head h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1.2;
  color: #36322A;
  margin-bottom: 16px;
}

.sec-head p {
  color: #918B80;
  font-size: 17px;
}

/* ============================================================
   CURE-RACK ROWS — six service rows
   ============================================================ */
.cure-rack-rows {
  background-color: #F3F1EA;
}

.cure-row {
  display: flex;
  align-items: stretch;
  background-color: #FAF9F4;
  border: 1px solid #175248;
  margin: 0 0 11px;
}

.cure-row .shelf-col {
  flex: 0 0 130px;
  background-color: #E6E2D6;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 10px;
}

.cure-row .shelf-col .rack-mini {
  position: relative;
  width: 76px;
  height: 64px;
}

.cure-row .shelf-col .rail {
  position: absolute;
  left: 3px;
  right: 3px;
  height: 3px;
  background-color: #36322A;
}

.cure-row .shelf-col .rail.r-top { top: 16px; }
.cure-row .shelf-col .rail.r-base { bottom: 16px; }

/* one small curing board per row, resin level varies by height */
.cure-row .shelf-col .shelf-line {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background-color: #175248;
}

.cure-row.s1 .shelf-col .shelf-line { bottom: 22px; }
.cure-row.s2 .shelf-col .shelf-line { top: 10px; }
.cure-row.s3 .shelf-col .shelf-line { top: 20px; }
.cure-row.s4 .shelf-col .shelf-line { bottom: 10px; }
.cure-row.s5 .shelf-col .shelf-line { top: 30px; }
.cure-row.s6 .shelf-col .shelf-line { bottom: 30px; }

.cure-row .shelf-col .mini-board {
  position: absolute;
  width: 30px;
  height: 8px;
  background-color: #A97C50;
  border-radius: 2px;
  left: 26px;
}

.cure-row.s1 .mini-board { bottom: 22px; }
.cure-row.s2 .mini-board { top: 10px; }
.cure-row.s3 .mini-board { top: 20px; }
.cure-row.s4 .mini-board { bottom: 10px; }
.cure-row.s5 .mini-board { top: 30px; }
.cure-row.s6 .mini-board { bottom: 30px; }

.cure-row .shelf-col .mini-board.resin {
  background-color: #175248;
  height: 4px;
}

/* tiny date tag under the shelf within the mini rack */
.cure-row .shelf-col .mini-date {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 9px;
  background-color: #FAF9F4;
  border: 1px solid #918B80;
  text-align: center;
  font-size: 6px;
  letter-spacing: 0.5px;
  color: #36322A;
  line-height: 9px;
}

.cure-row .row-body {
  flex: 1;
  padding: 30px 30px 30px 34px;
}

.cure-row .row-body h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  color: #36322A;
  margin-bottom: 12px;
}

.cure-row .row-body p {
  color: #918B80;
  margin-bottom: 8px;
  font-size: 16px;
}

.cure-row .row-body p:last-child {
  margin-bottom: 0;
}

.cure-row .row-body a.learn {
  color: #175248;
  font-weight: 600;
  font-size: 14px;
}

.cure-row .batch-tag {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 22px 24px;
  background-color: #FAF9F4;
  border-left: 1px solid #E6E2D6;
  min-width: 92px;
}

.batch-tag .chip {
  font-family: "Courier New", monospace;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #36322A;
  background-color: #F3F1EA;
  border: 1px solid #E6E2D6;
  padding: 6px 10px;
  margin-bottom: 8px;
  white-space: nowrap;
}

.batch-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #175248;
  margin-bottom: 8px;
}

.batch-tag .ratio {
  font-size: 11px;
  letter-spacing: 1px;
  color: #175248;
  text-transform: uppercase;
  white-space: nowrap;
}

.row-link {
  text-align: center;
  margin-top: 30px;
}

/* ============================================================
   METRIC BAND — solid cure-shelf band with four numerals
   ============================================================ */
.metric-band {
  background-color: #36322A;
  padding: 56px 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.metric-cell {
  text-align: center;
  padding: 12px 16px;
  border-right: 1px solid #175248;
}

.metric-cell:first-child {
  border-left: 1px solid #175248;
}

.metric-cell .num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 700;
  color: #F3F1EA;
  line-height: 1.1;
  margin-bottom: 8px;
}

.metric-cell .metric-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #175248;
  background-color: #36322A;
}

/* note: metric-label numbers sit on cured-light; use a soft verdigris
   tinted label for contrast without translucent text */
.metric-cell .metric-label {
  color: #63A79B;
}

/* ============================================================
   STATEMENT BAND — drop-cloth with left accent bar
   ============================================================ */
.statement-band {
  background-color: #E6E2D6;
  padding: 84px 0;
}

.statement-inner {
  max-width: 900px;
  margin: 0 auto;
  border-left: 4px solid #175248;
  padding-left: 34px;
}

.statement-inner p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.55;
  color: #36322A;
}

.statement-inner .attr {
  margin-top: 22px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #175248;
}

/* ============================================================
   PROCESS / OVERVIEW band for services (numbered pour stages)
   ============================================================ */
.process-band {
  background-color: #FAF9F4;
}

.proc-track {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pour-stage {
  position: relative;
  background-color: #F3F1EA;
  border: 1px solid #175248;
  padding: 26px 24px 26px 64px;
  counter-increment: step;
}

.pour-stage::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Courier New", monospace;
  font-size: 30px;
  color: #175248;
}

.pour-stage h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  color: #36322A;
  margin-bottom: 8px;
}

.pour-stage p {
  color: #918B80;
  font-size: 15px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background-color: #F3F1EA;
  text-align: center;
}

.cta-band h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  color: #175248;
  margin-bottom: 16px;
}

.cta-band p {
  color: #918B80;
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 30px;
}

/* ============================================================
   DEMOLD-TAP FOOTER
   ============================================================ */
.demold-tap-footer {
  background-color: #36322A;
  position: relative;
  z-index: 1;
}

.demold-tap-footer .mold-edge {
  height: 16px;
  background-color: #2D2A24;
  position: relative;
  border-bottom: 1px solid #918B80;
}

/* two release-agent dots */
.demold-tap-footer .mold-edge::before,
.demold-tap-footer .mold-edge::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #D9C36B;
  top: 5px;
}

.demold-tap-footer .mold-edge::before { left: 14%; }
.demold-tap-footer .mold-edge::after { left: 38%; }

/* tiny demold tap wedge at one end */
.demold-tap-footer .wedge {
  position: absolute;
  right: 3%;
  top: 0;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 14px solid #918B80;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 44px;
  padding-top: 60px;
  padding-bottom: 34px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.footer-col .f-cup {
  width: 22px;
  height: 28px;
  border: 2px solid #F3F1EA;
  border-radius: 2px 2px 5px 5px;
  position: relative;
  margin-bottom: 12px;
}

.footer-col .f-cup::before,
.footer-col .f-cup::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  height: 1px;
  background-color: #F3F1EA;
}

.footer-col .f-cup::before { top: 9px; }
.footer-col .f-cup::after { top: 16px; }

.footer-wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #F3F1EA;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-desc {
  color: #918B80;
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links-row {
  display: flex;
  gap: 40px;
}

.footer-link-group h5 {
  color: #F3F1EA;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-link-group ul {
  list-style: none;
}

.footer-link-group li {
  margin-bottom: 10px;
}

.footer-link-group a {
  color: #918B80;
  font-size: 14px;
}

.footer-link-group a:hover {
  color: #D9C36B;
  text-decoration: none;
}

/* right zone: contact stack */
.footer-contact-stack {
  color: #918B80;
  font-size: 14px;
  line-height: 1.9;
}

.footer-contact-stack a {
  color: #D9C36B;
}

.footer-contact-stack .stack-label {
  color: #F3F1EA;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-legal {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  border-top: 1px solid #524E44;
  position: relative;
  z-index: 1;
  text-align: center;
}

.footer-legal p {
  color: #918B80;
  font-size: 13px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.page-hero {
  background-color: #F3F1EA;
  text-align: center;
  padding: 64px 24px 50px;
}

.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  color: #36322A;
  margin-bottom: 14px;
}

.page-hero p {
  color: #918B80;
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.contact-info-panel {
  background-color: #FAF9F4;
  border: 1px solid #175248;
  padding: 30px;
}

.contact-info-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  color: #36322A;
  margin-bottom: 20px;
}

.info-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.info-line .glyph {
  flex: none;
  width: 34px;
  height: 34px;
  border: 2px solid #175248;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #175248;
}

.info-line .info-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #918B80;
  margin-bottom: 3px;
}

.info-line .info-value {
  color: #36322A;
  font-size: 15px;
}

.info-line .info-value a {
  color: #175248;
}

.hours-table {
  border-top: 1px solid #E6E2D6;
  margin-top: 8px;
  padding-top: 18px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid #F3F1EA;
  font-size: 14px;
  color: #36322A;
}

.hours-row span.day {
  color: #918B80;
}

.contact-form-wrap {
  background-color: #FAF9F4;
  border: 1px solid #175248;
  padding: 32px;
}

.contact-form-wrap h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  color: #36322A;
  margin-bottom: 6px;
}

.contact-form-wrap > p {
  color: #918B80;
  font-size: 15px;
  margin-bottom: 22px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #36322A;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  font: inherit;
  font-size: 16px;
  color: #36322A;
  background-color: #F3F1EA;
  border: 1px solid #C9C4B8;
  border-radius: 3px;
  padding: 12px 14px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: #175248;
  box-shadow: 0 0 0 2px #63A79B;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  margin-top: 14px;
  font-size: 15px;
}

.form-status.ok { color: #175248; }
.form-status.err { color: #8E3B2F; }

/* FAQ */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background-color: #FAF9F4;
  border: 1px solid #E6E2D6;
  margin-bottom: 12px;
}

.faq-item .faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font: inherit;
  font-size: 17px;
  font-weight: 600;
  color: #36322A;
  padding: 18px 54px 18px 20px;
  cursor: pointer;
  position: relative;
}

.faq-item .faq-q::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #175248;
}

.faq-item.open .faq-q::after {
  content: "−";
}

.faq-item .faq-a {
  display: none;
  padding: 0 20px 20px;
  color: #918B80;
  font-size: 15px;
}

.faq-item.open .faq-a {
  display: block;
}

/* ============================================================
   REVEAL / SCROLL effect classes
   ============================================================ */
.reveal {
  visibility: hidden;
  transform: translateY(18px);
}

.reveal.visible {
  visibility: visible;
  transform: translateY(0);
  transition: transform 0.6s ease;
}

noscript .reveal,
.no-js .reveal {
  visibility: visible;
  transform: none;
}

.metric-num .num,
.counter {
  will-change: contents;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .epoxy-line-nav .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #FAF9F4;
    flex-direction: column;
    align-items: stretch;
    display: none;
    border-top: 1px solid #E6E2D6;
    padding: 10px 0;
    box-shadow: 0 14px 18px #D8D3C6;
  }

  .epoxy-line-nav .nav-links.open {
    display: flex;
  }

  .epoxy-line-nav .nav-links a {
    padding: 14px 24px;
    border-bottom: 1px solid #F3F1EA;
  }

  .epoxy-line-nav .nav-links .pour-dot {
    display: none;
  }

  .hero-upper h1 { font-size: 38px; }

  .metric-grid { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }

  .proc-track { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .contact-grid { grid-template-columns: 1fr; }

  .cure-row { flex-direction: column; }
  .cure-row .shelf-col { flex: 0 0 auto; }
  .cure-row .batch-tag { border-left: none; border-top: 1px solid #E6E2D6; }
}

@media (max-width: 620px) {
  .hero-upper h1 { font-size: 30px; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .pour-bench { display: none; }
  .sec-head h2 { font-size: 30px; }
  .metric-cell .num { font-size: 34px; }
  .statement-inner p { font-size: 21px; }
  .footer-links-row { flex-wrap: wrap; gap: 24px; }
}

@media (prefers-color-scheme: dark) {
  /* This site is LIGHT-only by design; keep identity constant */
  body {
    background-color: #F3F1EA;
    color: #36322A;
  }
}
