:root {
  --ivory: #f5f0e6;
  --paper: #fbf8f1;
  --mineral: #ddd3c2;
  --ink: #102c2d;
  --ink-soft: #345052;
  --teal: #0d4b50;
  --copper: #b15c2e;
  --saffron: #d89622;
  --line: rgba(16, 44, 45, .2);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1220px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .2em; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--saffron);
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--saffron); outline-offset: 4px; }

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand img { width: 160px; height: auto; }
nav { display: flex; align-items: center; gap: 30px; }
nav a { font-size: .82rem; font-weight: 700; text-decoration: none; letter-spacing: .03em; }
.nav-cta { border-bottom: 2px solid var(--copper); padding-block: 7px; }
.disclosure {
  padding: 8px 0;
  background: var(--ink);
  color: #fff;
  font-size: .72rem;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.hero { padding: clamp(48px, 7vw, 92px) 0 70px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(460px, 1.12fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.eyebrow, .section-kicker {
  margin: 0 0 22px;
  color: var(--copper);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; }
h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
}
h1 { max-width: 720px; margin-bottom: 25px; font-size: clamp(3.2rem, 5.7vw, 5.7rem); }
h2 { font-size: clamp(2.5rem, 4.5vw, 4.5rem); }
.hero-lede {
  max-width: 590px;
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 20px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
}
.button-primary { background: var(--teal); color: #fff; }
.button-light { background: var(--paper); color: var(--ink); }
.text-link { font-size: .82rem; font-weight: 800; text-decoration: none; border-bottom: 1px solid; }
.micro { margin: 20px 0 0; color: var(--ink-soft); font-size: .74rem; }
.hero-visual { margin: 0; position: relative; }
.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -18px 28px 24px -18px;
  border: 1px solid var(--saffron);
}
.hero-visual img { width: 100%; aspect-ratio: 1.34; object-fit: cover; }
.hero-visual figcaption {
  display: flex;
  gap: 20px;
  padding: 14px 0 0;
  color: var(--ink-soft);
  font-size: .72rem;
  letter-spacing: .04em;
}
.hero-visual figcaption span { color: var(--copper); font-weight: 800; }

.orientation { background: var(--paper); border-block: 1px solid var(--line); }
.orientation-grid { display: grid; grid-template-columns: .6fr 1.4fr; gap: 40px; padding-block: 30px; }
.section-kicker { margin: 4px 0 0; }
.capability-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.capability-list p { margin: 0; font-size: .82rem; }
.capability-list span { display: block; margin-bottom: 7px; color: var(--copper); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.section { padding: clamp(72px, 9vw, 124px) 0; }
.section-heading {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}
.section-heading h2 { max-width: 750px; margin-bottom: 0; }
.section-heading > p { max-width: 400px; margin: 0 0 6px; color: var(--ink-soft); }
.featured-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 22px;
}
.product-card { background: var(--paper); border: 1px solid var(--line); }
.product-card-wide { grid-row: span 2; }
.product-image { overflow: hidden; background: #d8cfbf; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-card-wide .product-image { height: 640px; }
.product-card:not(.product-card-wide) { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 309px; }
.product-card:not(.product-card-wide) .product-image { min-height: 100%; }
.product-card-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.product-copy { padding: 26px; }
.product-number { margin: 0 0 42px; color: var(--copper); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.product-copy h3 { margin-bottom: 22px; font-family: var(--serif); font-size: clamp(1.4rem, 2.2vw, 2.2rem); font-weight: 400; line-height: 1.08; }
.product-copy a { font-size: .75rem; font-weight: 800; text-decoration: none; border-bottom: 1px solid; }
.range-index { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 22px; border-top: 1px solid var(--line); }
.range-index p { margin: 0; padding: 20px 16px 0 0; font-family: var(--serif); font-size: 1.12rem; }

.private-label { background: var(--ink); color: #fff; }
.private-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 150px); }
.private-intro h2 { max-width: 560px; }
.private-intro > p:not(.eyebrow) { max-width: 520px; color: #c6d0cc; }
.private-intro .button { margin-top: 22px; }
.eyebrow-light { color: #e2a84b; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.25); }
.process-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.process-list > li > span { color: #e2a84b; font-size: .72rem; font-weight: 800; }
.process-list h3 { margin-bottom: 8px; font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
.process-list p { margin: 0; color: #c6d0cc; font-size: .9rem; }

.contact-close { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; }
.contact-grid h2 { max-width: 700px; margin-bottom: 0; }
.contact-details > p { max-width: 480px; margin-top: 0; color: var(--ink-soft); }
.contact-details .button { margin: 20px 0 34px; }
address { font-style: normal; font-size: .84rem; }
address a { font-weight: 800; }

.site-footer { padding: 28px 0; background: var(--paper); border-top: 1px solid var(--line); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-inner img { width: 118px; height: auto; }
.footer-inner p, .footer-inner a { margin: 0; color: var(--ink-soft); font-size: .72rem; }

@media (hover: hover) {
  .button, nav a, .text-link, .product-copy a { transition: color .18s ease, background-color .18s ease, border-color .18s ease; }
  .button-primary:hover { background: var(--copper); }
  .button-light:hover { background: var(--saffron); }
  nav a:hover, .text-link:hover, .product-copy a:hover { color: var(--copper); }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 36px, 720px); }
  nav a:not(.nav-cta) { display: none; }
  .hero-grid, .section-heading, .private-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 58px; }
  .hero-copy { max-width: 680px; }
  .hero-visual img { aspect-ratio: 1.6; }
  .orientation-grid { grid-template-columns: 1fr; gap: 20px; }
  .featured-grid { grid-template-columns: 1fr; }
  .product-card-wide { grid-row: auto; }
  .product-card-wide .product-image { height: auto; aspect-ratio: 1.5; }
  .product-card:not(.product-card-wide) { min-height: 280px; }
  .section-heading { gap: 24px; }
  .private-grid, .contact-grid { gap: 54px; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 30px); }
  .header-inner { min-height: 64px; }
  .brand img { width: 128px; }
  .nav-cta { padding-block: 4px; font-size: .74rem; }
  .disclosure { font-size: .58rem; letter-spacing: .05em; }
  .hero { padding: 34px 0 48px; }
  h1 { font-size: clamp(2.75rem, 14.2vw, 3.5rem); }
  .hero-lede { margin-bottom: 22px; font-size: .94rem; line-height: 1.45; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .button { width: 100%; }
  .micro { margin-top: 15px; }
  .hero-grid { gap: 46px; }
  .hero-visual::before { inset: -10px 12px 12px -8px; }
  .hero-visual img { aspect-ratio: 1.25; }
  .orientation { display: none; }
  .section { padding: 68px 0; }
  .capability-list, .range-index { grid-template-columns: 1fr; }
  .featured-grid { gap: 16px; }
  .product-card:not(.product-card-wide) { grid-template-columns: 1fr; }
  .product-card:not(.product-card-wide) .product-image { aspect-ratio: 1.25; }
  .product-copy { padding: 22px; }
  .product-number { margin-bottom: 26px; }
  .range-index p { padding-bottom: 15px; border-bottom: 1px solid var(--line); }
  .process-list li { grid-template-columns: 36px 1fr; gap: 12px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 340px) {
  :root { --shell: calc(100% - 24px); }
  .brand img { width: 112px; }
  .disclosure { font-size: .54rem; }
  h1 { font-size: 2.65rem; }
  .button { padding-inline: 14px; }
}

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