/* ==========================================================================
   GraphiCraft — Craft Bookbinders & Diary Producers
   Design language: letterpress / hand-bindery. Warm dark ground, brass-gold
   foil accents, deep leather browns, and a hairline "stitched thread" motif
   used for dividers instead of generic numbered circles.
   ========================================================================== */

:root {
  /* Palette */
  --ink: #17130f;            /* near-black bindery ground */
  --ink-2: #1f1a15;          /* slightly lifted panel on ink */
  --leather: #3c2318;        /* deep leather brown */
  --leather-2: #5a3324;      /* lighter leather brown */
  --cream: #faf6ee;          /* page ground */
  --parchment: #f1e9d8;      /* card ground on cream */
  --gold: #c9974d;           /* brass foil */
  --gold-light: #e3c383;
  --gold-deep: #9c7434;
  --text-ink: #2a221a;
  --text-muted: #6b6055;
  --text-on-dark: #ece3d2;
  --text-on-dark-muted: #b3a794;
  --rule: rgba(201,151,77,0.35);
  --rule-dark: rgba(255,255,255,0.09);

  /* Type */
  --font-display: "Playfair Display", "Georgia", serif;
  --font-script: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; margin: 0; line-height: 1.12; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

::selection { background: var(--gold); color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

section[id] { scroll-margin-top: 96px; }
#contact { scroll-margin-top: 84px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-deep);
  display: inline-block;
}
.on-dark .eyebrow { color: var(--gold); }
.on-dark .eyebrow::before { background: var(--gold); }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 42px); color: var(--text-ink); }
.on-dark .section-head h2 { color: var(--text-on-dark); }
.section-head p.lede { margin-top: 16px; font-size: 17px; line-height: 1.7; color: var(--text-muted); }
.on-dark .section-head p.lede { color: var(--text-on-dark-muted); }

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 65%, var(--gold-deep));
  color: #241b0f;
  box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset, 0 8px 18px -8px rgba(0,0,0,0.55);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 12px 22px -8px rgba(0,0,0,0.6); }
.btn-outline-light {
  border-color: rgba(236,227,210,0.45);
  color: var(--text-on-dark);
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
.btn-outline-dark {
  border-color: rgba(42,34,26,0.3);
  color: var(--text-ink);
}
.btn-outline-dark:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.btn-text {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 3px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: gap 0.25s ease, color .2s ease;
}
.btn-text:hover { gap: 13px; color: var(--gold); }
.btn-text svg { width: 13px; height: 13px; }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 26px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow .35s ease;
}
.site-nav .container { display: flex; align-items: center; justify-content: space-between; }
.site-nav.is-scrolled {
  background: rgba(23,19,15,0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.6);
}
.brand { display: flex; align-items: center; }
.brand img { height: 72px; width: auto; transition: height .35s ease; }
.site-nav.is-scrolled .brand img { height: 56px; }
.brand .logo-dark { display: none; }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  padding: 10px 0;
  position: relative;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-on-dark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-cta { display: inline-flex; }
.nav-toggle {
  display: none;
  width: 48px; height: 38px;
  background: none; border: none;
  flex-direction: column; justify-content: center; gap: 8px;
}
.nav-toggle span { display: block; height: 2px; background: var(--text-on-dark); width: 100%; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--text-on-dark);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; background: var(--ink); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 42%; }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% 45%;
  opacity: 0;
  transition: opacity 1.8s ease;
  filter: saturate(0.82) sepia(0.18) brightness(0.92);
}
.hero-video.is-active { opacity: 1; }
.hero-media::before {
  /* subtle warm tint over the footage, on top of video, under the readability gradient */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(60,35,24,0.28), rgba(15,12,9,0.32));
  z-index: 1;
  mix-blend-mode: multiply;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(15,12,9,0.94) 0%, rgba(15,12,9,0.78) 34%, rgba(15,12,9,0.42) 62%, rgba(15,12,9,0.7) 100%),
              linear-gradient(0deg, rgba(15,12,9,0.9), rgba(15,12,9,0.1) 40%);
}
.hero-inner { position: relative; z-index: 2; padding-top: 90px; }
.hero-eyebrow {
  font-size: 12.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 22px; display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content:""; width: 40px; height: 1px; background: var(--gold-light); }
.hero h1 {
  font-size: clamp(46px, 7.2vw, 88px);
  line-height: 0.98;
  color: #fdf8ee;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p.sub {
  margin-top: 26px;
  max-width: 460px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
}
.hero-actions { margin-top: 40px; display: flex; gap: 18px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; left: 32px; bottom: 40px; z-index: 2;
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-on-dark-muted);
}
.hero-scroll .stroke {
  width: 1px; height: 40px; background: rgba(236,227,210,0.35); position: relative; overflow: hidden;
}
.hero-scroll .stroke::before {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollpulse 2.2s ease-in-out infinite;
}
@keyframes scrollpulse { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }

/* ---------- About ---------- */
.about { padding: 130px 0; background: var(--cream); }
.about .grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 74px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  border-radius: 3px;
  box-shadow: 0 40px 70px -40px rgba(42,29,17,0.45);
}
.about-media .badge {
  position: absolute;
  right: -28px; bottom: -28px;
  background: var(--ink);
  color: var(--gold-light);
  border: 1px solid var(--rule);
  padding: 22px 26px;
  border-radius: 3px;
  font-family: var(--font-display);
  text-align: center;
  box-shadow: 0 30px 45px -25px rgba(0,0,0,0.5);
}
.about-media .badge strong { display: block; font-size: 30px; color: var(--gold-light); }
.about-media .badge span { font-family: var(--font-body); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-on-dark-muted); }

.about-copy p.body-text { margin-top: 20px; font-size: 16.5px; line-height: 1.85; color: var(--text-muted); }
.about-copy p.body-text + p.body-text { margin-top: 14px; }
.signature { margin-top: 34px; display: flex; align-items: center; gap: 16px; }
.signature .sig-line { font-family: var(--font-script); font-style: italic; font-size: 26px; color: var(--leather-2); }
.signature .sig-role { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); border-left: 1px solid var(--rule); padding-left: 16px; }

/* ---------- Products ---------- */
.products { padding: 120px 0 130px; background: var(--parchment); position: relative; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--cream);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 24px 44px -34px rgba(42,29,17,0.4);
  transition: transform .35s ease, box-shadow .35s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 34px 54px -30px rgba(42,29,17,0.5); }
.product-card .thumb { aspect-ratio: 4/3; overflow: hidden; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card:hover .thumb img { transform: scale(1.06); }
.product-card .body { padding: 26px 26px 28px; }
.product-card h3 { font-size: 20px; color: var(--text-ink); margin-bottom: 10px; }
.product-card p { font-size: 14.5px; line-height: 1.65; color: var(--text-muted); }
.product-card .btn-text { margin-top: 18px; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--ink); padding: 56px 0; }
.stats-band .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 0 20px; position: relative; }
.stat + .stat::before { content:""; position: absolute; left: 0; top: 10%; bottom: 10%; width: 1px; background: var(--rule-dark); }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(30px, 3vw, 40px); color: var(--gold-light); }
.stat span { display: block; margin-top: 8px; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-on-dark-muted); }

/* ---------- Industries ---------- */
.industries { padding: 100px 0; background: var(--cream); text-align: center; }
.industries .section-head { margin-left: auto; margin-right: auto; }
.industry-strip {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.industry-item {
  flex: 1 1 150px;
  padding: 30px 14px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  border-right: 1px solid var(--rule);
}
.industry-item:last-child { border-right: none; }
.industry-item svg { width: 30px; height: 30px; stroke: var(--gold-deep); }
.industry-item span { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }

/* ---------- Process ---------- */
.process { padding: 130px 0; background: var(--ink); position: relative; overflow: hidden; }
.process::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 20%, rgba(201,151,77,0.08), transparent 55%);
}
.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.process-track::before {
  content: "";
  position: absolute;
  top: 27px; left: 4%; right: 4%;
  height: 0;
  border-top: 1.5px dashed var(--rule);
}
.process-step { position: relative; text-align: center; padding: 0 8px; }
.process-step .num {
  width: 54px; height: 54px; margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--ink-2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px;
  position: relative; z-index: 2;
}
.process-step h4 { font-size: 15.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-on-dark); margin-bottom: 10px; }
.process-step p { font-size: 13.5px; line-height: 1.6; color: var(--text-on-dark-muted); }

/* ---------- Portfolio ---------- */
.portfolio { padding: 130px 0; background: var(--parchment); }
.portfolio-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  background: none; border: 1px solid var(--rule);
  padding: 9px 20px; border-radius: 30px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
  transition: all .25s ease;
}
.filter-btn.active, .filter-btn:hover { background: var(--ink); color: var(--gold-light); border-color: var(--ink); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.portfolio-item { position: relative; overflow: hidden; border-radius: 3px; grid-column: span 1; grid-row: span 1; }
.portfolio-item.wide { grid-column: span 2; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-item .tag {
  position: absolute; inset: auto 14px 14px auto; left: 14px;
  display: flex; justify-content: space-between; align-items: flex-end;
  color: #fff;
}
.portfolio-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,12,9,0.75), rgba(15,12,9,0) 55%);
  opacity: 0; transition: opacity .3s ease;
}
.portfolio-item:hover::after { opacity: 1; }
.portfolio-item .tag { opacity: 0; transform: translateY(8px); transition: all .3s ease; z-index: 2; }
.portfolio-item:hover .tag { opacity: 1; transform: translateY(0); }
.portfolio-item .tag .name { font-family: var(--font-display); font-size: 17px; }
.portfolio-item .tag .cat { font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); }
.portfolio-more { text-align: center; margin-top: 46px; }

/* ---------- Testimonial ---------- */
.testimonial { position: relative; padding: 130px 0; color: var(--text-on-dark); overflow: hidden; }
.testimonial-media { position: absolute; inset: 0; }
.testimonial-media img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-media::after { content:""; position: absolute; inset: 0; background: rgba(15,12,9,0.82); }
.testimonial .container { position: relative; z-index: 2; max-width: 820px; text-align: center; }
.testimonial .mark { font-family: var(--font-display); font-size: 70px; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.testimonial blockquote { font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 32px); font-style: italic; line-height: 1.5; color: #fdf8ee; }
.testimonial .cite { margin-top: 30px; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); }
.testimonial .cite span { color: var(--text-on-dark-muted); text-transform: none; letter-spacing: 0; font-family: var(--font-body); }

/* ---------- Sustainability ---------- */
.sustainability { padding: 130px 0; background: var(--cream); }
.sustainability .grid { display: grid; grid-template-columns: 0.9fr 1fr; gap: 70px; align-items: center; }
.sustainability-media { border-radius: 3px; overflow: hidden; box-shadow: 0 40px 70px -40px rgba(42,29,17,0.4); }
.sustain-points { margin-top: 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sustain-point { border-top: 2px solid var(--gold); padding-top: 16px; }
.sustain-point h4 { font-size: 14.5px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-ink); margin-bottom: 8px; }
.sustain-point p { font-size: 13.5px; line-height: 1.6; color: var(--text-muted); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; padding: 110px 0; text-align: center; color: var(--text-on-dark); overflow: hidden;
}
.cta-band-bg { position: absolute; inset: 0; background: var(--ink); }
.cta-band-bg::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 50% 0%, rgba(201,151,77,0.14), transparent 60%); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(32px, 4vw, 50px); color: #fdf8ee; max-width: 720px; margin: 0 auto; }
.cta-band p { margin-top: 20px; max-width: 520px; margin-left: auto; margin-right: auto; color: var(--text-on-dark-muted); font-size: 16px; line-height: 1.7; }
.cta-actions { margin-top: 38px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact { padding: 96px 0 100px; background: var(--parchment); }
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 90px; }
.contact-card {
  background: var(--cream); padding: 30px 24px; border-radius: 3px;
  text-align: center; box-shadow: 0 20px 38px -30px rgba(42,29,17,0.35);
}
.contact-card svg { width: 26px; height: 26px; stroke: var(--gold-deep); margin: 0 auto 16px; }
.contact-card h4 { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.contact-card p { font-size: 14.5px; line-height: 1.6; color: var(--text-ink); }

.contact-main { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; margin-bottom: 100px; }
.contact-form-wrap .section-head { margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.field input, .field select, .field textarea {
  border: 1px solid rgba(42,34,26,0.18);
  background: var(--cream);
  padding: 13px 16px;
  font-size: 14.5px;
  border-radius: 2px;
  color: var(--text-ink);
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-deep); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 14px; }
.form-status { margin-top: 16px; font-size: 14px; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: #4a7a4a; }
.form-status.err { color: #9c3b3b; }

.contact-visual { position: relative; }
.contact-visual img { border-radius: 3px; box-shadow: 0 40px 70px -40px rgba(42,29,17,0.45); }
.contact-visual .badge {
  position: absolute; left: -24px; top: 32px;
  background: var(--ink); color: var(--gold-light);
  padding: 16px 22px; border-radius: 3px; border: 1px solid var(--rule);
  font-family: var(--font-script); font-style: italic; font-size: 20px;
  box-shadow: 0 25px 40px -20px rgba(0,0,0,0.5);
}

.map-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; margin-bottom: 90px; border-radius: 3px; overflow: hidden; box-shadow: 0 24px 50px -34px rgba(42,29,17,0.4); }
.map-info { background: var(--ink); color: var(--text-on-dark); padding: 46px 40px; display: flex; flex-direction: column; justify-content: center; }
.map-info h4 { font-family: var(--font-display); font-size: 22px; color: var(--gold-light); margin-bottom: 14px; }
.map-info p { font-size: 14.5px; line-height: 1.7; color: var(--text-on-dark-muted); }
.map-info .btn-text { margin-top: 18px; }
.map-frame iframe, .map-frame { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

.visit-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.visit-media img { border-radius: 3px; box-shadow: 0 30px 60px -34px rgba(42,29,17,0.4); }
.visit-copy .checklist { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.visit-copy .checklist li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--text-ink); }
.visit-copy .checklist svg { width: 16px; height: 16px; stroke: var(--gold-deep); flex-shrink: 0; }
.visit-copy .btn { margin-top: 30px; }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--ink-2); padding: 46px 0; border-top: 1px solid var(--rule-dark); border-bottom: 1px solid var(--rule-dark); }
.newsletter .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.newsletter h4 { color: var(--text-on-dark); font-size: 20px; margin-bottom: 6px; }
.newsletter p { color: var(--text-on-dark-muted); font-size: 14px; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input {
  background: rgba(255,255,255,0.06); border: 1px solid var(--rule-dark);
  padding: 13px 18px; border-radius: 2px; color: var(--text-on-dark); min-width: 260px; font-size: 14px;
}
.newsletter-form input::placeholder { color: var(--text-on-dark-muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--text-on-dark-muted); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--rule-dark); }
.footer-brand img { height: 32px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer-social { display: flex; gap: 14px; margin-top: 22px; }
.footer-social a {
  width: 34px; height: 34px; border: 1px solid var(--rule-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: border-color .2s ease, color .2s ease;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 15px; height: 15px; }
.footer-col h5 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-on-dark); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; transition: color .2s ease; }
.footer-col a:hover { color: var(--gold-light); }
.footer-col p { font-size: 14px; line-height: 1.8; }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; flex-wrap: wrap; gap: 12px; }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-bottom .legal { display: flex; gap: 22px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .about .grid, .sustainability .grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; margin: 0 auto; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-main { grid-template-columns: 1fr; }
  .contact-visual { max-width: 460px; }
  .map-wrap { grid-template-columns: 1fr; }
  .map-frame { min-height: 260px; }
  .visit-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links { position: fixed; top: 0; right: -100%; height: 100vh; width: min(320px, 82vw);
    background: rgba(23,19,15,0.98); backdrop-filter: blur(14px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px; padding: 40px;
    transition: right .35s ease; }
  .nav-links.is-open { right: 0; }
  .nav-links a { font-size: 15px; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .stats-band .container { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .stat + .stat::before { display: none; }
  .industry-strip { border: none; }
  .industry-item { border: none; flex: 1 1 33%; }
  .process-track { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process-track::before { display: none; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.wide { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .sustain-points { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter .container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .product-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .portfolio-item.wide { grid-column: span 2; }
  .about-media .badge { right: 0; bottom: -20px; padding: 16px 18px; }
  .contact-visual .badge { left: 0; top: -18px; }
}
