:root {
  --ink: #141414;
  --muted: #62625d;
  --paper: #f5f4ef;
  --surface: #ffffff;
  --line: #d9d8d2;
  --coral: #f06a5b;
  --acid: #d8ee58;
  --metal: #c7c8c5;
  --radius: 6px;
  --shadow: 0 18px 44px rgba(20, 20, 20, 0.12);
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-shell { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-tight { padding: 54px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--coral); }
.section-title {
  margin: 0;
  max-width: 820px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: .95;
  font-weight: 750;
  letter-spacing: 0;
}
.section-lead { max-width: 660px; color: var(--muted); font-size: 17px; line-height: 1.7; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(245, 244, 239, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(20, 20, 20, .08);
}
.nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: 270px 1fr 270px;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 850; font-size: 17px; white-space: nowrap; }
.brand-mark { width: 38px; height: 38px; object-fit: cover; border-radius: 4px; mix-blend-mode: multiply; }
.nav-links { display: flex; justify-content: center; align-items: center; gap: 30px; font-size: 13px; font-weight: 650; }
.nav-link { position: relative; padding: 28px 0; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 19px; height: 2px; background: var(--coral); transition: right .25s ease; }
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.nav-actions { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.menu-button { display: none; border: 0; background: transparent; width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer; }

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); background: var(--coral); border-color: var(--coral); box-shadow: 0 10px 24px rgba(240,106,91,.24); }
.button-light { color: var(--ink); background: rgba(255,255,255,.9); border-color: rgba(20,20,20,.15); }
.button-light:hover { color: #fff; }
.button-outline { background: transparent; color: var(--ink); }
.button-outline:hover { color: #fff; }
.icon-button { width: 46px; padding: 0; }
.button svg, .icon-button svg { width: 17px; height: 17px; }

.hero { padding: 16px 0 0; }
.hero-frame {
  min-height: min(720px, calc(100vh - 96px));
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #d9d8d4;
}
.hero-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(245,244,239,.96) 0%, rgba(245,244,239,.72) 36%, rgba(245,244,239,.06) 66%); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-content { position: relative; z-index: 2; min-height: inherit; width: min(58%, 790px); padding: clamp(44px, 7vw, 98px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.hero-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 26px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.hero-kicker span { width: 9px; height: 9px; background: var(--coral); }
.hero h1 { margin: 0; font-size: clamp(58px, 7.2vw, 108px); line-height: .83; font-weight: 850; letter-spacing: 0; }
.hero-copy { margin: 28px 0 32px; max-width: 530px; font-size: 17px; line-height: 1.55; color: #4f4e4a; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { position: absolute; right: 28px; bottom: 28px; z-index: 2; width: 220px; padding: 18px; background: rgba(255,255,255,.86); backdrop-filter: blur(12px); border-radius: 6px; }
.hero-note strong { display: block; margin-bottom: 6px; font-size: 13px; }
.hero-note p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }

.signal-strip { padding: 28px 0; border-bottom: 1px solid var(--line); }
.signals { display: grid; grid-template-columns: repeat(4, 1fr); }
.signal { display: flex; align-items: center; gap: 14px; min-height: 60px; padding: 0 28px; border-right: 1px solid var(--line); }
.signal:first-child { padding-left: 0; }
.signal:last-child { border: 0; }
.signal svg { width: 24px; height: 24px; stroke: var(--coral); }
.signal strong { display: block; font-size: 13px; }
.signal span { color: var(--muted); font-size: 11px; line-height: 1.4; }

.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 36px; margin-bottom: 36px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 750; transition: color .2s, border-color .2s, gap .2s; }
.text-link:hover { color: var(--coral); border-color: var(--coral); gap: 13px; }

.collection-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.collection-card { position: relative; min-height: 460px; overflow: hidden; border-radius: var(--radius); background: #ddd; }
.collection-card:nth-child(1) { grid-column: span 7; }
.collection-card:nth-child(2) { grid-column: span 5; }
.collection-card:nth-child(3) { grid-column: span 5; }
.collection-card:nth-child(4) { grid-column: span 7; }
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.collection-card:hover img { transform: scale(1.045); }
.collection-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(15,15,15,.76)); transition: background .3s; }
.collection-card:hover::after { background: linear-gradient(180deg, rgba(240,106,91,.05) 25%, rgba(15,15,15,.85)); }
.collection-info { position: absolute; z-index: 2; left: 26px; right: 26px; bottom: 24px; color: #fff; display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; }
.collection-info h3 { margin: 0 0 7px; font-size: 28px; }
.collection-info p { margin: 0; max-width: 370px; color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.5; }
.round-arrow { flex: none; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; transition: color .25s, background .25s, transform .25s; }
.collection-card:hover .round-arrow { color: var(--ink); background: var(--acid); border-color: var(--acid); transform: rotate(-12deg); }

.capability-band { background: var(--ink); color: #fff; }
.capability-layout { display: grid; grid-template-columns: 4fr 8fr; gap: 8vw; }
.capability-layout .eyebrow::before { background: var(--acid); }
.capability-layout .section-lead { color: #aaa; }
.capabilities { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #3a3a3a; }
.capability { min-height: 210px; padding: 28px 22px 24px 0; border-bottom: 1px solid #3a3a3a; }
.capability:nth-child(odd) { border-right: 1px solid #3a3a3a; }
.capability:nth-child(even) { padding-left: 28px; }
.capability svg { width: 28px; height: 28px; color: var(--acid); }
.capability h3 { margin: 28px 0 10px; font-size: 17px; }
.capability p { margin: 0; color: #a8a8a8; font-size: 13px; line-height: 1.6; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.process-step { position: relative; min-height: 260px; padding: 28px; background: var(--paper); transition: background .25s, color .25s; }
.process-step:hover { background: var(--coral); color: #fff; }
.process-number { display: block; margin-bottom: 90px; font-size: 12px; font-weight: 850; }
.process-step h3 { margin: 0 0 10px; font-size: 18px; }
.process-step p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; transition: color .25s; }
.process-step:hover p { color: rgba(255,255,255,.82); }

.statement { display: grid; grid-template-columns: 7fr 5fr; min-height: 500px; }
.statement-copy { padding: clamp(44px, 7vw, 96px); background: var(--acid); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.statement-copy h2 { margin: 0 0 24px; font-size: clamp(40px, 5.5vw, 78px); line-height: .93; }
.statement-copy p { max-width: 560px; line-height: 1.65; }
.statement-media { min-height: 450px; }
.statement-media img { width: 100%; height: 100%; object-fit: cover; }

.contact-band { padding: 72px 0; background: #dddeda; }
.contact-head { display: grid; grid-template-columns: 7fr 5fr; gap: 40px; align-items: end; margin-bottom: 38px; }
.contact-head h2 { margin: 0; font-size: clamp(42px, 5vw, 70px); line-height: .95; }
.contact-head p { margin: 0; color: var(--muted); line-height: 1.65; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--surface); border: 1px solid #c8c9c6; }
.contact-item { min-height: 190px; padding: 28px; border-right: 1px solid #d5d6d2; transition: background .25s, transform .25s; }
.contact-item:last-child { border: 0; }
.contact-item:hover { position: relative; z-index: 1; background: var(--surface); transform: translateY(-5px); box-shadow: var(--shadow); }
.contact-icon { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 34px; border: 1px solid var(--ink); border-radius: 50%; }
.contact-icon svg { width: 17px; height: 17px; }
.contact-item h3 { margin: 0 0 11px; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.contact-item p, .contact-item a { margin: 0; color: var(--muted); font-size: 17px; font-weight: 600; line-height: 1.55; }
.contact-item a:hover { color: var(--coral); }

.site-footer { padding: 44px 0 24px; background: var(--ink); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 5fr 2fr 2fr 3fr; gap: 40px; padding-bottom: 48px; }
.footer-brand p { max-width: 380px; color: #999; font-size: 13px; line-height: 1.6; }
.footer-brand .brand-mark { mix-blend-mode: normal; }
.footer-col h3 { margin: 3px 0 20px; color: #777; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.footer-col a { display: block; width: fit-content; margin: 0 0 12px; color: #ddd; font-size: 13px; transition: color .2s, transform .2s; }
.footer-col a:hover { color: var(--acid); transform: translateX(3px); }
.footer-cta { padding: 24px; border: 1px solid #3b3b3b; }
.footer-cta strong { display: block; margin-bottom: 10px; font-size: 17px; }
.footer-cta p { margin: 0 0 22px; color: #999; font-size: 12px; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid #333; color: #777; font-size: 11px; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a:hover { color: #fff; }

.page-hero { padding: 90px 0 58px; border-bottom: 1px solid var(--line); }
.page-hero h1 { margin: 0; max-width: 1040px; font-size: clamp(58px, 8vw, 116px); line-height: .86; letter-spacing: 0; }
.page-hero-grid { display: grid; grid-template-columns: 8fr 4fr; gap: 40px; align-items: end; }
.page-hero p { margin: 0 0 4px; color: var(--muted); line-height: 1.7; }
.filter-bar { position: sticky; top: 76px; z-index: 10; padding: 14px 0; background: rgba(245,244,239,.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter { min-height: 38px; padding: 0 16px; border: 1px solid var(--line); border-radius: 20px; background: transparent; cursor: pointer; font-size: 12px; font-weight: 700; transition: .2s; }
.filter:hover, .filter.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.catalog-card { background: var(--surface); border-radius: var(--radius); overflow: hidden; transition: transform .3s, box-shadow .3s; }
.catalog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.catalog-card[hidden] { display: none; }
.catalog-media { aspect-ratio: 4 / 3; overflow: hidden; background: #ddd; }
.catalog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.catalog-card:hover img { transform: scale(1.04); }
.catalog-body { padding: 22px; }
.catalog-tag { color: var(--coral); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.catalog-body h2 { margin: 10px 0 8px; font-size: 21px; }
.catalog-body p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.story-intro { display: grid; grid-template-columns: 5fr 7fr; gap: 8vw; align-items: start; }
.story-intro blockquote { margin: 0; font-size: clamp(34px, 4.2vw, 62px); line-height: 1.05; font-weight: 700; }
.story-copy p { margin: 0 0 22px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.story-image { min-height: 650px; }
.story-image img { width: 100%; height: 650px; object-fit: cover; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value { min-height: 280px; padding: 28px; border: 1px solid var(--line); transition: background .25s, transform .25s; }
.value:hover { transform: translateY(-5px); background: #fff; }
.value-number { color: var(--coral); font-size: 11px; font-weight: 850; }
.value h3 { margin: 96px 0 12px; font-size: 22px; }
.value p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.legal { width: min(calc(100% - 32px), 900px); margin: 0 auto; padding: 80px 0 110px; }
.legal h1 { margin: 0 0 18px; font-size: clamp(52px, 8vw, 92px); line-height: .9; }
.legal .updated { margin-bottom: 60px; color: var(--muted); font-size: 13px; }
.legal h2 { margin: 46px 0 16px; font-size: 24px; }
.legal p, .legal li { color: #565651; line-height: 1.75; }
.legal ul { padding-left: 20px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; position: absolute; top: 76px; left: 16px; right: 16px; padding: 18px; flex-direction: column; align-items: stretch; gap: 0; background: var(--surface); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-link { padding: 14px 8px; }
  .nav-link::after { bottom: 6px; }
  .nav-actions .button { display: none; }
  .menu-button { display: inline-flex; }
  .hero-content { width: 70%; }
  .signals { grid-template-columns: repeat(2, 1fr); }
  .signal:nth-child(2) { border-right: 0; }
  .signal:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .collection-card:nth-child(n) { grid-column: span 6; }
  .capability-layout { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .site-shell { width: min(calc(100% - 24px), var(--max)); }
  .section { padding: 64px 0; }
  .nav { min-height: 68px; }
  .brand { font-size: 15px; }
  .brand-mark { width: 34px; height: 34px; }
  .nav-links { top: 68px; left: 12px; right: 12px; }
  .hero { padding-top: 8px; }
  .hero-frame { min-height: 720px; }
  .hero-frame::after { background: linear-gradient(180deg, rgba(245,244,239,.96) 0%, rgba(245,244,239,.72) 48%, rgba(20,20,20,.06) 75%); }
  .hero-image { object-position: 63% center; }
  .hero-content { width: 100%; min-height: auto; padding: 42px 24px; justify-content: flex-start; }
  .hero h1 { font-size: 56px; }
  .hero-copy { width: 90%; margin: 20px 0 24px; font-size: 15px; }
  .hero-note { left: 20px; right: auto; bottom: 20px; width: min(260px, calc(100% - 40px)); }
  .hero-actions .button { min-height: 44px; }
  .signals { grid-template-columns: 1fr; }
  .signal { padding: 16px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .signal:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .section-head, .contact-head { grid-template-columns: 1fr; display: grid; align-items: start; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card:nth-child(n) { grid-column: 1; min-height: 420px; }
  .collection-info h3 { font-size: 24px; }
  .capabilities { grid-template-columns: 1fr; }
  .capability:nth-child(n) { padding: 24px 0; border-right: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 210px; }
  .process-number { margin-bottom: 60px; }
  .statement { grid-template-columns: 1fr; }
  .statement-copy { padding: 48px 24px; }
  .statement-media { min-height: 380px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-item { border-right: 0; border-bottom: 1px solid #d5d6d2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-cta { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 64px 0 40px; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .filter-bar { top: 68px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .story-intro { grid-template-columns: 1fr; }
  .story-image, .story-image img { min-height: 480px; height: 480px; }
  .values { grid-template-columns: 1fr; }
}

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