:root {
  --red: #ed1c24;
  --red-dark: #c9141b;
  --ink: #111111;
  --charcoal: #1d1d1c;
  --muted: #67645f;
  --paper: #f3f2ee;
  --white: #ffffff;
  --line: #d7d4ce;
  --max: 1280px;
  --pad: clamp(24px, 5vw, 72px);
  --font: Bahnschrift, Aptos, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -80px; left: 20px; z-index: 100; padding: 12px 18px; background: var(--ink); color: var(--white); }
.skip-link:focus { top: 20px; }

.site-header { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.95); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.header-inner { width: min(100%, var(--max)); min-height: 82px; margin: 0 auto; padding: 0 var(--pad); display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 30px; }
.brand { display: inline-flex; width: 142px; }
.brand img { width: 100%; height: 48px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; justify-content: center; gap: 28px; }
.site-nav a { position: relative; color: #393735; font-size: .76rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--red); transition: right .2s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.header-cta { min-height: 44px; display: inline-flex; align-items: center; padding: 10px 18px; background: var(--ink); color: var(--white); font-size: .76rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.header-cta:hover { background: var(--red); }
.menu-toggle { display: none; background: transparent; border: 0; padding: 12px; }
.menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--ink); }

.hero { min-height: calc(100vh - 82px); background: var(--white); }
.hero-grid { width: min(100%, var(--max)); margin: 0 auto; padding: clamp(70px, 9vw, 128px) var(--pad) 64px; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(48px, 8vw, 112px); align-items: center; }
.eyebrow { margin-bottom: 20px; color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
h1 { margin-bottom: 30px; font-size: clamp(3.4rem, 7vw, 6.8rem); line-height: .93; letter-spacing: -.052em; font-weight: 740; }
h1 span { color: var(--red); }
.hero-lead { max-width: 680px; margin-bottom: 36px; color: #4e4b47; font-size: clamp(1.08rem, 1.7vw, 1.34rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px; border: 1px solid transparent; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.button-primary { background: var(--red); color: var(--white); }
.button-primary:hover { background: var(--red-dark); }
.button-secondary { border-color: var(--ink); }
.button-secondary:hover { background: var(--ink); color: var(--white); }
.hero-frame { position: relative; aspect-ratio: 1 / 1.05; overflow: hidden; background: #f7f7f5; border: 1px solid #e7e5df; }
.hero-frame::before { content: ""; position: absolute; top: 0; left: 0; width: 74px; height: 5px; z-index: 2; background: var(--red); }
.hero-frame img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.frame-label { position: absolute; left: 18px; bottom: 18px; color: #504d49; font-size: .64rem; font-weight: 800; letter-spacing: .14em; }
.identity-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1.55fr .75fr .75fr; }
.identity-strip > div { min-height: 116px; padding: 24px var(--pad); display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.identity-strip > div:last-child { border-right: 0; }
.identity-strip strong { font-size: 1rem; line-height: 1.3; }
.identity-strip span:not(.identity-label) { margin-top: 3px; color: var(--muted); font-size: .84rem; }
.identity-label { margin-bottom: 7px; color: var(--red); font-size: .63rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

.section { padding: clamp(84px, 10vw, 148px) var(--pad); }
.section-heading { width: min(100%, var(--max)); margin: 0 auto 62px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: end; }
.section-heading h2, .company-title-block h2, .contact-section h2 { margin-bottom: 0; font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: .98; letter-spacing: -.043em; }
.section-heading > p { max-width: 520px; margin: 0 0 6px auto; color: var(--muted); }
.products-section { background: var(--paper); }
.product-grid { width: min(100%, var(--max)); margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.product-card { background: var(--white); }
.product-image { width: 100%; aspect-ratio: 1.35 / 1; overflow: hidden; border-bottom: 1px solid var(--line); background: #f8f8f6; }
.product-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .42s ease; }
.product-card:hover .product-image img { transform: scale(1.025); }
.product-meta { min-height: 250px; padding: clamp(24px, 4vw, 42px); }
.product-category { margin-bottom: 12px; color: var(--red); font-size: .66rem; font-weight: 800; letter-spacing: .16em; }
.product-meta h3 { max-width: 520px; margin-bottom: 16px; font-size: clamp(1.45rem, 2.4vw, 2.1rem); line-height: 1.05; letter-spacing: -.028em; }
.product-meta p:last-child { max-width: 540px; margin-bottom: 0; color: var(--muted); }
.availability-note { width: min(100%, var(--max)); margin: 28px auto 0; color: var(--muted); font-size: .84rem; text-align: right; }

.company-section { background: var(--white); }
.company-grid { width: min(100%, var(--max)); margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 140px); }
.company-title-block { position: sticky; top: 130px; align-self: start; }
.company-copy { padding-top: 34px; border-top: 5px solid var(--red); }
.company-copy p { color: #575450; font-size: 1.04rem; }
.company-copy .company-lead { color: var(--ink); font-size: clamp(1.35rem, 2.4vw, 2rem); line-height: 1.34; letter-spacing: -.02em; }

.capabilities-section { background: var(--charcoal); color: var(--white); }
.section-heading.inverse > p { color: #aaa7a1; }
.capability-list { width: min(100%, var(--max)); margin: 0 auto; border-top: 1px solid #454440; }
.capability-list article { padding: 32px 0; display: grid; grid-template-columns: 86px 1fr; gap: 22px; border-bottom: 1px solid #454440; }
.cap-number { color: var(--red); font-size: .75rem; font-weight: 800; letter-spacing: .14em; }
.capability-list article > div { display: grid; grid-template-columns: .55fr 1fr; gap: 40px; }
.capability-list h3 { margin: 0; font-size: clamp(1.3rem, 2.4vw, 2.05rem); font-weight: 650; }
.capability-list p { max-width: 620px; margin: 0; color: #aaa7a1; }

.contact-section { background: var(--white); }
.contact-grid { width: min(100%, var(--max)); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 10vw, 150px); }
.contact-message { padding-top: 30px; border-top: 5px solid var(--red); }
.contact-message > p { color: var(--muted); font-size: clamp(1.12rem, 1.8vw, 1.4rem); }
.contact-message dl { margin: 34px 0 0; border-top: 1px solid var(--line); }
.contact-message dl div { padding: 18px 0; display: grid; grid-template-columns: 110px 1fr; gap: 20px; border-bottom: 1px solid var(--line); }
.contact-message dt { color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-message dd { margin: 0; font-weight: 650; }

.site-footer { padding: 48px var(--pad) 26px; background: #ecebe7; border-top: 1px solid var(--line); }
.footer-main, .footer-bottom { width: min(100%, var(--max)); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-main img { width: 132px; height: 52px; object-fit: contain; object-position: left; }
.footer-main span { color: var(--muted); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom { margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; }
.footer-bottom a { min-height: 44px; display: inline-flex; align-items: center; font-weight: 700; }
.footer-bottom a:hover { color: var(--red); }

@media (max-width: 960px) {
  .header-inner { grid-template-columns: 1fr auto; min-height: 70px; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; top: 70px; left: 0; right: 0; display: none; flex-direction: column; gap: 0; padding: 18px var(--pad) 28px; background: var(--white); border-bottom: 1px solid var(--line); }
  .site-nav.open { display: flex; }
  .site-nav a { min-height: 48px; display: flex; align-items: center; border-bottom: 1px solid #eceae5; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-product { max-width: 650px; }
  .identity-strip { grid-template-columns: 1fr; }
  .identity-strip > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .identity-strip > div:last-child { border-bottom: 0; }
  .company-grid, .contact-grid { grid-template-columns: 1fr; }
  .company-title-block { position: static; }
  .capability-list article > div { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 700px) {
  .brand { width: 120px; }
  .hero-grid { padding-top: 62px; }
  h1 { font-size: clamp(3.1rem, 15vw, 5rem); }
  .section-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 42px; }
  .section-heading > p { margin-left: 0; }
  .product-grid { grid-template-columns: 1fr; }
  .product-meta { min-height: 220px; }
  .availability-note { text-align: left; }
  .capability-list article { grid-template-columns: 46px 1fr; }
  .contact-message dl div { grid-template-columns: 1fr; gap: 7px; }
  .footer-main, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .frame-label { font-size: .58rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
