:root {
  --ink: #111820;
  --ink-2: #19232d;
  --ink-3: #25313c;
  --gold: #d4aa3a;
  --gold-dark: #8f6307;
  --gold-soft: #f5e9c5;
  --paper: #ffffff;
  --cream: #f7f4ed;
  --soft: #f2f5f6;
  --text: #29343e;
  --muted: #63717d;
  --line: #dce2e5;
  --success: #176b45;
  --error: #a52828;
  --shadow: 0 24px 70px rgba(17, 24, 32, .12);
  --radius: 22px;
  --shell: min(1180px, calc(100% - 40px));
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-underline-offset: 3px; }

button, input, select, textarea { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid #805707;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, .94);
}

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  color: var(--ink);
  font-family: "Avenir Next", Avenir, Montserrat, ui-sans-serif, system-ui, sans-serif;
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -.035em;
}

h1 { margin-bottom: 24px; font-size: clamp(2.75rem, 6vw, 5.6rem); }
h2 { margin-bottom: 20px; font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { margin-bottom: 12px; font-size: 1.4rem; }

.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #b88109, #f3cf69);
  box-shadow: 0 0 14px rgba(212, 170, 58, .7);
  transform: scaleX(0);
  transform-origin: left center;
}

.notice-bar {
  color: #e8edf0;
  background: #090e13;
  font-size: .78rem;
  letter-spacing: .035em;
}

.notice-bar .shell {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.notice-bar a { color: var(--gold); font-weight: 700; text-decoration: none; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: var(--paper);
  background: rgba(17, 24, 32, .97);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { flex: 0 0 auto; width: 218px; text-decoration: none; }
.brand img { width: 100%; height: auto; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
}

.primary-nav > a:not(.button) {
  position: relative;
  color: #e9edf0;
  font-size: .93rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="page"]::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 9px;
  cursor: pointer;
}

.menu-label { font-size: .84rem; font-weight: 750; }
.menu-lines { width: 22px; display: grid; gap: 4px; }
.menu-lines i { height: 2px; background: currentColor; border-radius: 2px; transition: .2s ease; }
.menu-toggle[aria-expanded="true"] .menu-lines i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-lines i:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-lines i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.button {
  position: relative;
  overflow: hidden;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 23px;
  color: #111820;
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 9px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -40%;
  width: 28%;
  pointer-events: none;
  background: rgba(255, 255, 255, .45);
  filter: blur(1px);
  transform: skewX(-18deg) translateX(-240%);
  transition: transform .55s ease;
}

.button:hover::after { transform: skewX(-18deg) translateX(650%); }

.button:hover { background: #e2bd58; border-color: #e2bd58; transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 10px 17px; font-size: .86rem; }
.button-ghost { color: var(--paper); background: transparent; border-color: rgba(255, 255, 255, .42); }
.button-ghost:hover { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.button-outline { color: var(--ink); background: transparent; border-color: var(--ink); }
.button-outline:hover { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.button-light { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.button-light:hover { background: var(--gold); border-color: var(--gold); }
.button[disabled] { cursor: wait; opacity: .65; transform: none; }

.button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button-row.centered { justify-content: center; }

.eyebrow {
  margin-bottom: 15px;
  color: var(--gold-dark);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.08rem, 1.7vw, 1.28rem); }

.hero {
  position: relative;
  overflow: hidden;
  color: #eef2f3;
  background:
    radial-gradient(circle at 78% 35%, rgba(212, 170, 58, .18), transparent 26%),
    linear-gradient(130deg, #0c1218 0%, #17212b 70%, #111820 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to right, transparent 12%, black 72%);
}

.hero-grid {
  position: relative;
  min-height: min(760px, calc(100vh - 121px));
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  padding-block: 90px;
}

.hero h1 { max-width: 770px; color: var(--paper); }
.hero .lead { max-width: 700px; color: #bec8ce; }
.hero .eyebrow { color: #e0bd5c; }

.hero-visual { position: relative; min-height: 540px; isolation: isolate; }
.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 4% -7% 2% 6%;
  border: 1px solid rgba(212, 170, 58, .42);
  border-radius: 48% 52% 50% 45%;
  animation: orbit-pulse 8s ease-in-out infinite;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: #27313a;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.hero-photo:hover img { transform: scale(1.055); }
.hero-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  color: var(--paper);
  background: rgba(9, 14, 19, .76);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  backdrop-filter: blur(7px);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.hero-photo-main { --photo-rotate: -2.5deg; inset: 18px 34px 38px 45px; transform: rotate(var(--photo-rotate)); }
.hero-photo-main img { object-position: center center; }
.hero-photo-portrait { --photo-rotate: 4deg; z-index: 2; top: -20px; right: -28px; width: 35%; height: 46%; transform: rotate(var(--photo-rotate)); animation: photo-float 6.5s ease-in-out infinite; }
.hero-photo-tech { --photo-rotate: 2deg; z-index: 3; right: -10px; bottom: -2px; width: 48%; height: 32%; transform: rotate(var(--photo-rotate)); animation: photo-float 7.5s -2s ease-in-out infinite; }
.hero-photo-badge {
  position: absolute;
  z-index: 4;
  bottom: 6px;
  left: 5px;
  display: grid;
  gap: 1px;
  padding: 13px 16px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .28);
  transform: rotate(-2deg);
}
.hero-photo-badge strong { font-size: .82rem; }
.hero-photo-badge span { font-size: .7rem; }

.motion-ribbon { overflow: hidden; color: var(--ink); background: var(--gold); border-block: 1px solid #a77814; }
.motion-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-block: 12px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
  animation: ribbon-move 22s linear infinite;
}
.motion-track span { white-space: nowrap; }
.motion-track i { font-style: normal; font-size: .72rem; }

.section { padding-block: clamp(76px, 9vw, 120px); }
.soft-section { background: var(--soft); }
.section-heading { max-width: 740px; margin-bottom: 48px; }
.section-heading.narrow { max-width: 600px; }
.section-heading > p:last-child { max-width: 650px; color: var(--muted); }

.category-section { background: var(--cream); }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.category-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(17, 24, 32, .08);
  border-radius: var(--radius);
  box-shadow: 0 15px 50px rgba(17, 24, 32, .05);
  transition: transform .32s ease, box-shadow .32s ease;
}
.category-card:hover { transform: translateY(-8px); box-shadow: 0 25px 65px rgba(17, 24, 32, .13); }
.category-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -85px;
  bottom: -85px;
  width: 230px;
  aspect-ratio: 1;
  background: var(--gold-soft);
  border-radius: 50%;
  transition: transform .35s ease;
}
.category-card:hover::after { transform: scale(1.15); }
.category-photo { height: 220px; overflow: hidden; background: #dfe4e6; }
.category-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.2,.7,.2,1); }
.category-card:first-child .category-photo img { object-position: center 34%; }
.category-card:hover .category-photo img { transform: scale(1.06); }
.category-card-body { position: relative; z-index: 1; padding: 28px 31px 36px; }
.category-card-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.category-icon { position: static; width: 57px; color: var(--gold-dark); }
.category-icon svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 5; }
.card-number { margin: 0; color: var(--gold-dark); font-size: .78rem; font-weight: 900; letter-spacing: .16em; }
.category-card h3 { position: relative; z-index: 1; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.category-card p, .category-card a { position: relative; z-index: 1; }
.category-card-body > p:not(.card-number) { max-width: 430px; color: var(--muted); }
.text-link { color: var(--ink); font-weight: 800; text-decoration-thickness: 1px; }
.text-link span { color: var(--gold-dark); }
.category-card-featured { color: #c2ccd1; background: var(--ink); }
.category-card-featured h3 { color: var(--paper); }
.category-card-featured .category-card-body > p:not(.card-number) { color: #c2ccd1; }
.category-card-featured .category-icon, .category-card-featured .card-number { color: #e0bd5c; }
.category-card-featured .text-link { color: var(--paper); }
.category-card-featured::after { background: rgba(212, 170, 58, .14); }

.process-section { background: var(--paper); }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: item; }
.process-list li { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 30px 34px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-list li + li { border-left: 1px solid var(--line); }
.process-list > li > span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--ink); background: var(--gold-soft); border-radius: 50%; font-size: .82rem; font-weight: 900; }
.process-list h3 { font-size: 1.2rem; }
.process-list p { margin-bottom: 0; color: var(--muted); }

.cta-section { padding-top: 0; }
.cta-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(40px, 6vw, 76px);
  color: #dce4e8;
  background: linear-gradient(120deg, var(--ink), #24313c);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cta-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -12%;
  bottom: -90%;
  width: 440px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(212, 170, 58, .28), transparent 67%);
  transition: transform .7s ease;
}
.cta-panel:hover::before { transform: translate(-6%, -8%) scale(1.12); }
.cta-panel h2 { max-width: 730px; color: var(--paper); }
.cta-panel p:not(.eyebrow) { max-width: 700px; margin-bottom: 0; color: #bcc7cd; }
.cta-panel .eyebrow { color: #e4c361; }
.cta-panel .button { flex: 0 0 auto; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(80px, 11vw, 145px);
  color: #dbe2e6;
  background: linear-gradient(130deg, #0d141b, #202c37);
}
.page-hero::after {
  content: "R";
  position: absolute;
  right: max(2vw, calc((100% - 1180px) / 2));
  top: 50%;
  color: rgba(212, 170, 58, .12);
  font-size: clamp(13rem, 28vw, 29rem);
  font-weight: 900;
  line-height: .8;
  transform: translateY(-50%);
}
.page-hero .shell { position: relative; z-index: 1; }
.page-hero h1 { max-width: 920px; color: var(--paper); font-size: clamp(2.7rem, 6vw, 5.3rem); }
.page-hero .lead { color: #bac5cb; }
.page-hero .eyebrow { color: #e2bf60; }

.category-page-hero { padding-block: clamp(62px, 8vw, 105px); }
.category-page-hero::after { opacity: .7; }
.category-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  align-items: center;
  gap: clamp(45px, 7vw, 90px);
}
.category-hero-grid h1 { font-size: clamp(2.7rem, 5.5vw, 4.9rem); }
.category-hero-photo {
  position: relative;
  overflow: hidden;
  height: 470px;
  margin: 0;
  background: #2a343d;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .34);
}
.category-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(9, 14, 19, .35), transparent 36%);
}
.category-hero-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.category-hero-photo:hover img { transform: scale(1.045); }
.category-hero-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 16px;
  padding: 8px 11px;
  color: var(--paper);
  background: rgba(9, 14, 19, .72);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  backdrop-filter: blur(7px);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.editorial-photo {
  overflow: hidden;
  height: 430px;
  margin: 34px 0 0;
  background: var(--soft);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(17, 24, 32, .12);
}
.editorial-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 34%; transition: transform .8s ease; }
.editorial-photo:hover img { transform: scale(1.045); }

.product-category-list { display: grid; gap: 28px; }
.product-category {
  scroll-margin-top: 120px;
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
  padding: 22px clamp(28px, 5vw, 62px) 22px 22px;
  background: var(--cream);
  border-radius: var(--radius);
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-category:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(17, 24, 32, .12); }
.product-category.product-category-featured,
.product-category:nth-child(3n) { background: var(--ink); }
.product-category.product-category-featured h2,
.product-category:nth-child(3n) h2 { color: var(--paper); }
.product-category.product-category-featured p:not(.eyebrow),
.product-category:nth-child(3n) p:not(.eyebrow) { color: #bdc8ce; }
.product-category.product-category-featured .eyebrow,
.product-category:nth-child(3n) .eyebrow { color: #e0bd5c; }
.product-category.product-category-featured .button-outline,
.product-category:nth-child(3n) .button-outline { color: var(--paper); border-color: rgba(255,255,255,.5); }
.product-category.product-category-featured .button-outline:hover,
.product-category:nth-child(3n) .button-outline:hover { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.product-category-media { position: relative; height: 340px; overflow: hidden; margin: 0; background: #dfe4e6; border-radius: 16px; }
.product-category-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.2,.7,.2,1); }
.product-category:first-child .product-category-media img { object-position: center center; }
.product-category:hover .product-category-media img { transform: scale(1.055); }
.product-category-media span {
  position: absolute;
  right: 15px;
  bottom: 15px;
  padding: 7px 11px;
  color: var(--paper);
  background: rgba(9, 14, 19, .76);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  backdrop-filter: blur(7px);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.product-category h2 { margin-bottom: 16px; }
.product-category p:not(.eyebrow) { max-width: 690px; color: var(--muted); }
.product-category .button { margin-top: 15px; }

.two-column, .split-copy { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 130px); align-items: start; }
.split-copy > div:last-child { font-size: 1.08rem; }
.split-copy > div:last-child p { color: var(--muted); }
.split-copy .button { margin-top: 17px; }
.check-list { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 20px 24px 20px 58px; background: var(--paper); border-radius: 11px; box-shadow: 0 7px 25px rgba(17,24,32,.05); }
.check-list li::before { content: "✓"; position: absolute; left: 21px; top: 18px; width: 25px; height: 25px; display: grid; place-items: center; color: var(--ink); background: var(--gold); border-radius: 50%; font-size: .76rem; font-weight: 900; }

.company-details { display: grid; grid-template-columns: repeat(2, 1fr); margin: 0; border-top: 1px solid var(--line); }
.company-details > div { padding: 24px 20px 24px 0; border-bottom: 1px solid var(--line); }
.company-details > div:nth-child(even) { padding-left: 34px; border-left: 1px solid var(--line); }
.company-details dt { margin-bottom: 5px; color: var(--muted); font-size: .75rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.company-details dd { margin: 0; color: var(--ink); font-weight: 700; }
.company-record { margin-top: 28px; }

.faq-wrap { max-width: 900px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 28px 5px; color: var(--ink); font-size: 1.12rem; font-weight: 800; list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { position: relative; flex: 0 0 auto; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; }
.faq-item summary i::before, .faq-item summary i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 11px; height: 2px; background: var(--ink); transform: translate(-50%, -50%); }
.faq-item summary i::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .2s ease; }
.faq-item[open] summary i { background: var(--gold); border-color: var(--gold); }
.faq-item[open] summary i::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer { max-width: 760px; padding: 0 60px 28px 5px; color: var(--muted); }
.faq-answer p { margin-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr); gap: clamp(42px, 8vw, 100px); align-items: start; }
.contact-aside { position: sticky; top: 126px; }
.contact-aside > p:not(.eyebrow) { color: var(--muted); }
.contact-method { display: grid; gap: 3px; padding-block: 17px; border-top: 1px solid var(--line); }
.contact-method span { color: var(--muted); font-size: .75rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.contact-method a { color: var(--ink); font-size: 1.12rem; font-weight: 800; }
.registered-note { margin-top: 30px; padding: 22px; background: var(--cream); border-left: 4px solid var(--gold); border-radius: 0 10px 10px 0; }
.registered-note strong { color: var(--ink); }
.registered-note p { margin: 7px 0 0; color: var(--muted); font-size: .9rem; }

.form-card { padding: clamp(28px, 5vw, 55px); background: var(--soft); border-radius: var(--radius); }
.form-card h2 { font-size: clamp(2rem, 4vw, 3rem); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--ink); font-size: .86rem; font-weight: 800; }
.optional { color: var(--muted); font-size: .74rem; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #bdc7cc;
  border-radius: 8px;
  box-shadow: none;
}
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-dark); outline: 3px solid rgba(212,170,58,.2); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--error); }
.trap { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.form-privacy { margin: 20px 0; color: var(--muted); font-size: .88rem; }
.form-status { min-height: 26px; margin: 16px 0 0; font-weight: 700; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--error); }

.legal-hero { padding-block: clamp(70px, 9vw, 115px); }
.updated { margin: 24px 0 0; color: #9eabb2; font-size: .87rem; }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); justify-content: space-between; gap: 70px; }
.legal-single { max-width: 850px; }
.legal-nav { position: sticky; top: 125px; display: grid; align-self: start; gap: 8px; padding: 20px; background: var(--soft); border-radius: 12px; }
.legal-nav strong { margin-bottom: 7px; color: var(--ink); }
.legal-nav a { color: var(--muted); font-size: .9rem; }
.legal-copy h2 { scroll-margin-top: 120px; margin: 48px 0 15px; font-size: clamp(1.45rem, 2.5vw, 2rem); letter-spacing: -.02em; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p, .legal-copy li { color: #4f5d68; }
.legal-copy a { color: #6e4b00; font-weight: 700; }

.html-sitemap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; max-width: 800px; }
.html-sitemap h2 { font-size: 1.6rem; }
.html-sitemap ul { display: grid; gap: 10px; margin: 0; padding-left: 20px; }
.html-sitemap a { color: var(--ink); font-weight: 700; }

.not-found { min-height: 65vh; display: grid; place-items: center; padding-block: 90px; text-align: center; }
.not-found .shell { max-width: 740px; }
.error-code { margin-bottom: -15px; color: var(--gold); font-size: clamp(6rem, 20vw, 13rem); font-weight: 900; line-height: .8; }
.not-found h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
.not-found > div > p:not(.eyebrow, .error-code) { color: var(--muted); font-size: 1.1rem; }

.site-footer { color: #b7c2c8; background: #0b1117; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .65fr .9fr 1.25fr; gap: clamp(30px, 5vw, 65px); padding-block: 75px 60px; }
.footer-brand img { width: 225px; height: auto; }
.footer-brand p { max-width: 330px; margin-top: 20px; }
.site-footer h2 { margin-bottom: 17px; color: var(--paper); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.site-footer ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.site-footer a { color: #d9e0e3; }
.site-footer p { font-size: .9rem; }
.site-footer strong { color: #e4e9eb; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-block: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 18px; font-size: .82rem; }

.reveal-ready {
  opacity: 0;
  translate: 0 28px;
  transition: opacity .7s ease, translate .7s cubic-bezier(.2,.75,.2,1);
}
.reveal-ready.is-visible { opacity: 1; translate: 0 0; }

@keyframes orbit-pulse {
  0%, 100% { border-radius: 48% 52% 50% 45%; transform: scale(1); }
  50% { border-radius: 54% 46% 44% 56%; transform: scale(1.035) rotate(2deg); }
}

@keyframes photo-float {
  0%, 100% { transform: translateY(0) rotate(var(--photo-rotate)); }
  50% { transform: translateY(-10px) rotate(var(--photo-rotate)); }
}

@keyframes ribbon-move {
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 850px); }
  .menu-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed;
    inset: 121px 0 auto;
    max-height: calc(100vh - 121px);
    overflow-y: auto;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 18px 20px 30px;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 25px 45px rgba(0,0,0,.3);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform .25s ease, visibility .25s;
  }
  .primary-nav.is-open { transform: translateY(0); visibility: visible; }
  .primary-nav > a:not(.button) { padding: 15px 5px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 1.05rem; }
  .primary-nav > a:not(.button)::after { display: none; }
  .primary-nav .button { margin-top: 18px; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 42px; padding-block: 80px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: 100%; max-width: 760px; min-height: 480px; margin-inline: auto; }
  .hero-photo-main { inset: 20px 70px 35px 45px; }
  .hero-photo-portrait { right: 4px; }
  .hero-photo-tech { right: 12px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card-featured { grid-column: 1 / -1; min-height: 350px; display: grid; grid-template-columns: 1fr 1fr; }
  .category-card-featured .category-photo { height: 100%; min-height: 350px; }
  .category-hero-grid { grid-template-columns: 1fr; }
  .category-hero-grid > div { max-width: 760px; }
  .category-hero-photo { width: 100%; max-width: 760px; height: 440px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-aside { position: static; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; grid-template-columns: repeat(3, 1fr); }
  .legal-nav strong { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  h1 { font-size: clamp(2.55rem, 12vw, 4.1rem); }
  h2 { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .notice-bar .shell { justify-content: center; }
  .notice-bar span { display: none; }
  .header-inner { min-height: 78px; }
  .brand { width: 190px; }
  .primary-nav { inset: 113px 0 auto; max-height: calc(100vh - 113px); }
  .hero-grid { gap: 34px; padding-block: 64px 76px; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4.4rem); }
  .hero-visual { min-height: 365px; }
  .hero-photo-main { inset: 18px 36px 30px 7px; }
  .hero-photo-portrait { top: -8px; right: 0; width: 35%; height: 48%; }
  .hero-photo-tech { right: 1px; bottom: 0; width: 51%; height: 34%; }
  .hero-photo-badge { bottom: 3px; left: 0; padding: 10px 12px; }
  .hero-photo figcaption { right: 8px; bottom: 8px; padding: 5px 8px; font-size: .58rem; }
  .button-row { display: grid; }
  .category-grid, .process-list, .two-column, .split-copy, .company-details, .form-grid, .html-sitemap { grid-template-columns: 1fr; }
  .category-card, .category-card-featured { min-height: 0; display: block; grid-column: auto; }
  .category-card-featured .category-photo, .category-photo { height: 250px; min-height: 0; }
  .process-list li + li { border-left: 0; border-top: 0; }
  .product-category { grid-template-columns: 1fr; padding: 18px 18px 34px; }
  .product-category-media { height: 270px; }
  .category-page-hero { padding-block: 58px 68px; }
  .category-hero-grid { gap: 34px; }
  .category-hero-photo { height: 330px; }
  .editorial-photo { height: 365px; }
  .company-details > div:nth-child(even) { padding-left: 0; border-left: 0; }
  .field.full { grid-column: auto; }
  .cta-panel { align-items: flex-start; flex-direction: column; }
  .cta-panel .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .legal-nav { grid-template-columns: repeat(2, 1fr); }
  .page-hero::after { right: -50px; }
}

@media (max-width: 430px) {
  :root { --shell: calc(100% - 24px); }
  .brand { width: 165px; }
  .menu-label { display: none; }
  .hero-visual { min-height: 310px; }
  .hero-photo-main { inset: 16px 28px 28px 4px; }
  .hero-photo-badge span { display: none; }
  .category-photo, .category-card-featured .category-photo { height: 220px; }
  .category-card-body { padding: 25px 24px 31px; }
  .category-icon { width: 50px; }
  .product-category-media { height: 235px; }
  .category-hero-photo { height: 280px; }
  .category-hero-photo figcaption { right: 10px; bottom: 10px; font-size: .58rem; }
  .form-card { padding: 25px 18px; }
  .legal-nav { display: none; }
}

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