@import url("./tokens.css");

/* ======================== RESET ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Lora", Georgia, serif;
  background: var(--parchment);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--gold-light); color: var(--ink); }

/* ======================== UTILITIES ======================== */
.serif { font-family: "Cormorant Garamond", "Cormorant SC", Georgia, serif; font-weight: 500; letter-spacing: -0.01em; }
.mono-lc { font-family: "DM Sans", system-ui, sans-serif; text-transform: lowercase; letter-spacing: 0.02em; }
.smallcaps { font-family: "Cormorant SC", "Cormorant Garamond", serif; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }

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

/* ======================== NAV ======================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding 0.35s ease, background 0.3s ease, border-color 0.3s ease;
  padding: 22px 40px;
}
.nav.compressed {
  padding: 12px 40px;
  border-bottom-color: var(--border);
  background: rgba(245, 240, 232, 0.97);
}
.nav-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 30px;
  color: var(--gold);
  letter-spacing: 0.04em;
  cursor: pointer;
  display: inline-flex; align-items: baseline; gap: 3px;
  transition: color 0.2s ease;
}
.nav-logo:hover { color: var(--gold-light); }
.nav-logo .tm {
  font-size: 10px;
  vertical-align: super;
  margin-left: 2px;
  color: var(--ink-muted);
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0;
}
.nav-logo img {
  height: 36px; width: auto;
  transition: height 0.35s ease;
}
.nav.compressed .nav-logo img { height: 28px; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  text-transform: lowercase;
}
.nav-link {
  padding: 10px 18px;
  color: var(--ink);
  position: relative;
  cursor: pointer;
  transition: color 0.2s ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-link:hover { color: var(--gold); }
.nav-link .chev {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
  display: inline-block;
}
.nav-link.open .chev { transform: rotate(-135deg) translateY(-2px); }
/* Works for both <button> and <a> — the HTML now uses <a href="#contact"> */
.nav-cta {
  font-family: "DM Sans", sans-serif;
  text-transform: lowercase;
  font-size: 15px;
  text-decoration: none;
  padding: 11px 22px;
  background: var(--ink);
  color: var(--parchment);
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}
.nav-cta:hover { background: var(--gold); transform: translateY(-1px); }

/* Hamburger */
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--ink);
}
.nav-burger:hover { color: var(--gold); }

/* Mega-menu */
.mega {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.mega.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mega-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.mega-card {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-deep);
  cursor: pointer;
  /* Reset <a> defaults so card looks identical whether element is <a> or <div> */
  display: block;
  text-decoration: none;
  color: inherit;
}
.mega-card .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.7s ease, opacity 0.4s ease;
}
.mega-card .img-alt { opacity: 0; }
.mega-card:hover .img-base { opacity: 0; }
.mega-card:hover .img-alt { opacity: 1; }
.mega-card:hover .img { transform: scale(1.04); }
.mega-card .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(28,26,23,0.82), rgba(28,26,23,0));
  color: #FAF7F2;
}
.mega-card .cap .label {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px; font-weight: 500;
}
.mega-card .cap .desc {
  font-family: "DM Sans", sans-serif;
  font-size: 13px; text-transform: lowercase;
  opacity: 0.85; margin-top: 4px;
}

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0; top: 0;
  background: var(--parchment);
  z-index: 200;
  display: flex; flex-direction: column;
  padding: 88px 28px 40px;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a, .nav-drawer button {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 40px; font-weight: 500;
  color: var(--ink);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
  transition: color 0.2s ease;
}
.nav-drawer a:hover, .nav-drawer button:hover { color: var(--gold); }
.nav-drawer .close-btn {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; border: 0;
  color: var(--ink); background: none;
  padding: 0;
  font-family: inherit;
}

/* ======================== HERO ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 40px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.18;
  filter: saturate(1.1);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(196,98,45,0.08), transparent 55%),
    linear-gradient(180deg, var(--parchment) 0%, rgba(245,240,232,0.6) 40%, var(--parchment) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1440px; margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  font-family: "Cormorant SC", serif;
  letter-spacing: 0.22em; font-size: 14px;
  color: var(--gold);
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--gold); }
.hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(56px, 9.5vw, 148px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 14ch;
}
.hero-h1 em { font-style: italic; font-weight: 400; color: var(--gold); }
.hero-sub {
  font-family: "Lora", serif;
  font-size: clamp(18px, 1.4vw, 22px);
  color: var(--ink-muted);
  margin-top: 36px;
  max-width: 52ch;
  line-height: 1.5;
}
.hero-actions { margin-top: 48px; display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }

/* Works for both <button> and <a> (hero CTAs changed to anchors) */
.btn-primary {
  font-family: "DM Sans", sans-serif;
  text-transform: lowercase;
  text-decoration: none;
  font-size: 16px;
  padding: 18px 32px;
  background: var(--ink);
  color: var(--parchment);
  border-radius: 999px;
  cursor: pointer; border: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-1px); }
.btn-ghost {
  font-family: "DM Sans", sans-serif;
  text-transform: lowercase;
  text-decoration: none;
  font-size: 16px;
  padding: 18px 28px;
  color: var(--ink);
  cursor: pointer; border: none; background: transparent;
  display: inline-flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  transition: gap 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-ghost:hover { gap: 16px; color: var(--gold); border-color: var(--gold); }

.hero-foot {
  position: absolute; bottom: 40px; left: 40px; right: 40px; z-index: 1;
  display: flex; justify-content: space-between; align-items: flex-end;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: var(--ink-muted);
  text-transform: lowercase;
  letter-spacing: 0.04em;
}
.scroll-indicator { display: inline-flex; flex-direction: column; align-items: center; gap: 10px; }
.scroll-line {
  width: 1px; height: 40px; background: var(--ink-muted);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollDown 2.2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; }
}

/* ======================== REVEAL ======================== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ======================== BRAND STRIP ======================== */
.brand-strip {
  background: var(--ink);
  color: var(--parchment);
}
.brand-strip-inner {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 80px 40px;
}
.stat .num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 500;
  line-height: 1;
  color: var(--gold-light);
  display: block;
}
.stat .num sub {
  font-size: 0.4em; font-weight: 400;
  vertical-align: baseline; margin-left: 4px;
  color: var(--parchment);
}
.stat .label {
  font-family: "DM Sans", sans-serif;
  text-transform: lowercase;
  font-size: 14px;
  color: rgba(245,240,232,0.7);
  margin-top: 14px;
  border-top: 1px solid rgba(245,240,232,0.15);
  padding-top: 14px;
}

/* ======================== MARQUEE ======================== */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 28px 0;
  background: var(--cream);
}
.marquee-track {
  display: flex; gap: 72px;
  white-space: nowrap;
  animation: marqueeScroll 38s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px; font-style: italic; color: var(--ink);
  display: inline-flex; align-items: center; gap: 72px;
}
.marquee-item::after { content: "✦"; color: var(--gold); font-style: normal; font-size: 20px; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ======================== SECTIONS ======================== */
section { padding: 120px 40px; }
.section-inner { max-width: 1440px; margin: 0 auto; }
.section-head {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px;
  margin-bottom: 64px;
}
.section-head .left { max-width: 60ch; }
.section-eyebrow {
  font-family: "Cormorant SC", serif;
  letter-spacing: 0.22em; font-size: 13px;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.section-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.section-body {
  font-family: "Lora", serif;
  font-size: 18px;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 44ch;
}

/* ======================== SWAP CARDS ======================== */
.swap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.swap-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-deep);
  cursor: pointer;
}
.swap-card .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
}
.swap-card .img-alt { opacity: 0; }
.swap-card:hover .img-base { opacity: 0; }
.swap-card:hover .img-alt { opacity: 1; }
.swap-card:hover .img { transform: scale(1.06); }
@media (hover: none) {
  .swap-card:active .img-base { opacity: 0; }
  .swap-card:active .img-alt { opacity: 1; }
}
.swap-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,26,23,0.75) 0%, rgba(28,26,23,0.15) 45%, rgba(28,26,23,0) 80%);
}
.swap-card .meta {
  position: absolute; left: 36px; right: 36px; bottom: 36px;
  color: var(--parchment);
}
.swap-card .meta .tag {
  font-family: "DM Sans", sans-serif;
  font-size: 12px; text-transform: lowercase; letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 10px;
}
.swap-card .meta .tag::before { content: ""; width: 18px; height: 1px; background: var(--gold-light); }
.swap-card .meta h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.04;
  margin-bottom: 12px;
}
.swap-card .meta p {
  font-family: "DM Sans", sans-serif;
  text-transform: lowercase;
  font-size: 14px;
  color: rgba(245,240,232,0.8);
  max-width: 40ch;
}
.swap-card .corner {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(245,240,232,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245,240,232,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--parchment);
  font-family: "DM Sans", sans-serif; font-size: 18px;
  transition: background 0.2s ease, transform 0.3s ease, border-color 0.2s ease;
}
.swap-card:hover .corner { background: var(--gold); border-color: var(--gold); transform: rotate(-45deg); }

/* Factory gallery (element changed from <div> to <figure> — reset UA margin) */
.factory-gallery {
  margin: 80px 0 0; /* preserve top spacing; reset UA left/right margins on <figure> */
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--border-strong);
  border: 1px solid var(--border-strong);
}
.factory-gallery .factory-img {
  aspect-ratio: 3/2;
  background-size: cover; background-position: center;
}

/* ======================== QUALITY ======================== */
.quality-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.quality-hero-img {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
}
.quality-text-cell {
  padding: 80px 56px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--cream);
  border-left: 1px solid var(--border);
}
.quality-split.reversed .quality-text-cell {
  border-left: none;
  border-right: 1px solid var(--border);
}
.quality-text-cell .kicker {
  font-family: "Cormorant SC", serif; letter-spacing: 0.2em;
  font-size: 13px; color: var(--gold);
  margin-bottom: 20px;
}
.quality-text-cell h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.05;
  margin-bottom: 24px;
}
.quality-text-cell h3 em { font-style: italic; color: var(--gold); }
.quality-text-cell p { color: var(--ink-muted); font-size: 17px; line-height: 1.7; max-width: 48ch; }
.quality-text-cell .specs {
  margin-top: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.quality-text-cell .specs .spec { border-top: 1px solid var(--border-strong); padding-top: 14px; }
.quality-text-cell .specs .spec .k {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px; color: var(--ink); font-weight: 500; line-height: 1;
}
.quality-text-cell .specs .spec .v {
  font-family: "DM Sans", sans-serif; text-transform: lowercase;
  font-size: 12px; color: var(--ink-faint);
  margin-top: 8px; letter-spacing: 0.04em;
}

/* ======================== ABOUT ======================== */
.about { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
/* about-imgs element changed from <div> to <figure> — reset UA margin */
.about-imgs { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-imgs .a {
  background-size: cover; background-position: center;
  border-radius: 2px;
  aspect-ratio: 3/4;
}
.about-imgs .a.tall { grid-row: span 2; }
.about-imgs .a.short { aspect-ratio: 3/2; }
.about-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 4.5vw, 68px);
  font-weight: 500; line-height: 1.04;
  margin-bottom: 28px; letter-spacing: -0.015em;
}
.about-copy h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.about-copy p { color: var(--ink-muted); margin-bottom: 20px; line-height: 1.7; max-width: 52ch; }
/* Works for both <div> (old) and <ul> (new).
   Scoped to .values .value so it doesn't bleed into .contact-block .value */
.values {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border-strong);
  list-style: none; padding: 0;
  border: 1px solid var(--border-strong);
}
.values .value { background: var(--cream); padding: 28px 24px; transition: background 0.3s ease; }
.values .value:hover { background: var(--parchment); }
.values .value .n {
  font-family: "DM Sans", sans-serif; font-size: 11px;
  color: var(--gold); letter-spacing: 0.1em; text-transform: lowercase;
  margin-bottom: 14px;
}
.values .value .t { font-family: "Cormorant Garamond", serif; font-size: 24px; font-weight: 500; color: var(--ink); }

/* ======================== CONTACT ======================== */
.contact { background: var(--ink); color: var(--parchment); }
.contact .section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact .section-title { color: var(--parchment); }
.contact .section-title em { color: var(--gold-light); }
.contact .section-eyebrow { color: var(--gold-light); }
.contact .section-eyebrow::before { background: var(--gold-light); }

/* Contact info blocks — no background, border-bottom separator only */
.contact-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(245,240,232,0.12);
}
.contact-block {
  padding: 28px 0 28px 0;
  border-bottom: 1px solid rgba(245,240,232,0.12);
}
/* Alternate blocks get left padding to form two-column feel */
.contact-block:nth-child(odd)  { padding-right: 32px; border-right: 1px solid rgba(245,240,232,0.12); }
.contact-block:nth-child(even) { padding-left: 32px; }

.contact-block .label {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin-bottom: 12px;
}
/* Phone numbers and emails — large, cream, highly readable */
.contact-block .contact-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--parchment);
  line-height: 1.25;
  text-decoration: none;
  display: block;
  transition: color 0.2s ease;
}
.contact-block a.contact-value:hover { color: var(--gold-light); }
.contact-block .sub {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  color: rgba(245,240,232,0.5);
  text-transform: lowercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
}
.contact-right { border-left: 1px solid rgba(245,240,232,0.12); padding-left: 80px; }

/* Form */
.form { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: "DM Sans", sans-serif; font-size: 11px; text-transform: lowercase;
  letter-spacing: 0.12em; color: rgba(245,240,232,0.55);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245,240,232,0.25);
  color: var(--parchment);
  padding: 10px 0;
  font-family: "Lora", serif;
  font-size: 17px;
  outline: none;
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-light); }
.field textarea { resize: vertical; min-height: 80px; }
.field select {
  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='%23D4A843' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0 center; padding-right: 24px;
}
.field select option { background: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: rgba(245,240,232,0.35); font-style: italic; }
.form-submit {
  margin-top: 10px; align-self: flex-start;
  font-family: "DM Sans", sans-serif; text-transform: lowercase;
  font-size: 15px;
  padding: 16px 30px;
  background: var(--gold); color: var(--ink);
  border: none; border-radius: 999px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.form-sent {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  color: var(--gold-light); font-size: 22px; margin-top: 20px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.form-sent.show { opacity: 1; transform: translateY(0); }

/* ======================== FOOTER ======================== */
.footer {
  background: var(--ink); color: var(--parchment);
  padding: 56px 40px 32px;
  border-top: 1px solid rgba(245,240,232,0.12);
}
.footer-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-family: "DM Sans", sans-serif; font-size: 13px;
  color: rgba(245,240,232,0.55);
  text-transform: lowercase; letter-spacing: 0.04em;
}
.footer .brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px; color: var(--gold-light);
  text-transform: none; letter-spacing: 0.04em;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a { transition: color 0.2s ease; cursor: pointer; }
.footer-links a:hover { color: var(--gold-light); }

/* ======================== WHATSAPP FAB ======================== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 58px; height: 58px; border-radius: 999px;
  background: #25D366; color: white;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2), 0 0 0 0 rgba(37,211,102,0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: waPulse 2.2s ease-in-out infinite;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 24px rgba(0,0,0,0.2), 0 0 0 0 rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 24px rgba(0,0,0,0.2), 0 0 0 14px rgba(37,211,102,0); }
}
@media (min-width: 1025px) {
  .wa-float::after {
    content: "chat on whatsapp";
    position: absolute;
    right: calc(100% + 12px); top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: var(--ink); color: var(--parchment);
    font-family: "DM Sans", sans-serif; font-size: 12px;
    text-transform: lowercase; letter-spacing: 0.06em;
    padding: 6px 12px; border-radius: 999px;
    white-space: nowrap; opacity: 0; pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .wa-float:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 960px) {
  .nav { padding: 16px 20px; }
  .nav.compressed { padding: 10px 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero { padding: 120px 20px 80px; min-height: 90vh; }
  .hero-foot { left: 20px; right: 20px; bottom: 20px; }

  section { padding: 80px 20px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; }

  .swap-grid { grid-template-columns: 1fr; gap: 20px; }
  .brand-strip-inner { grid-template-columns: 1fr 1fr; gap: 32px; padding: 60px 20px; }

  .factory-gallery { grid-template-columns: 1fr; gap: 0; margin: 40px 0 0; }

  .quality-split { grid-template-columns: 1fr; }
  .quality-text-cell { padding: 48px 24px; border-left: none; border-top: 1px solid var(--border); }
  .quality-split.reversed .quality-text-cell { border-right: none; border-top: 1px solid var(--border); }

  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .values { grid-template-columns: 1fr 1fr; }

  .contact .section-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-right { border-left: none; padding-left: 0; border-top: 1px solid rgba(245,240,232,0.12); padding-top: 40px; }
  .contact-blocks { grid-template-columns: 1fr; border-top: 1px solid rgba(245,240,232,0.12); }
  .contact-block:nth-child(odd)  { padding-right: 0; border-right: none; }
  .contact-block:nth-child(even) { padding-left: 0; }

  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }

  .mega { display: none; }
}
@media (max-width: 480px) {
  .brand-strip-inner { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .quality-text-cell .specs { grid-template-columns: 1fr; }
}

/* =============================================================
   Code-review additions (CHANGE #20, #14, #17, #21):
   classes promoted out of inline style="…" attributes,
   plus reduced-motion guards and a11y helpers.
   ============================================================= */

/* CHANGE #20 — was: <section style="padding:0"> on .brand-strip */
.brand-strip-flush { padding: 0; }

/* CHANGE #20 — was: <span class="num" style="font-style:italic"> */
.num--italic { font-style: italic; }

/* CHANGE #20 — was: <section style="background:var(--cream); border-top:1px solid var(--border); border-bottom:1px solid var(--border)"> */
.section--cream {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* CHANGE #20 — was: <div class="quality-split reversed reveal d2" style="border-top:none"> */
.quality-split--seam-off { border-top: none; }

/* CHANGE #20 — was: <p style="color:rgba(245,240,232,0.7);margin-top:24px;font-size:17px;max-width:42ch;line-height:1.6"> */
.contact-lead {
  color: rgba(245, 240, 232, 0.7);
  margin-top: 24px;
  font-size: 17px;
  max-width: 42ch;
  line-height: 1.6;
}

/* .contact-address: reset <address> italics; font size comes from .contact-value */
.contact-address {
  font-size: 22px;  /* slightly smaller than phone/email for the multi-line address */
  line-height: 1.5;
  font-style: normal;
}

/* CHANGE #20 — was: inline serif/font-size/weight on the inquiry h3 + accent <em> */
.contact-form-h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 8px;
}
.accent-gold { font-style: italic; color: var(--gold-light); }

/* CHANGE #21 — honeypot field: hidden visually but reachable to bots that fill every input */
.hp-field {
  position: absolute !important;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* CHANGE #14 — visually-hidden caption for <figure> elements */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* CHANGE — error message styling for the inquiry form */
.form-error {
  margin-top: 12px;
  color: var(--rust);
  font-size: 14px;
}

/* CHANGE #17 — pause marquee for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; transform: none !important; }
  .scroll-line { animation: none !important; }
  .reveal { transition: none !important; }
}
