@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --paper: #f4f1eb;
  --white: #ffffff;
  --ink: #151515;
  --charcoal: #191919;
  --charcoal-2: #101010;
  --oxblood: #5a0713;
  --oxblood-dark: #3f0810;
  --gold: #b38b5d;
  --gold-light: #d4b58d;
  --gold-text: #7a542f;
  --muted: #69635d;
  --line: #d9d2c8;
  --line-dark: #42403c;
  --green: #145f4b;
  --display: "Instrument Serif", "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --sans: "DM Sans", Inter, "Helvetica Neue", Arial, sans-serif;
  --max: 1360px;
  --gutter: max(24px, calc((100vw - var(--max)) / 2));
  --shadow: 0 18px 55px rgba(31, 25, 19, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
::selection { background: var(--oxblood); color: #fff; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 12px 16px;
  background: #fff;
  color: #000;
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

.utility-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 24px;
  background: var(--charcoal-2);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 80;
  min-height: 104px;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 var(--gutter);
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
}
.wordmark { display: inline-flex; flex-direction: column; align-items: center; width: max-content; line-height: 1; }
.wordmark strong {
  font-family: var(--display);
  font-size: 37px;
  font-weight: 400;
  letter-spacing: .18em;
}
.wordmark span { margin-top: 6px; font-size: 11px; letter-spacing: .58em; transform: translateX(.3em); }
.site-nav { display: flex; justify-content: center; align-items: center; gap: clamp(20px, 2.5vw, 42px); }
.site-nav a { position: relative; padding: 12px 0; font-size: 14px; font-weight: 500; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 1px;
  background: var(--gold);
  transition: right .28s ease;
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.menu-button { display: none; }

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 15px 25px;
  border: 1px solid transparent;
  border-radius: 0;
  background: none;
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.button svg, .text-link svg, .mobile-quote svg { width: 22px; height: 22px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .25s ease; }
.button:hover svg, .text-link:hover svg, .mobile-quote:hover svg { transform: translateX(5px); }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--oxblood); color: #fff; box-shadow: inset 0 0 0 1px rgba(211, 175, 126, .32); }
.button-primary:hover { background: var(--oxblood-dark); }
.button-dark { background: var(--charcoal); color: #fff; }
.button-light { background: #fff; color: var(--ink); }
.button-outline { border-color: var(--gold-text); color: var(--ink); }
.button-outline-light { border-color: #726a60; color: #fff; }
.button-whatsapp { width: 100%; background: var(--oxblood); color: #fff; border-color: #80515a; }
.button-whatsapp .wa-icon { width: 21px; height: 21px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  color: var(--gold-text);
  font-size: 13px;
  font-weight: 600;
}

.eyebrow {
  margin: 0 0 23px;
  color: var(--gold-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, .display-heading { font-family: var(--display); font-weight: 400; }
h1 { margin-bottom: 28px; font-size: clamp(54px, 5.2vw, 82px); line-height: .98; letter-spacing: -.03em; }
h2 { margin-bottom: 24px; font-size: clamp(42px, 4.2vw, 66px); line-height: 1.01; letter-spacing: -.025em; }
h3 { margin-bottom: 12px; font-size: 19px; line-height: 1.3; }
.lead { max-width: 700px; color: var(--muted); font-size: 17px; line-height: 1.72; }
.section { padding: 118px var(--gutter); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .75fr); gap: 90px; align-items: end; margin-bottom: 58px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 520px; margin-bottom: 4px; color: var(--muted); line-height: 1.75; }
.section-heading.narrow { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }

.hero { position: relative; display: grid; grid-template-columns: 55% 45%; min-height: 650px; overflow: hidden; background: var(--paper); }
.hero-copy { z-index: 2; align-self: center; padding: 80px 8vw 122px var(--gutter); }
.hero-copy h1 { max-width: 760px; }
.hero-copy .lead { max-width: 630px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-note { max-width: 560px; margin: 24px 0 0; padding-top: 20px; color: var(--muted); font-size: 13px; border-top: 1px solid var(--gold-text); }
.hero-media { position: relative; min-height: 650px; clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%); background: #d9d2c8; overflow: hidden; }
.hero-media img { height: 100%; object-fit: cover; object-position: center; transform: scale(1.01); }
.media-caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  background: rgba(16, 16, 16, .78);
  color: #fff;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.fact-strip {
  position: relative;
  z-index: 4;
  width: min(var(--max), calc(100% - 48px));
  margin: -68px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  box-shadow: var(--shadow);
}
.fact-item { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; min-height: 136px; padding: 25px 27px; border-right: 1px solid var(--line); }
.fact-item:last-child { border-right: 0; }
.fact-icon { width: 38px; height: 38px; color: var(--gold-text); fill: none; stroke: currentColor; stroke-width: 1.35; }
.fact-item strong { display: block; margin-bottom: 7px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.fact-item span { color: var(--muted); font-size: 13px; }

.capabilities { padding-top: 132px; background: #fff; }
.capability-intro { display: grid; grid-template-columns: .7fr 1.3fr; gap: 72px; align-items: center; }
.capability-intro-copy { padding: 20px 0 30px; }
.capability-intro-copy h2 { font-size: clamp(44px, 4vw, 64px); }
.capability-intro-copy > p:not(.eyebrow) { max-width: 490px; color: var(--muted); line-height: 1.72; }
.capability-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.capability-card { min-width: 0; }
.capability-visual { position: relative; aspect-ratio: 3 / 4; overflow: hidden; clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%); background: var(--paper); }
.capability-card:nth-child(even) .capability-visual { clip-path: polygon(5% 0, 100% 0, 90% 100%, 0 100%); }
.capability-visual img { height: 100%; object-fit: cover; transition: transform .55s ease; }
.capability-card:hover img { transform: scale(1.04); }
.capability-card h3 { margin: 15px 7px 0; font-size: 14px; font-weight: 500; }
.capability-card h3 a:hover { color: var(--oxblood); }

.factory-band { position: relative; display: grid; grid-template-columns: .8fr 1.35fr .8fr; gap: 48px; align-items: center; padding: 92px var(--gutter); background: var(--charcoal); color: #fff; }
.factory-band .eyebrow, .factory-band .text-link,
.private-label .eyebrow, .about-band .eyebrow,
.quote-section .eyebrow, .content-split-copy .eyebrow { color: var(--gold-light); }
.factory-band::before { content: ""; position: absolute; left: 0; top: -45px; width: 58%; height: 46px; background: var(--charcoal); clip-path: polygon(0 100%, 100% 0, 100% 100%); }
.factory-copy p:not(.eyebrow) { color: #bdb7af; line-height: 1.7; }
.factory-media { position: relative; overflow: hidden; aspect-ratio: 3 / 2; }
.factory-media img { height: 100%; object-fit: cover; }
.factory-list { border-top: 1px solid var(--line-dark); }
.factory-list div { padding: 24px 0; border-bottom: 1px solid var(--line-dark); color: #ede8e0; font-size: 14px; }

.timeline-section { background: var(--paper); }
.timeline-intro { max-width: 790px; margin-bottom: 58px; }
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); list-style: none; margin: 0; padding: 0; }
.timeline li { position: relative; padding: 0 24px; text-align: center; }
.timeline li::before { content: ""; position: absolute; top: 31px; left: 0; right: 0; height: 1px; background: var(--gold); }
.timeline li:first-child::before { left: 50%; }
.timeline li:last-child::before { right: 50%; }
.timeline-number { position: relative; z-index: 2; display: inline-block; min-width: 76px; padding: 0 10px; background: var(--paper); font-family: var(--display); font-size: 58px; line-height: 1; }
.timeline h3 { margin-top: 27px; font-size: 15px; font-weight: 600; }
.timeline p { color: var(--muted); font-size: 13px; line-height: 1.65; }
.timeline-note { margin: 46px 0 0; color: var(--muted); font-size: 13px; text-align: center; }

.private-label { display: grid; grid-template-columns: 1fr 1.1fr; background: var(--charcoal); color: #fff; }
.private-label-copy { display: grid; grid-template-columns: minmax(0, 1fr) 210px; gap: 42px; align-content: center; padding: 88px 6vw 88px var(--gutter); }
.private-label-copy p:not(.eyebrow) { color: #c2bbb2; line-height: 1.7; }
.service-list { align-self: center; border-top: 1px solid var(--line-dark); }
.service-list li { display: flex; align-items: center; gap: 12px; padding: 17px 0; border-bottom: 1px solid var(--line-dark); font-size: 13px; list-style: none; }
.service-list svg { width: 20px; height: 20px; color: var(--gold); fill: none; stroke: currentColor; stroke-width: 1.35; }
.private-label-media { min-height: 640px; }
.private-label-media img { height: 100%; object-fit: cover; }

.terms-section { background: #fff; }
.terms-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.term { min-height: 220px; padding: 38px 48px 20px 0; border-right: 1px solid var(--line); }
.term + .term { padding-left: 48px; }
.term:last-child { border-right: 0; }
.term-number { display: flex; align-items: center; gap: 22px; margin-bottom: 20px; font-family: var(--display); font-size: 42px; }
.term-number::before { content: ""; width: 42px; height: 1px; background: var(--gold); }
.term h3 { font-family: var(--display); font-size: 25px; font-weight: 400; }
.term p { max-width: 330px; color: var(--muted); font-size: 13px; line-height: 1.7; }

.about-band { display: grid; grid-template-columns: 52% 48%; background: var(--charcoal); color: #fff; }
.about-media { min-height: 475px; clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%); overflow: hidden; }
.about-media img { height: 100%; object-fit: cover; }
.about-copy { align-self: center; max-width: 720px; padding: 70px var(--gutter) 70px 6vw; }
.about-copy p:not(.eyebrow) { color: #c4bdb5; line-height: 1.72; }

.faq-section { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 85px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0; cursor: pointer; list-style: none; font-size: 15px; font-weight: 500; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 22px; height: 22px; flex: 0 0 auto; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; left: 4px; right: 4px; top: 10px; height: 1px; background: var(--gold); transition: transform .25s ease; }
.faq-plus::after { transform: rotate(90deg); }
.faq-list details[open] .faq-plus::after { transform: rotate(0); }
.faq-list details p { max-width: 760px; margin: 0; padding: 0 54px 23px 0; color: var(--muted); font-size: 14px; line-height: 1.72; }

.quote-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; padding: 108px var(--gutter); background: var(--charcoal); color: #fff; }
.quote-intro { max-width: 530px; }
.quote-intro h2 { font-size: clamp(50px, 5vw, 78px); }
.quote-intro p:not(.eyebrow) { color: #c4bdb5; font-size: 16px; line-height: 1.75; }
.quote-intro .quote-email { color: var(--gold-light); font-size: 13px; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 0 34px; align-content: start; }
.field { display: grid; grid-template-columns: 170px 1fr; gap: 20px; align-items: start; min-height: 58px; padding: 12px 0; border-bottom: 1px solid #777169; }
.field.full { grid-column: 1 / -1; }
.field label { padding-top: 7px; color: #f0ece6; font-size: 12px; }
.field input, .field select, .field textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 14px;
  line-height: 1.55;
}
.field input, .field select { min-height: 34px; }
.field textarea { min-height: 96px; resize: vertical; padding-top: 6px; }
.field select { color-scheme: dark; }
.field input::placeholder, .field textarea::placeholder { color: #908a83; opacity: 1; }
.field:focus-within { border-bottom-color: var(--gold); }
.quote-form-footer { grid-column: 1 / -1; margin-top: 24px; }
.privacy-note { margin: 14px 0 0; color: #98918a; font-size: 11px; line-height: 1.6; }
.form-status { margin: 10px 0 0; color: var(--gold-light); font-size: 12px; }

.site-footer { padding: 70px var(--gutter) 28px; background: var(--charcoal-2); color: #bcb5ad; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 65px; }
.footer-brand .wordmark { color: #fff; align-items: flex-start; }
.footer-brand p { max-width: 310px; margin-top: 25px; font-size: 13px; line-height: 1.7; }
.footer-group { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer-group h3 { margin-bottom: 8px; color: var(--gold-light); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.footer-group a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 52px; padding-top: 24px; border-top: 1px solid #34322f; font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.footer-note { max-width: 700px; line-height: 1.6; text-align: right; text-transform: none; letter-spacing: 0; }

.mobile-quote { display: none; }

/* Inner pages */
.page-hero { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 560px; background: var(--paper); overflow: hidden; }
.page-hero-copy { align-self: center; padding: 88px 7vw 88px var(--gutter); }
.breadcrumbs { margin-bottom: 45px; color: var(--muted); font-size: 11px; }
.breadcrumbs a { border-bottom: 1px solid currentColor; }
.page-hero h1 { max-width: 820px; font-size: clamp(55px, 5vw, 78px); }
.page-hero-media { min-height: 560px; clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%); overflow: hidden; }
.page-hero-media img { height: 100%; object-fit: cover; }
.page-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; background: #fff; }
.page-intro p { color: var(--muted); font-size: 16px; line-height: 1.78; }
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.spec-item { min-height: 190px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec-item b { display: block; margin-bottom: 28px; color: var(--gold-text); font-size: 11px; letter-spacing: .1em; }
.spec-item h3 { font-family: var(--display); font-size: 25px; font-weight: 400; }
.spec-item p { margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.68; }
.content-split { display: grid; grid-template-columns: 1fr 1fr; }
.content-split-media { min-height: 620px; }
.content-split-media img { height: 100%; object-fit: cover; }
.content-split-copy { display: flex; flex-direction: column; justify-content: center; padding: 90px var(--gutter) 90px 7vw; background: var(--charcoal); color: #fff; }
.content-split-copy p:not(.eyebrow) { color: #c4bdb5; line-height: 1.72; }
.ruled-list { margin: 28px 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.ruled-list li { display: grid; grid-template-columns: 145px 1fr; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line-dark); font-size: 13px; }
.ruled-list strong { color: #fff; }
.ruled-list span { color: #bbb4ac; }
.steps-list { margin: 0; padding: 0; list-style: none; }
.steps-list li { display: grid; grid-template-columns: 90px 1fr; gap: 30px; padding: 38px 0; border-top: 1px solid var(--line); }
.steps-list .step-no { font-family: var(--display); color: var(--gold-text); font-size: 42px; }
.steps-list h3 { font-family: var(--display); font-size: 30px; font-weight: 400; }
.steps-list p { max-width: 760px; margin: 0; color: var(--muted); line-height: 1.72; }
.cta-compact { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 76px var(--gutter); background: var(--oxblood-dark); color: #fff; }
.cta-compact h2 { max-width: 760px; margin: 0; font-size: clamp(40px, 4vw, 61px); }
.cta-compact-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.policy-list { max-width: 980px; margin: 0 auto; }
.policy-list section { padding: 30px 0; border-top: 1px solid var(--line); }
.policy-list h2 { font-family: var(--sans); font-size: 22px; font-weight: 600; }
.policy-list p, .policy-list li { color: var(--muted); line-height: 1.78; }
.policy-list a { color: var(--oxblood); text-decoration: underline; }
.thank-you { min-height: 65vh; display: grid; place-items: center; padding: 90px 24px; text-align: center; }
.thank-you > div { max-width: 760px; }
.thank-you p { color: var(--muted); line-height: 1.75; }
.not-found h1 { font-size: 120px; }

.reveal { opacity: 1; transform: none; }
.reveal-enhanced .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal-enhanced .reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 3px solid var(--gold-text); outline-offset: 3px; box-shadow: 0 0 0 5px rgba(255, 255, 255, .88); }
.form-status a, .no-script-note a { color: var(--gold-light); text-decoration: underline; }
.no-script-note { margin: 12px 0 0; color: #d0cac3; font-size: 12px; line-height: 1.6; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 220px auto auto; }
  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 10px 13px;
    border: 1px solid var(--line);
    background: #fff;
    font-size: 12px;
    font-weight: 600;
  }
  .menu-button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
  .site-nav {
    position: absolute;
    top: 104px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px var(--gutter) 30px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .header-cta { justify-self: end; }
  .capability-intro { grid-template-columns: 1fr; }
  .factory-band { grid-template-columns: .85fr 1.4fr; }
  .factory-list { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); }
  .factory-list div { padding-right: 20px; }
  .private-label-copy { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 35px; }
}

@media (max-width: 820px) {
  :root { --gutter: 20px; }
  .utility-bar { min-height: 36px; font-size: 9px; letter-spacing: .12em; }
  .site-header { min-height: 82px; grid-template-columns: 1fr auto; padding: 0 20px; }
  .wordmark strong { font-size: 30px; }
  .wordmark span { font-size: 9px; }
  .header-cta { display: none; }
  .site-nav { top: 82px; max-height: calc(100vh - 82px); overflow-y: auto; }
  .section { padding: 82px 20px; }
  .section-heading, .section-heading.narrow, .page-intro { grid-template-columns: 1fr; gap: 20px; }
  h1 { font-size: clamp(48px, 14vw, 64px); }
  h2 { font-size: clamp(39px, 11vw, 52px); }

  .hero { display: flex; flex-direction: column; min-height: 0; }
  .hero-copy { padding: 64px 20px 42px; }
  .hero-copy h1 { font-size: clamp(50px, 13.5vw, 68px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-actions .button-outline { display: none; }
  .hero-media { min-height: 440px; clip-path: polygon(0 11%, 100% 0, 100% 100%, 0 100%); }
  .hero-media img { height: 440px; object-position: 55% center; }
  .fact-strip { width: 100%; margin: 0; grid-template-columns: repeat(2, 1fr); box-shadow: none; }
  .fact-item { min-height: 118px; grid-template-columns: 36px 1fr; padding: 20px 16px; border-bottom: 1px solid var(--line); }
  .fact-item:nth-child(2n) { border-right: 0; }
  .fact-icon { width: 32px; height: 32px; }

  .capabilities { padding-top: 84px; }
  .capability-intro { gap: 34px; }
  .capability-rail { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 14px; scroll-snap-type: x mandatory; }
  .capability-card { min-width: 72vw; scroll-snap-align: start; }
  .capability-visual, .capability-card:nth-child(even) .capability-visual { clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%); }

  .factory-band { grid-template-columns: 1fr; gap: 34px; padding: 74px 20px; }
  .factory-band::before { top: -30px; height: 31px; width: 100%; }
  .factory-list { grid-template-columns: 1fr; }
  .factory-media { order: -1; }

  .timeline-intro { margin-bottom: 35px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline li { display: grid; grid-template-columns: 72px 1fr; gap: 18px; padding: 23px 0; text-align: left; border-top: 1px solid var(--line); }
  .timeline li::before { display: none; }
  .timeline-number { grid-row: 1 / 3; min-width: 0; padding: 0; background: transparent; font-size: 46px; }
  .timeline h3 { margin: 2px 0 8px; }
  .timeline-note { text-align: left; }

  .private-label { grid-template-columns: 1fr; }
  .private-label-copy { padding: 72px 20px; }
  .private-label-media { min-height: 390px; }

  .terms-grid { grid-template-columns: 1fr; }
  .term, .term + .term { min-height: 0; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }

  .about-band { grid-template-columns: 1fr; }
  .about-media { min-height: 330px; clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%); }
  .about-copy { padding: 56px 20px 72px; }

  .faq-layout { grid-template-columns: 1fr; gap: 30px; }
  .faq-list summary { font-size: 14px; }

  .quote-section { grid-template-columns: 1fr; gap: 48px; padding: 78px 20px 100px; }
  .quote-form { grid-template-columns: 1fr; }
  .field, .field.full { grid-column: auto; grid-template-columns: 1fr; gap: 7px; padding: 15px 0; }
  .field label { padding-top: 0; }
  .quote-form-footer { grid-column: auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-note { text-align: left; }

  .mobile-quote {
    position: fixed;
    z-index: 90;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
    background: var(--oxblood);
    color: #fff;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, .18);
    font-size: 14px;
    font-weight: 600;
  }
  .site-footer { padding-bottom: 100px; }

  .page-hero { grid-template-columns: 1fr; }
  .page-hero-copy { padding: 62px 20px 42px; }
  .page-hero-media { min-height: 400px; clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 100%); }
  .page-hero-media img { height: 400px; }
  .spec-grid { grid-template-columns: 1fr; }
  .content-split { grid-template-columns: 1fr; }
  .content-split-media { min-height: 390px; }
  .content-split-copy { padding: 70px 20px; }
  .ruled-list li { grid-template-columns: 110px 1fr; }
  .steps-list li { grid-template-columns: 60px 1fr; gap: 20px; }
  .cta-compact { flex-direction: column; align-items: flex-start; padding: 64px 20px 92px; }
  .not-found h1 { font-size: 88px; }
}

@media (max-width: 460px) {
  .utility-bar { white-space: nowrap; overflow: hidden; }
  .menu-button span { font-size: 11px; }
  .hero-copy h1 { font-size: 49px; }
  .eyebrow { font-size: 10px; }
  .fact-item { display: block; }
  .fact-icon { margin-bottom: 10px; }
  .fact-item strong { font-size: 11px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .cta-compact-actions { width: 100%; }
  .cta-compact-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal-enhanced .reveal { opacity: 1; transform: none; }
}
