@layer reset, base, components, pages, responsive;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body, h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; }
  ul, ol { padding: 0; }
  img, svg { display: block; max-width: 100%; }
  button, input, textarea, select { font: inherit; }
  button, a { -webkit-tap-highlight-color: transparent; }
}

@layer base {
  :root {
    --ink: #10131a;
    --muted: #5d6470;
    --paper: #f7f5ed;
    --white: #fffefa;
    --line: #d9d8d1;
    --line-dark: #2f3440;
    --blue: #2759ff;
    --blue-dark: #1842ca;
    --coral: #ff7149;
    --mint: #23ad88;
    --violet: #8467f5;
    --yellow: #e9b832;
    --radius: 22px;
    --shadow: 0 24px 70px rgba(16, 19, 26, .11);
    --font-body: "Aptos", "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
    --font-display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  }

  html { background: var(--paper); color: var(--ink); font-family: var(--font-body); font-size: 16px; }
  body { min-width: 320px; background: var(--paper); color: var(--ink); line-height: 1.55; overflow-x: hidden; }
  body.nav-open { overflow: hidden; }
  a { color: inherit; text-decoration: none; }
  button { color: inherit; }
  ::selection { background: var(--blue); color: #fff; }
  :focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
  .container { width: min(1420px, calc(100% - 64px)); margin-inline: auto; }
  .section-space { padding: clamp(88px, 9vw, 150px) 0; }
  .hidden-field { position: absolute; left: -9999px; }
  .sr-label { 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; z-index: 9999; top: 12px; left: 12px; padding: 12px 18px; background: #fff; color: var(--ink); transform: translateY(-180%); transition: transform .2s; }
  .skip-link:focus { transform: translateY(0); }
  h1, h2, h3 { font-family: var(--font-display); letter-spacing: -.045em; line-height: .98; }
  h1 { font-size: clamp(3.2rem, 7vw, 7.3rem); font-weight: 720; }
  h2 { font-size: clamp(2.3rem, 4.4vw, 4.8rem); font-weight: 700; }
  h3 { font-size: clamp(1.4rem, 2vw, 2rem); font-weight: 680; }
  p { color: var(--muted); font-size: clamp(1rem, 1.2vw, 1.15rem); }
  .eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-size: .73rem;
    font-weight: 760;
    letter-spacing: .16em;
    line-height: 1.2;
    text-transform: uppercase;
  }
  .eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; flex: 0 0 auto; }
  .eyebrow > span:empty { display: none; }
  .reveal { opacity: 1; transform: none; }
  .js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
  .js .reveal.is-visible { opacity: 1; transform: none; }
}

@layer components {
  .utility-bar { background: var(--ink); color: #fff; }
  .utility-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: .72rem; letter-spacing: .04em; }
  .utility-inner p { color: #d8d9dd; font-size: .72rem; }
  .utility-inner div { display: flex; align-items: center; gap: 10px; color: #d8d9dd; }
  .utility-inner a:hover { color: #fff; }
  .site-header { position: sticky; z-index: 100; top: 0; background: rgba(247,245,237,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
  .header-inner { min-height: 88px; display: grid; grid-template-columns: minmax(240px, 1fr) auto minmax(220px, 1fr); align-items: center; gap: 28px; }
  .brand { display: inline-flex; align-items: center; gap: 13px; width: fit-content; }
  .brand-mark { width: 49px; flex: 0 0 49px; }
  .brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
  .brand-copy strong { font-family: var(--font-display); font-size: .95rem; letter-spacing: .08em; }
  .brand-copy small { margin-top: 6px; color: var(--muted); font-size: .63rem; letter-spacing: .09em; }
  .site-nav { display: flex; align-items: stretch; align-self: stretch; }
  .site-nav a { position: relative; display: grid; place-items: center; padding: 0 17px; color: #3d444f; font-size: .76rem; font-weight: 730; white-space: nowrap; }
  .site-nav a::after { content: ""; position: absolute; left: 17px; right: 17px; bottom: -1px; height: 3px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
  .site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); }
  .site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
  .header-actions { display: flex; justify-self: end; align-items: center; gap: 10px; }
  .language-link { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--line); font-size: .72rem; font-weight: 780; transition: background .2s, color .2s; }
  .language-link:hover { background: var(--ink); color: #fff; }
  .cart-link { min-height: 46px; display: inline-flex; align-items: center; gap: 12px; padding: 0 14px 0 17px; background: var(--ink); color: #fff; font-size: .72rem; font-weight: 750; }
  .cart-count { display: grid; place-items: center; min-width: 25px; height: 25px; padding: 0 6px; background: var(--coral); border-radius: 50px; color: var(--ink); }
  .menu-toggle { display: none; border: 0; background: transparent; }
  .button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: .78rem;
    font-weight: 760;
    letter-spacing: .03em;
    cursor: pointer;
    transition: transform .2s, background .2s, color .2s, border-color .2s;
  }
  .button:hover { transform: translateY(-2px); }
  .button.primary { background: var(--blue); color: #fff; }
  .button.primary:hover { background: var(--blue-dark); }
  .button.dark { background: var(--ink); color: #fff; }
  .button.dark:hover { background: #2a2f39; }
  .button.ghost { border-color: var(--ink); background: transparent; color: var(--ink); }
  .button.ghost:hover { background: var(--ink); color: #fff; }
  .button.full { width: 100%; }
  .arrow-link { display: inline-flex; align-items: center; gap: 30px; padding-bottom: 8px; border-bottom: 1px solid currentColor; font-size: .82rem; font-weight: 760; letter-spacing: .04em; }
  .arrow-link span { color: var(--coral); transition: transform .2s; }
  .arrow-link:hover span { transform: translate(3px, -3px); }
  .arrow-link.light { color: #fff; }
  .section-head { display: grid; grid-template-columns: 80px minmax(0, 1fr) minmax(280px, 470px); gap: 38px; align-items: start; padding-bottom: 52px; border-bottom: 1px solid var(--line); }
  .section-index { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); font-size: .72rem; font-weight: 760; }
  .section-head h2 { max-width: 800px; margin-top: 22px; }
  .section-head > p { padding-top: 32px; line-height: 1.7; }
  .section-cta { display: flex; justify-content: flex-end; padding-top: 34px; }
  .product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
  .product-card { min-width: 0; background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
  .product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
  .product-image { position: relative; aspect-ratio: 4 / 3; background: #ebeae5; overflow: hidden; }
  .product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
  .product-card:hover .product-image img { transform: scale(1.035); }
  .image-disclaimer { position: absolute; left: 14px; bottom: 14px; padding: 7px 10px; background: rgba(16,19,26,.86); color: #fff; font-size: .62rem; font-weight: 720; letter-spacing: .07em; text-transform: uppercase; backdrop-filter: blur(8px); }
  .product-card-body { min-height: 320px; display: flex; flex: 1; flex-direction: column; padding: 25px; }
  .product-meta { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--blue); font-size: .67rem; font-weight: 760; letter-spacing: .09em; text-transform: uppercase; }
  .product-card h3 { margin: 25px 0 15px; line-height: 1.05; }
  .product-card h3 a:hover { color: var(--blue); }
  .product-card p { font-size: .98rem; line-height: 1.6; }
  .product-card-footer { margin-top: auto; padding-top: 28px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); }
  .product-card-footer strong { font-family: var(--font-display); font-size: 1.45rem; }
  .icon-button { width: 44px; height: 44px; border: 1px solid var(--ink); border-radius: 50%; background: transparent; font-size: 1.3rem; cursor: pointer; transition: background .2s, color .2s, transform .2s; }
  .icon-button:hover, .icon-button.is-added { background: var(--blue); border-color: var(--blue); color: #fff; transform: rotate(90deg); }
  .breadcrumbs { display: flex; flex-wrap: wrap; gap: 10px; padding: 30px 0; color: var(--muted); font-size: .75rem; }
  .breadcrumbs a:hover { color: var(--blue); }
  .cookie-note { position: fixed; z-index: 160; right: 24px; bottom: 24px; width: min(520px, calc(100% - 48px)); display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 20px; padding: 18px 20px; background: var(--ink); color: #fff; box-shadow: var(--shadow); }
  .cookie-note strong { font-size: .8rem; }
  .cookie-note p { color: #c7c9ce; font-size: .75rem; }
  .cookie-note a { color: #fff; font-size: .75rem; text-decoration: underline; }
  .cookie-note button { border: 0; background: transparent; color: #fff; font-size: 1.4rem; cursor: pointer; }
  .cookie-note.is-hidden { display: none; }
  .site-toast { position: fixed; z-index: 300; left: 50%; bottom: 28px; transform: translate(-50%, 25px); padding: 13px 20px; background: var(--coral); color: var(--ink); box-shadow: var(--shadow); font-size: .78rem; font-weight: 760; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; }
  .site-toast.show { opacity: 1; transform: translate(-50%, 0); }
  .page-loader { position: fixed; z-index: 1000; inset: 0; display: none; place-items: center; background: var(--ink); transition: opacity .45s, visibility .45s; }
  .js .page-loader { display: grid; }
  .page-loader.is-done { opacity: 0; visibility: hidden; }
  .loader-mark { width: 70px; animation: loaderPulse 1s ease-in-out infinite alternate; }
  .page-loader > span { position: absolute; width: 140px; height: 1px; background: #383d47; overflow: hidden; transform: translateY(60px); }
  .page-loader > span::after { content: ""; display: block; width: 55%; height: 100%; background: var(--coral); animation: loaderLine .9s ease-in-out infinite; }
  @keyframes loaderPulse { to { transform: scale(1.08) rotate(2deg); } }
  @keyframes loaderLine { from { transform: translateX(-120%); } to { transform: translateX(220%); } }
  .site-footer { background: var(--ink); color: #fff; }
  .footer-lead { min-height: 260px; display: flex; align-items: center; justify-content: space-between; gap: 40px; border-bottom: 1px solid var(--line-dark); }
  .footer-brand .brand-mark { width: 58px; }
  .footer-brand .brand-copy small, .footer-brand p { color: #aeb2ba; }
  .footer-brand p { margin-top: 18px; font-size: 1rem; }
  .footer-cta { max-width: 520px; display: flex; flex-direction: column; align-items: flex-end; gap: 24px; text-align: right; }
  .footer-cta p { color: #fff; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 3.2rem); line-height: 1.04; letter-spacing: -.04em; }
  .footer-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr 1.2fr; gap: 50px; padding: 65px 0; border-bottom: 1px solid var(--line-dark); }
  .footer-grid h2 { margin-bottom: 24px; color: #8f95a0; font-family: var(--font-body); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
  .footer-grid ul { list-style: none; }
  .footer-grid li { margin: 10px 0; color: #d9dbe0; font-size: .86rem; }
  .footer-grid a:hover { color: var(--coral); }
  .company-facts li:first-child { color: #fff; font-weight: 680; }
  .footer-bottom { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
  .footer-bottom p { color: #858b96; font-size: .72rem; }
}

@layer pages {
  .home-hero { padding: 34px 0 0; }
  .home-hero-grid { min-height: 720px; display: grid; grid-template-columns: minmax(400px, .84fr) minmax(550px, 1.16fr); }
  .home-hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 68px 72px 68px 0; }
  .home-hero-copy h1 { max-width: 760px; margin: 34px 0 28px; font-size: clamp(4rem, 6.4vw, 6.8rem); }
  .hero-lead { max-width: 680px; font-size: clamp(1.12rem, 1.5vw, 1.35rem); line-height: 1.6; }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
  .hero-proof { margin-top: 55px; display: grid; grid-template-columns: repeat(2, minmax(0, 180px)); gap: 36px; }
  .hero-proof div { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 13px; }
  .hero-proof strong { font-family: var(--font-display); font-size: 2rem; color: var(--blue); }
  .hero-proof span { color: var(--muted); font-size: .75rem; line-height: 1.35; }
  .home-hero-media { position: relative; min-width: 0; }
  .home-hero-media::before { content: ""; position: absolute; z-index: 2; inset: 0 auto 0 0; width: 86px; background: linear-gradient(90deg, var(--paper), transparent); pointer-events: none; }
  .home-hero-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px 0 0 2px; }
  .media-badge { position: absolute; z-index: 3; right: 28px; bottom: 28px; width: 230px; padding: 19px; background: rgba(16,19,26,.88); color: #fff; backdrop-filter: blur(12px); }
  .media-badge span { display: block; color: #b8bcc5; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; }
  .media-badge strong { display: block; margin-top: 8px; font-size: .9rem; }
  .trust-strip { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: -1px; background: var(--white); border: 1px solid var(--line); }
  .trust-strip > div { min-height: 112px; display: grid; grid-template-columns: 44px 1fr; grid-template-rows: auto auto; align-content: center; column-gap: 16px; padding: 20px 28px; border-right: 1px solid var(--line); }
  .trust-strip > div:last-child { border-right: 0; }
  .trust-icon { grid-row: 1 / 3; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); font-size: .65rem; font-weight: 740; }
  .trust-strip strong { font-size: .88rem; }
  .trust-strip small { color: var(--muted); font-size: .72rem; }
  .category-list { border-top: 1px solid var(--line); }
  .category-row { position: relative; display: grid; grid-template-columns: 65px minmax(0, 1fr) 120px 50px; gap: 24px; align-items: center; min-height: 138px; border-bottom: 1px solid var(--line); transition: padding .25s, background .25s; }
  .category-row::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--accent); transform: scaleY(0); transition: transform .25s; }
  .category-row:hover { padding-inline: 26px; background: var(--white); }
  .category-row:hover::before { transform: scaleY(1); }
  .category-row > span:first-child { color: var(--accent); font-size: .72rem; font-weight: 760; }
  .category-row h3 { margin-bottom: 9px; }
  .category-row p { max-width: 760px; font-size: .95rem; }
  .category-count { color: var(--muted); font-size: .72rem; }
  .row-arrow { justify-self: end; color: var(--accent); font-size: 1.25rem; }
  .decision-section { background: var(--blue); }
  .decision-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
  .decision-copy .eyebrow, .decision-copy h2 { color: #fff; }
  .decision-copy p:not(.eyebrow) { max-width: 610px; margin: 30px 0 36px; color: #dbe3ff; }
  .decision-map { display: grid; grid-template-columns: 1fr 70px 1fr 70px 1fr; align-items: center; min-height: 360px; padding: 40px; background: #1844d3; }
  .map-node { min-height: 175px; display: flex; flex-direction: column; justify-content: center; padding: 26px; border: 1px solid rgba(255,255,255,.34); color: #fff; }
  .map-node.active { background: #fff; color: var(--ink); }
  .map-node span { margin-bottom: 28px; color: var(--coral); font-size: .7rem; font-weight: 760; }
  .map-node strong { font-family: var(--font-display); font-size: 1.6rem; }
  .map-node small { margin-top: 7px; color: inherit; opacity: .68; }
  .map-line { height: 1px; background: rgba(255,255,255,.5); }
  .identity-section { padding: 90px 0; background: var(--white); }
  .identity-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 70px; align-items: end; }
  .identity-grid h2 { max-width: 600px; margin-top: 20px; font-size: clamp(2.2rem, 3.5vw, 4rem); }
  .identity-grid p { max-width: 610px; }
  .catalog-hero { padding: 38px 0 0; }
  .catalog-hero-grid { min-height: 620px; display: grid; grid-template-columns: 1.08fr .92fr; background: var(--ink); }
  .catalog-hero-image { min-width: 0; }
  .catalog-hero-image img { width: 100%; height: 100%; object-fit: cover; }
  .catalog-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(45px, 6vw, 90px); color: #fff; }
  .catalog-hero-copy .eyebrow, .catalog-hero-copy h1 { color: #fff; }
  .catalog-hero-copy h1 { margin: 36px 0 30px; font-size: clamp(3.8rem, 6vw, 6.7rem); }
  .catalog-hero-copy > p:not(.eyebrow) { color: #c8ccd4; font-size: 1.2rem; }
  .catalog-legend { margin-top: 45px; padding-top: 24px; border-top: 1px solid var(--line-dark); display: grid; grid-template-columns: 10px 1fr; gap: 13px; color: #aeb2bb; font-size: .72rem; }
  .catalog-legend span { width: 10px; height: 10px; margin-top: 4px; background: var(--coral); }
  .catalog-category-links { background: var(--white); border-bottom: 1px solid var(--line); }
  .catalog-category-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
  .catalog-category-grid a { position: relative; min-height: 150px; display: grid; grid-template-columns: 1fr auto; align-content: center; gap: 8px 18px; padding: 25px; border-right: 1px solid var(--line); overflow: hidden; }
  .catalog-category-grid a:first-child { border-left: 1px solid var(--line); }
  .catalog-category-grid a::before { content: ""; position: absolute; inset: auto 0 0; height: 5px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
  .catalog-category-grid a:hover::before { transform: scaleX(1); }
  .catalog-category-grid span { grid-column: 1 / -1; color: var(--accent); font-size: .68rem; font-weight: 760; }
  .catalog-category-grid strong { font-family: var(--font-display); font-size: 1.05rem; line-height: 1.15; }
  .catalog-category-grid small { grid-column: 1; color: var(--muted); }
  .catalog-category-grid b { grid-column: 2; grid-row: 2 / 4; align-self: center; color: var(--accent); }
  .catalog-toolbar { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
  .filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
  .filter { min-height: 38px; padding: 0 15px; border: 1px solid var(--line); background: transparent; font-size: .72rem; font-weight: 690; cursor: pointer; }
  .filter:hover, .filter.active { background: var(--ink); border-color: var(--ink); color: #fff; }
  .catalog-toolbar > p { font-size: .78rem; white-space: nowrap; }
  .catalog-toolbar > p strong { color: var(--blue); font-size: 1.5rem; }
  .product-card[hidden] { display: none; }
  .category-hero { padding: 38px 0 0; }
  .category-hero-grid { min-height: 650px; display: grid; grid-template-columns: .85fr 1.15fr; background: var(--white); border: 1px solid var(--line); }
  .category-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(45px, 6vw, 88px); border-left: 7px solid var(--accent); }
  .category-hero-copy .eyebrow { color: var(--accent); }
  .category-hero-copy h1 { margin: 34px 0 30px; font-size: clamp(4rem, 6vw, 7rem); }
  .category-hero-copy > p { max-width: 600px; font-size: 1.2rem; }
  .category-hero-copy .arrow-link { margin-top: 44px; align-self: flex-start; }
  .category-hero-media { position: relative; min-width: 0; overflow: hidden; }
  .category-hero-media img { width: 100%; height: 100%; object-fit: cover; }
  .category-number { position: absolute; right: 20px; top: 20px; display: grid; place-items: center; width: 68px; height: 68px; background: var(--accent); color: #fff; font-family: var(--font-display); font-size: 1.6rem; font-weight: 750; }
  .category-principle { background: var(--ink); color: #fff; }
  .principle-grid { min-height: 118px; display: grid; grid-template-columns: 170px 1fr; align-items: center; gap: 50px; }
  .principle-grid > strong { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
  .principle-track { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto; align-items: center; gap: 16px; }
  .principle-track span { color: #d6d8de; font-size: .78rem; }
  .principle-track i { height: 1px; background: var(--line-dark); }
  .category-products { margin-top: 46px; }
  .category-cta { padding: 0 0 120px; }
  .cta-bar { min-height: 260px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; padding: 50px 60px; background: var(--ink); color: #fff; }
  .cta-bar h2 { max-width: 850px; margin-top: 22px; color: #fff; font-size: clamp(2.2rem, 4vw, 4.3rem); }
  .cta-bar .eyebrow { color: #aeb2ba; }
  .product-detail { padding-bottom: 80px; background: var(--white); }
  .product-detail-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(45px, 7vw, 100px); align-items: center; padding: 20px 0 60px; }
  .product-detail-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
  .product-detail-media > p { padding: 13px 0; font-size: .72rem; }
  .product-detail-copy h1 { margin: 32px 0 25px; font-size: clamp(3.2rem, 5.3vw, 6.1rem); }
  .product-lead { max-width: 650px; font-size: 1.2rem; line-height: 1.65; }
  .price-block { display: grid; grid-template-columns: 1fr auto; gap: 7px 30px; align-items: end; margin: 38px 0; padding: 24px 0; border-block: 1px solid var(--line); }
  .price-block > span { color: var(--muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
  .price-block strong { grid-column: 2; grid-row: 1 / 3; font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1; }
  .price-block small { color: var(--muted); font-size: .72rem; }
  .request-controls { display: grid; grid-template-columns: 95px 1fr; gap: 12px; }
  .request-controls label { display: grid; grid-template-columns: 1fr 48px; align-items: center; border: 1px solid var(--line); padding-left: 12px; color: var(--muted); font-size: .66rem; text-transform: uppercase; }
  .request-controls input { width: 48px; height: 52px; border: 0; border-left: 1px solid var(--line); background: transparent; text-align: center; }
  .no-payment-note { display: grid; grid-template-columns: 36px 1fr; gap: 15px; margin-top: 24px; padding: 18px; background: var(--paper); }
  .no-payment-note > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: #fff; }
  .no-payment-note strong { font-size: .8rem; }
  .no-payment-note p { margin-top: 3px; font-size: .75rem; }
  .product-info { background: var(--paper); }
  .product-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 120px); }
  .product-info article:first-child h2, .spec-card h2 { margin: 27px 0; }
  .product-info article:first-child > p:not(.eyebrow) { max-width: 700px; line-height: 1.8; }
  .product-info dl { margin-top: 45px; border-top: 1px solid var(--line); }
  .product-info dl div { display: grid; grid-template-columns: 180px 1fr; gap: 30px; padding: 17px 0; border-bottom: 1px solid var(--line); }
  .product-info dt { color: var(--muted); font-size: .72rem; }
  .product-info dd { font-size: .9rem; }
  .product-info dd a { color: var(--blue); text-decoration: underline; }
  .spec-card { padding: clamp(35px, 5vw, 65px); background: var(--ink); color: #fff; }
  .spec-card .eyebrow { color: #aeb2ba; }
  .spec-card h2 { color: #fff; }
  .spec-card ul { list-style: none; }
  .spec-card li { display: grid; grid-template-columns: 30px 1fr; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--line-dark); color: #e7e8eb; }
  .spec-card li span { color: var(--coral); }
  .product-steps { padding: 110px 0; background: var(--white); }
  .mini-steps { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 50px; }
  .mini-steps article { min-height: 230px; padding: 30px; border: 1px solid var(--line); border-right: 0; }
  .mini-steps article:last-child { border-right: 1px solid var(--line); }
  .mini-steps span { color: var(--blue); font-size: .7rem; font-weight: 760; }
  .mini-steps h3 { margin: 55px 0 14px; }
  .mini-steps p { font-size: .9rem; }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 45px; }
  .editorial-hero { padding: 110px 0 100px; }
  .editorial-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: end; }
  .editorial-grid h1 { max-width: 930px; margin-top: 35px; }
  .editorial-intro { padding-bottom: 10px; }
  .editorial-intro p { margin-top: 24px; font-size: 1.2rem; line-height: 1.7; }
  .about-visual { padding-bottom: 60px; }
  .about-board { min-height: 600px; position: relative; display: grid; grid-template-columns: .65fr 1fr .75fr; gap: 30px; align-items: center; padding: 60px; overflow: hidden; background: var(--ink); color: #fff; }
  .about-board::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 52px 52px; }
  .board-title, .board-orbit, .board-notes { position: relative; z-index: 2; }
  .board-title span { display: block; color: var(--coral); font-size: .7rem; letter-spacing: .14em; }
  .board-title strong { display: block; margin-top: 28px; font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 4rem); line-height: 1.04; letter-spacing: -.04em; }
  .board-orbit { width: min(380px, 100%); aspect-ratio: 1; margin: auto; border: 1px solid #48505c; border-radius: 50%; display: grid; place-items: center; }
  .board-orbit::before, .board-orbit::after { content: ""; position: absolute; border: 1px solid #48505c; border-radius: 50%; }
  .board-orbit::before { inset: 18%; }
  .board-orbit::after { inset: 36%; background: var(--blue); border: 0; }
  .board-orbit b { position: relative; z-index: 2; font-size: 1.6rem; letter-spacing: .12em; }
  .board-orbit i { position: absolute; z-index: 3; width: 11px; height: 11px; border-radius: 50%; background: var(--coral); }
  .board-orbit i:nth-child(1) { top: 10%; left: 36%; }
  .board-orbit i:nth-child(2) { right: 8%; top: 50%; background: var(--mint); }
  .board-orbit i:nth-child(3) { bottom: 9%; left: 32%; background: var(--yellow); }
  .board-notes p { display: grid; grid-template-columns: 35px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-dark); color: #d4d7dc; font-size: .86rem; }
  .board-notes span { color: var(--coral); font-size: .68rem; }
  .facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 50px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
  .facts-grid div { min-height: 190px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .facts-grid dt { margin-bottom: 40px; color: var(--blue); font-size: .7rem; font-weight: 740; letter-spacing: .1em; text-transform: uppercase; }
  .facts-grid dd { font-family: var(--font-display); font-size: 1.35rem; line-height: 1.3; }
  .values-section { background: var(--white); }
  .values-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
  .values-grid h2 { margin-top: 26px; }
  .values-list article { display: grid; grid-template-columns: 50px 1fr 1fr; gap: 25px; padding: 30px 0; border-top: 1px solid var(--line); align-items: start; }
  .values-list article:last-child { border-bottom: 1px solid var(--line); }
  .values-list span { color: var(--blue); font-size: .7rem; }
  .values-list h3 { font-size: 1.5rem; }
  .values-list p { font-size: .92rem; }
  .process-hero, .simple-hero, .request-hero { padding: 110px 0 90px; border-bottom: 1px solid var(--line); }
  .process-hero-grid, .simple-hero-grid, .request-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: end; }
  .process-hero h1, .simple-hero h1, .request-hero h1 { max-width: 900px; margin-top: 34px; }
  .process-hero-grid > p, .simple-hero-grid > p { padding-bottom: 12px; font-size: 1.3rem; line-height: 1.7; }
  .process-timeline { padding: 40px 0 0; }
  .timeline-step { min-height: 220px; display: grid; grid-template-columns: 100px 1fr 60px; gap: 40px; align-items: center; border-bottom: 1px solid var(--line); }
  .timeline-number { color: var(--blue); font-size: .75rem; font-weight: 760; }
  .timeline-step h2 { margin-bottom: 16px; font-size: clamp(2.2rem, 4vw, 4rem); }
  .timeline-step p { max-width: 720px; }
  .timeline-state { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--coral); }
  .safe-box { padding-top: 90px; }
  .safe-grid { min-height: 300px; display: grid; grid-template-columns: 220px 1fr auto; gap: 60px; align-items: center; padding: 50px 60px; background: var(--ink); color: #fff; }
  .safe-symbol { position: relative; display: flex; align-items: end; font-family: var(--font-display); font-size: 9rem; line-height: .8; color: var(--coral); }
  .safe-symbol span { margin: 0 0 8px 8px; color: #fff; font-size: .9rem; }
  .safe-grid h2 { margin: 20px 0; color: #fff; font-size: clamp(2.3rem, 4vw, 4.2rem); }
  .safe-grid p:not(.eyebrow) { color: #bfc3cb; }
  .delivery-hero { padding: 38px 0 0; }
  .delivery-grid { min-height: 700px; display: grid; grid-template-columns: .8fr 1.2fr; }
  .delivery-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 70px 80px 70px 0; background: var(--paper); }
  .delivery-copy h1 { margin: 35px 0 30px; font-size: clamp(3.8rem, 6vw, 6.7rem); }
  .delivery-copy > p:not(.eyebrow) { font-size: 1.2rem; }
  .delivery-copy .button { align-self: flex-start; margin-top: 38px; }
  .delivery-media { min-width: 0; }
  .delivery-media img { width: 100%; height: 100%; object-fit: cover; }
  .route-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 50px; }
  .route-card { min-height: 460px; display: flex; flex-direction: column; padding: 45px; border: 1px solid var(--line); }
  .route-card.direct { background: var(--white); border-top: 7px solid var(--blue); }
  .route-card.planned { background: #e9e7df; border-top: 7px solid var(--coral); }
  .route-label { font-size: .7rem; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
  .route-card h2 { margin: 60px 0 25px; font-size: clamp(2.5rem, 4vw, 4.3rem); }
  .route-card p { max-width: 620px; }
  .route-card ul { margin-top: auto; padding-top: 30px; list-style: none; border-top: 1px solid var(--line); }
  .route-card li { padding: 8px 0; font-size: .85rem; }
  .route-card li::before { content: "→"; margin-right: 13px; color: var(--blue); }
  .delivery-check { padding: 80px 0; background: var(--blue); color: #fff; }
  .delivery-check-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 60px; align-items: end; }
  .delivery-check .eyebrow, .delivery-check h2 { color: #fff; }
  .delivery-check h2 { margin-top: 20px; font-size: clamp(2.2rem, 4vw, 4rem); }
  .delivery-check p { color: #dce3ff; }
  .contact-hero { padding: 110px 0 90px; background: var(--ink); color: #fff; }
  .contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: end; }
  .contact-title .eyebrow, .contact-title h1 { color: #fff; }
  .contact-title h1 { margin: 35px 0; }
  .contact-title p:not(.eyebrow) { max-width: 580px; color: #c7cbd2; }
  .contact-details { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
  .contact-details > * { min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; padding: 25px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
  .contact-details span { color: #8f95a0; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
  .contact-details strong { font-size: 1rem; overflow-wrap: anywhere; }
  .contact-details b { align-self: flex-end; color: var(--coral); }
  .contact-details a:hover { background: #1e222b; }
  .form-layout { display: grid; grid-template-columns: .38fr .62fr; gap: 80px; align-items: start; }
  .form-aside { position: sticky; top: 150px; }
  .giant-number { display: block; color: var(--blue); font-family: var(--font-display); font-size: 7rem; line-height: 1; }
  .form-aside h2 { margin: 25px 0; }
  .form-aside .arrow-link { margin-top: 35px; }
  .contact-form, .request-form { padding: clamp(28px, 5vw, 60px); background: var(--white); border: 1px solid var(--line); }
  .contact-form > label, .request-form > label, .field-grid label { display: flex; flex-direction: column; gap: 9px; }
  .contact-form label > span, .request-form label > span, .field-grid label > span { color: #414853; font-size: .72rem; font-weight: 650; }
  input:not([type="checkbox"]), textarea, select { width: 100%; border: 1px solid var(--line); background: var(--paper); color: var(--ink); padding: 15px 16px; border-radius: 0; }
  input:not([type="checkbox"]), select { min-height: 53px; }
  textarea { resize: vertical; line-height: 1.55; }
  input:focus, textarea:focus, select:focus { border-color: var(--blue); outline: 2px solid rgba(39,89,255,.16); }
  .field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
  .field-wide { grid-column: 1 / -1; }
  .check-field { display: grid !important; grid-template-columns: 22px 1fr; gap: 12px !important; align-items: start; margin: 24px 0; }
  .check-field input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); }
  .check-field span { font-size: .76rem !important; line-height: 1.55; }
  .check-field a { color: var(--blue); text-decoration: underline; }
  .request-promise { max-width: 510px; justify-self: end; padding: 25px; border-left: 5px solid var(--mint); background: var(--white); }
  .request-promise strong { font-size: .88rem; }
  .request-promise p { margin-top: 6px; font-size: .82rem; }
  .request-section { padding: 70px 0 120px; }
  .request-layout { display: grid; grid-template-columns: .42fr .58fr; gap: 30px; align-items: start; }
  .cart-panel { position: sticky; top: 140px; padding: 30px; background: var(--ink); color: #fff; }
  .cart-panel-head { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid var(--line-dark); }
  .cart-panel-head h2 { font-size: 1.5rem; letter-spacing: -.02em; }
  .cart-panel-head span { color: var(--coral); }
  .cart-empty { padding: 60px 0; text-align: center; }
  .cart-empty p { margin-bottom: 22px; color: #b8bdc5; }
  .cart-panel .button.ghost { border-color: #fff; color: #fff; }
  .cart-item { display: grid; grid-template-columns: 76px 1fr auto; gap: 15px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line-dark); }
  .cart-item img { width: 76px; height: 60px; object-fit: cover; }
  .cart-item h3 { font-size: .95rem; letter-spacing: -.01em; }
  .cart-item p { margin-top: 4px; color: #aeb3bc; font-size: .72rem; }
  .cart-item-controls { display: flex; align-items: center; gap: 8px; }
  .cart-item-controls input { width: 48px; min-height: 36px; padding: 5px; background: #1e222b; border-color: var(--line-dark); color: #fff; text-align: center; }
  .cart-remove { border: 0; background: transparent; color: var(--coral); font-size: .7rem; cursor: pointer; }
  .cart-total { display: flex; justify-content: space-between; gap: 20px; padding-top: 25px; }
  .cart-total span { color: #abb0b9; font-size: .75rem; }
  .cart-total strong { font-family: var(--font-display); font-size: 1.6rem; }
  .cart-note { margin-top: 8px; color: #858c97; font-size: .68rem; }
  .form-section-title { display: grid; grid-template-columns: 45px 1fr; gap: 17px; margin: 45px 0 25px; padding-top: 35px; border-top: 1px solid var(--line); }
  .form-section-title:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
  .form-section-title > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); color: #fff; font-size: .65rem; }
  .form-section-title h2 { font-size: 1.7rem; letter-spacing: -.025em; }
  .form-section-title p { margin-top: 5px; font-size: .76rem; }
  .submit-disclaimer { margin-top: 14px; text-align: center; font-size: .7rem; }
  .faq-layout { display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start; }
  .faq-aside { position: sticky; top: 140px; }
  .faq-aside > span { color: var(--blue); font-family: var(--font-display); font-size: 7rem; line-height: .85; }
  .faq-aside > p { margin: 12px 0 40px; }
  .accordion { border-top: 1px solid var(--line); }
  .accordion details { border-bottom: 1px solid var(--line); }
  .accordion summary { min-height: 112px; display: grid; grid-template-columns: 50px 1fr 32px; gap: 24px; align-items: center; list-style: none; cursor: pointer; }
  .accordion summary::-webkit-details-marker { display: none; }
  .accordion summary > span { color: var(--blue); font-size: .7rem; }
  .accordion summary strong { font-family: var(--font-display); font-size: 1.45rem; letter-spacing: -.025em; }
  .accordion summary i { position: relative; width: 26px; height: 26px; border: 1px solid var(--line); border-radius: 50%; }
  .accordion summary i::before, .accordion summary i::after { content: ""; position: absolute; left: 7px; right: 7px; top: 12px; height: 1px; background: var(--ink); transition: transform .2s; }
  .accordion summary i::after { transform: rotate(90deg); }
  .accordion details[open] summary i::after { transform: rotate(0); }
  .accordion details > div { padding: 0 55px 35px 74px; }
  .accordion details > div p { max-width: 800px; line-height: 1.75; }
  .legal-hero { padding: 100px 0 80px; background: var(--white); border-bottom: 1px solid var(--line); }
  .legal-hero.compact { padding-block: 75px; }
  .legal-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: end; }
  .legal-hero h1 { max-width: 900px; margin-top: 30px; font-size: clamp(3.4rem, 6vw, 6.4rem); }
  .legal-hero-grid > div:last-child p { font-size: 1.2rem; line-height: 1.7; }
  .legal-hero-grid small { display: block; margin-top: 25px; color: var(--blue); font-size: .72rem; }
  .legal-hero .button { margin-top: 30px; }
  .legal-section { padding: 70px 0 130px; }
  .legal-layout { display: grid; grid-template-columns: 290px minmax(0, 850px); gap: 90px; justify-content: center; align-items: start; }
  .legal-nav { position: sticky; top: 130px; padding: 25px; background: var(--white); border: 1px solid var(--line); }
  .legal-nav > strong { display: block; margin-bottom: 20px; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
  .legal-nav ol { padding-left: 18px; }
  .legal-nav li { margin: 9px 0; color: var(--muted); font-size: .75rem; }
  .legal-nav a:hover { color: var(--blue); text-decoration: underline; }
  .legal-content section { scroll-margin-top: 130px; padding: 0 0 50px; margin-bottom: 50px; border-bottom: 1px solid var(--line); }
  .legal-content h2 { margin-bottom: 24px; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.1; }
  .legal-content p, .legal-content li { color: #4f5661; font-size: 1rem; line-height: 1.85; }
  .legal-content p + p { margin-top: 15px; }
  .legal-content ul, .legal-content ol { padding-left: 25px; }
  .legal-content li { margin: 8px 0; }
  .legal-content a { color: var(--blue); text-decoration: underline; overflow-wrap: anywhere; }
  .withdrawal-wrap { padding: 70px 0 120px; }
  .withdrawal-paper { width: min(900px, 100%); margin: auto; padding: clamp(35px, 7vw, 90px); background: #fff; box-shadow: 0 20px 60px rgba(16,19,26,.08); }
  .paper-head { display: grid; grid-template-columns: 130px 1fr; gap: 30px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
  .withdrawal-paper h2 { margin: 55px 0 30px; font-size: 2.2rem; }
  .withdrawal-paper > p { color: var(--ink); }
  .paper-line { height: 45px; border-bottom: 1px solid #888; }
  .paper-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 55px 0; }
  .paper-grid p, .paper-sign p { min-height: 70px; border-bottom: 1px solid #888; }
  .paper-grid span, .withdrawal-paper > p > span, .paper-sign p { color: var(--muted); font-size: .72rem; }
  .paper-sign { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 80px; }
  .thanks-page { min-height: calc(100vh - 122px); display: grid; place-items: center; padding: 100px 0; }
  .thanks-inner { max-width: 860px; text-align: center; }
  .thanks-mark { width: 82px; margin: 0 auto 35px; }
  .thanks-inner .eyebrow { justify-content: center; }
  .thanks-inner h1 { margin: 35px 0; }
  .thanks-inner > p:not(.eyebrow) { max-width: 720px; margin-inline: auto; font-size: 1.2rem; line-height: 1.7; }
  .thanks-actions { display: flex; justify-content: center; gap: 12px; margin-top: 45px; }
  .not-found { min-height: calc(100vh - 122px); display: grid; place-items: center; padding: 100px 0; }
  .not-found-grid { display: grid; grid-template-columns: 1fr .7fr; gap: 100px; align-items: center; }
  .not-found-grid > div:first-child > span { color: var(--blue); font-size: .8rem; font-weight: 760; }
  .not-found h1 { margin: 30px 0; }
  .not-found .button { margin-top: 35px; }
  .lost-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 30px; background: var(--ink); }
  .lost-grid i { aspect-ratio: 1; border: 1px solid var(--line-dark); }
  .lost-grid i.active { background: var(--coral); border-color: var(--coral); }
}

@layer responsive {
  @media (max-width: 1180px) {
    .container { width: min(100% - 40px, 1180px); }
    .header-inner { grid-template-columns: 1fr auto auto; }
    .menu-toggle { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 12px; cursor: pointer; }
    .menu-lines { position: relative; width: 20px; height: 12px; border-block: 1px solid var(--ink); }
    .menu-lines::after { content: ""; position: absolute; left: 0; right: 0; top: 5px; height: 1px; background: var(--ink); }
    .site-nav { position: fixed; z-index: 99; top: 122px; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; align-items: stretch; padding: 25px 20px 60px; background: var(--paper); transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.7,.2,1); }
    .nav-open .site-nav { transform: none; }
    .site-nav a { min-height: 64px; justify-content: start; padding: 0 20px; border-bottom: 1px solid var(--line); font-size: 1rem; }
    .site-nav a::after { display: none; }
    .home-hero-grid { grid-template-columns: 1fr; }
    .home-hero-copy { padding: 65px 0; }
    .home-hero-copy h1 { max-width: 900px; }
    .home-hero-media { min-height: 580px; }
    .home-hero-media::before { display: none; }
    .decision-grid { grid-template-columns: 1fr; }
    .identity-grid { grid-template-columns: 1fr 1fr; }
    .identity-grid .arrow-link { grid-column: 2; justify-self: start; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .catalog-hero-grid, .category-hero-grid, .delivery-grid { grid-template-columns: 1fr; }
    .catalog-hero-image, .category-hero-media, .delivery-media { min-height: 580px; }
    .catalog-hero-copy { order: -1; }
    .category-hero-copy { min-height: 500px; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .product-detail-media { max-width: 920px; margin: auto; }
    .editorial-grid, .process-hero-grid, .simple-hero-grid, .request-heading, .contact-grid { gap: 60px; }
    .about-board { grid-template-columns: 1fr 1fr; }
    .board-notes { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .board-notes p { display: block; }
    .board-notes span { display: block; margin-bottom: 10px; }
    .safe-grid { grid-template-columns: 170px 1fr; }
    .safe-grid .button { grid-column: 2; justify-self: start; }
    .form-layout { grid-template-columns: .32fr .68fr; gap: 40px; }
    .request-layout { grid-template-columns: .38fr .62fr; }
  }

  @media (max-width: 820px) {
    .container { width: min(100% - 30px, 820px); }
    .section-space { padding-block: 80px; }
    h1 { font-size: clamp(3rem, 13vw, 5.5rem); }
    .utility-inner p { display: none; }
    .utility-inner { justify-content: center; }
    .header-inner { min-height: 74px; grid-template-columns: 1fr auto; gap: 12px; }
    .brand-mark { width: 42px; flex-basis: 42px; }
    .brand-copy small { display: none; }
    .menu-toggle { grid-column: 2; }
    .header-actions { position: fixed; z-index: 105; left: 20px; right: 20px; bottom: 18px; display: none; justify-content: stretch; }
    .nav-open .header-actions { display: flex; }
    .language-link { background: #fff; }
    .cart-link { flex: 1; justify-content: space-between; }
    .site-nav { top: 108px; padding-bottom: 100px; }
    .home-hero { padding-top: 0; }
    .home-hero-copy { padding: 55px 0; }
    .home-hero-copy h1 { font-size: clamp(3.5rem, 15vw, 6rem); }
    .hero-actions .button { width: 100%; }
    .hero-proof { margin-top: 38px; }
    .home-hero-media { min-height: 440px; margin-inline: -15px; }
    .trust-strip { grid-template-columns: 1fr; }
    .trust-strip > div { border-right: 0; border-bottom: 1px solid var(--line); }
    .trust-strip > div:last-child { border-bottom: 0; }
    .section-head { grid-template-columns: 55px 1fr; gap: 18px; }
    .section-head > p { grid-column: 2; padding-top: 0; }
    .category-row { grid-template-columns: 45px 1fr 32px; min-height: 155px; }
    .category-count { display: none; }
    .category-row p { font-size: .84rem; }
    .category-row:hover { padding-inline: 12px; }
    .decision-map { grid-template-columns: 1fr; padding: 20px; gap: 0; }
    .map-line { width: 1px; height: 35px; margin-left: 50%; }
    .identity-grid { grid-template-columns: 1fr; gap: 35px; }
    .identity-grid .arrow-link { grid-column: 1; }
    .footer-lead { padding: 55px 0; flex-direction: column; align-items: flex-start; }
    .footer-cta { align-items: flex-start; text-align: left; }
    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
    .footer-bottom { padding: 24px 0; flex-direction: column; align-items: flex-start; }
    .catalog-hero { padding-top: 0; }
    .catalog-hero-copy { padding: 50px 30px; }
    .catalog-hero-copy h1, .category-hero-copy h1, .delivery-copy h1 { font-size: clamp(3.4rem, 14vw, 5.5rem); }
    .catalog-hero-image, .category-hero-media, .delivery-media { min-height: 420px; }
    .catalog-toolbar { align-items: flex-start; flex-direction: column; }
    .catalog-category-grid { display: flex; width: 100%; overflow-x: auto; }
    .catalog-category-grid a { flex: 0 0 240px; border-left: 0; }
    .filters { width: 100%; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; }
    .filter { flex: 0 0 auto; }
    .product-grid { grid-template-columns: 1fr; }
    .product-card-body { min-height: 285px; }
    .category-hero { padding-top: 0; }
    .category-hero-grid { border-inline: 0; }
    .category-hero-copy { min-height: 470px; padding: 45px 30px; }
    .principle-grid { grid-template-columns: 1fr; padding: 28px 0; gap: 20px; }
    .principle-track { grid-template-columns: 1fr; gap: 8px; }
    .principle-track i { width: 1px; height: 18px; margin-left: 8px; }
    .cta-bar { grid-template-columns: 1fr; padding: 40px 30px; }
    .cta-bar .button { justify-self: start; }
    .product-detail { padding-bottom: 30px; }
    .product-detail-grid { padding-bottom: 30px; gap: 35px; }
    .product-detail-copy h1 { font-size: clamp(3.2rem, 13vw, 5rem); }
    .price-block { grid-template-columns: 1fr; }
    .price-block strong { grid-column: 1; grid-row: auto; }
    .request-controls { grid-template-columns: 1fr; }
    .request-controls label { min-height: 54px; }
    .product-info-grid { grid-template-columns: 1fr; gap: 50px; }
    .product-info dl div { grid-template-columns: 1fr; gap: 8px; }
    .mini-steps { grid-template-columns: 1fr; }
    .mini-steps article { border-right: 1px solid var(--line); border-bottom: 0; }
    .mini-steps article:last-child { border-bottom: 1px solid var(--line); }
    .related-grid { grid-template-columns: 1fr; }
    .editorial-hero { padding: 75px 0 60px; }
    .editorial-grid, .process-hero-grid, .simple-hero-grid, .request-heading, .contact-grid, .legal-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-board { min-height: 720px; grid-template-columns: 1fr; padding: 35px 25px; }
    .board-orbit { width: 260px; }
    .board-notes { grid-column: 1; grid-template-columns: 1fr; }
    .facts-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; gap: 50px; }
    .values-list article { grid-template-columns: 40px 1fr; }
    .values-list p { grid-column: 2; }
    .process-hero, .simple-hero, .request-hero { padding: 75px 0 60px; }
    .timeline-step { min-height: 250px; grid-template-columns: 50px 1fr; gap: 20px; padding: 25px 0; }
    .timeline-state { grid-column: 2; width: 42px; height: 42px; }
    .safe-grid { grid-template-columns: 1fr; padding: 38px 25px; }
    .safe-grid .button { grid-column: 1; }
    .safe-symbol { font-size: 7rem; }
    .delivery-hero { padding-top: 0; }
    .delivery-copy { padding: 55px 0; }
    .route-grid { grid-template-columns: 1fr; }
    .route-card { min-height: 430px; padding: 35px 28px; }
    .delivery-check-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-hero { padding: 75px 0 60px; }
    .contact-details { grid-template-columns: 1fr; }
    .form-layout { grid-template-columns: 1fr; }
    .form-aside { position: static; }
    .field-grid { grid-template-columns: 1fr; }
    .field-wide { grid-column: 1; }
    .request-promise { justify-self: start; }
    .request-layout { grid-template-columns: 1fr; }
    .cart-panel { position: static; }
    .faq-layout { grid-template-columns: 1fr; gap: 50px; }
    .faq-aside { position: static; }
    .accordion summary { grid-template-columns: 35px 1fr 28px; gap: 12px; min-height: 100px; }
    .accordion summary strong { font-size: 1.2rem; }
    .accordion details > div { padding-left: 47px; }
    .legal-hero { padding: 75px 0 60px; }
    .legal-layout { grid-template-columns: 1fr; gap: 40px; }
    .legal-nav { position: static; }
    .paper-grid, .paper-sign { grid-template-columns: 1fr; }
    .not-found-grid { grid-template-columns: 1fr; }
    .lost-grid { max-width: 420px; }
    .cookie-note { left: 15px; right: 15px; bottom: 15px; width: auto; grid-template-columns: 1fr auto; }
    .cookie-note a { display: none; }
  }

  @media (max-width: 480px) {
    .container { width: min(100% - 24px, 480px); }
    .utility-inner div span:last-child { display: none; }
    .brand-copy strong { font-size: .8rem; }
    .home-hero-copy h1 { font-size: 3.55rem; }
    .hero-proof { grid-template-columns: 1fr; }
    .product-card-body { padding: 21px; }
    .request-form, .contact-form { padding: 24px 18px; }
    .cart-item { grid-template-columns: 64px 1fr; }
    .cart-item-controls { grid-column: 2; }
    .withdrawal-paper { padding: 28px 20px; }
    .paper-head { grid-template-columns: 1fr; }
    .thanks-actions { flex-direction: column; }
  }

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

  @media print {
    .utility-bar, .site-header, .site-footer, .cookie-note, .page-loader, .legal-hero .button { display: none !important; }
    body { background: #fff; }
    .withdrawal-wrap { padding: 0; }
    .withdrawal-paper { box-shadow: none; width: 100%; }
  }
}
