/*
Theme Name: TANCHI TEX
Theme URI: https://example.com/tanchi-tex
Author: TANCHI TEX
Description: デニムテキスタイル企業 TANCHI TEX のための編集可能なコーポレートテーマ。
Version: 1.6.2
Requires at least: 6.6
Requires PHP: 7.4
Text Domain: tanchi-tex
*/

:root {
  --ink: #111022;
  --ink-soft: #24233a;
  --indigo: #173f67;
  --blue: #0d3154;
  --paper: #f7f7f9;
  --warm: #f3f1eb;
  --white: #fff;
  --muted: #696875;
  --line: #dedee5;
  --green: #22d3ee;
  --yellow: #38bdf8;
  --orange: #2563eb;
  --pink: #4f46e5;
  --spectrum: linear-gradient(90deg, #22d3ee 0%, #0ea5e9 32%, #2563eb 66%, #3730a3 100%);
  --shadow: 0 30px 70px rgba(17, 16, 34, .13);
  --radius-sm: 14px;
  --radius: 28px;
  --radius-lg: 42px;
  --header-height: 78px;
  --display: "Space Grotesk", "Noto Sans JP", sans-serif;
  --sans: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open,
body.search-is-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }
a:hover { color: inherit; }

img { display: block; max-width: 100%; height: auto; }

figure { margin: 0; }

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

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  letter-spacing: -.035em;
  line-height: 1.15;
}

h1 { font-size: clamp(3.25rem, 7vw, 7.25rem); }
h2 { font-size: clamp(2.35rem, 5vw, 4.7rem); }
h3 { font-size: clamp(1.35rem, 2vw, 2rem); }

::selection { color: var(--white); background: var(--pink); }

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  top: 8px;
  left: 8px;
  z-index: 99999;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto !important;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

.shell {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.shell--narrow { width: min(760px, calc(100% - 48px)); }

.section-space { padding-block: clamp(80px, 10vw, 144px); }

.eyebrow {
  margin-bottom: 18px;
  color: var(--pink);
  font-family: var(--display);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.spectrum-text {
  display: inline-block;
  color: transparent;
  background: var(--spectrum);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.button-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.button:hover { transform: translateY(-2px); }

.button--ink { color: var(--white); background: var(--ink); box-shadow: 0 12px 30px rgba(17, 16, 34, .18); }
.button--ink:hover { color: var(--white); background: var(--ink-soft); }
.button--outline { color: var(--ink); background: transparent; border-color: var(--ink); }
.button--outline:hover { color: var(--white); background: var(--ink); }
.button--light { color: var(--ink); background: var(--white); }
.button--light:hover { color: var(--ink); box-shadow: 0 12px 34px rgba(0, 0, 0, .2); }
.button--spectrum { color: var(--white); background: var(--spectrum); box-shadow: 0 12px 32px rgba(37, 99, 235, .22); }
.button--spectrum:hover { color: var(--white); box-shadow: 0 16px 36px rgba(37, 99, 235, .32); }

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
}

.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  color: var(--white);
  background: rgba(17, 16, 34, .97);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled { background: rgba(17, 16, 34, .94); box-shadow: 0 12px 30px rgba(9, 8, 20, .18); backdrop-filter: blur(16px); }

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
  width: min(1440px, calc(100% - 40px));
  min-height: var(--header-height);
  margin-inline: auto;
}

.site-brand { display: inline-flex; grid-column: 1; gap: 12px; align-items: center; flex: 0 0 auto; color: var(--white); }
.site-brand:hover { color: var(--white); }
.site-brand .custom-logo-link {
  display: block;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  overflow: hidden;
  background: var(--white);
  border-radius: 50%;
}
.site-brand .custom-logo { width: 100%; height: 100%; max-width: none; max-height: none; object-fit: cover; }

.site-brand__mark {
  position: relative;
  display: inline-flex;
  gap: 3px;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  background: var(--spectrum);
  border-radius: 11px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2);
}

.site-brand__mark i { width: 2px; height: 23px; background: rgba(255, 255, 255, .9); transform: rotate(45deg); border-radius: 2px; }
.site-brand__name { font-family: var(--display); font-size: 1.18rem; font-weight: 800; letter-spacing: -.02em; white-space: nowrap; }

.primary-nav { grid-column: 2; justify-self: center; }
.primary-nav .menu,
.footer-menu,
.site-footer__nav .menu { display: flex; gap: clamp(16px, 1.8vw, 28px); align-items: center; padding: 0; margin: 0; list-style: none; }
.primary-nav a { position: relative; display: block; padding: 10px 0; color: rgba(255, 255, 255, .82); font-size: 1rem; font-weight: 700; letter-spacing: .01em; white-space: nowrap; }
.primary-nav a::after { position: absolute; right: 0; bottom: 4px; left: 0; height: 2px; content: ""; background: var(--spectrum); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.primary-nav a:hover,
.primary-nav .current-menu-item > a { color: var(--white); }
.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }
.mobile-nav-actions { display: none; }

.site-header__actions { display: flex; grid-column: 3; gap: 10px; align-items: center; justify-self: end; }
.header-contact { min-height: 44px; padding: 12px 19px; font-size: .84rem; }
.header-email { display: inline-flex; align-items: center; min-height: 42px; padding-inline: 8px; color: rgba(255,255,255,.82); font-size: .86rem; font-weight: 800; white-space: nowrap; }
.header-email:hover { color: var(--white); }

.icon-button,
.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  cursor: pointer;
}

.icon-button svg { width: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.8; }
.menu-toggle { display: none; }
.menu-toggle span { display: block; width: 18px; height: 1px; background: currentColor; transition: transform .2s ease; }
.menu-toggle span + span { margin-top: -11px; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background: rgba(17, 16, 34, .98);
}

.search-panel[hidden] { display: none; }
.search-panel__inner { position: relative; width: min(760px, 100%); }
.search-panel__close { position: absolute; top: -100px; right: 0; width: 46px; height: 46px; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; font-size: 1.8rem; cursor: pointer; }
.search-panel .search-form { display: flex; gap: 10px; }
.search-panel .search-field { flex: 1; min-width: 0; padding: 20px 0; color: var(--white); background: transparent; border: 0; border-bottom: 2px solid rgba(255,255,255,.35); border-radius: 0; font-size: clamp(1.5rem, 4vw, 3rem); }
.search-panel .search-submit { padding: 15px 24px; color: var(--ink); background: var(--white); border: 0; border-radius: 999px; font-weight: 800; cursor: pointer; }

/* Home */
.home-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(68px, 9vw, 130px) 0 clamp(80px, 10vw, 150px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 45%, rgba(79, 70, 229, .10), transparent 26%),
    radial-gradient(circle at 18% 80%, rgba(34, 211, 238, .08), transparent 22%),
    var(--paper);
}

.home-hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 1px);
  width: 1px;
  content: "";
  background: linear-gradient(transparent, var(--line), transparent);
}

.home-hero__grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(45px, 5vw, 76px); align-items: center; }
.home-hero__copy { position: relative; z-index: 1; }
.home-hero__copy h1 { margin-bottom: 28px; font-size: clamp(4rem, 7vw, 7rem); font-weight: 800; line-height: .98; white-space: nowrap; }
.home-hero__subtitle { margin-bottom: 38px; color: var(--muted); font-family: var(--display); font-size: clamp(1.05rem, 1.6vw, 1.35rem); font-style: italic; }
.home-hero__visual { position: relative; height: clamp(480px, 62vw, 720px); max-height: 720px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.home-hero__visual::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(17, 16, 34, .7), transparent 45%); }
.home-hero__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.home-hero__visual:hover img { transform: scale(1.035); }
.home-hero__visual figcaption { position: absolute; z-index: 2; right: 28px; bottom: 28px; left: 28px; display: grid; gap: 5px; padding: 19px 22px; color: var(--white); background: rgba(255, 255, 255, .09); border: 1px solid rgba(255, 255, 255, .2); border-radius: var(--radius-sm); backdrop-filter: blur(15px); }
.home-hero__visual figcaption span { color: #67e8f9; font-size: .68rem; font-weight: 800; letter-spacing: .16em; }
.home-hero__visual figcaption strong { font-family: var(--display); font-size: 1.05rem; }
.home-hero__side-note { position: absolute; right: -94px; bottom: 50%; margin: 0; color: #a5a5ae; font-family: var(--display); font-size: .64rem; font-weight: 700; letter-spacing: .25em; transform: rotate(90deg); }

.front-editor-content { padding-block: 80px; }
.section-heading { display: flex; gap: 30px; align-items: flex-end; justify-content: space-between; margin-bottom: clamp(38px, 5vw, 70px); }
.section-heading h2 { margin-bottom: 0; }
.section-heading--light { color: var(--white); }

.service-section { background: var(--white); }
.service-grid { display: grid; grid-template: "stock quick" 540px "custom custom" 360px / minmax(0, 2fr) minmax(300px, 1fr); gap: 24px; }
.service-card { position: relative; min-height: 360px; overflow: hidden; color: var(--white); background: var(--ink); border-radius: var(--radius); }
.service-card--1 { grid-area: stock; }
.service-card--2 { grid-area: quick; }
.service-card--3 { grid-area: custom; }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.service-card:hover img { transform: scale(1.055); }
.service-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 15, 30, .92), rgba(10, 15, 30, .12) 70%); transition: background .3s ease; }
.service-card--3 .service-card__overlay { background: linear-gradient(90deg, rgba(17,16,34,.94), rgba(17,16,34,.45), rgba(17,16,34,.08)); }
.service-card__body { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: clamp(28px, 4vw, 54px); }
.service-card__body h3 { max-width: 680px; margin-bottom: 18px; font-size: clamp(2rem, 4.2vw, 4.4rem); line-height: .98; }
.service-card--2 h3 { font-size: clamp(1.8rem, 3vw, 3rem); }
.service-card__body > p:not(.eyebrow) { max-width: 610px; margin-bottom: 26px; color: rgba(255,255,255,.74); }
.service-card__body > a { display: inline-flex; gap: 10px; align-items: center; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.6); font-size: .86rem; font-weight: 800; }

.home-philosophy { position: relative; overflow: hidden; background: var(--warm); }
.home-philosophy::before { position: absolute; top: -160px; left: -100px; width: 440px; height: 440px; content: ""; background: radial-gradient(circle, rgba(56,189,248,.13), transparent 68%); }
.home-philosophy__grid { display: grid; grid-template-columns: .3fr 1.3fr 1fr; gap: clamp(35px, 7vw, 100px); align-items: start; }
.home-philosophy__index { color: transparent; font-family: var(--display); font-size: clamp(5rem, 10vw, 10rem); font-weight: 800; line-height: .8; -webkit-text-stroke: 1px #c4c0b9; }
.home-philosophy h2 { margin-bottom: 0; font-size: clamp(2.8rem, 5.4vw, 5.2rem); }
.home-philosophy__body { padding-top: 42px; }
.home-philosophy__body p { margin-bottom: 32px; color: #4f4d56; font-size: 1.05rem; }

.collection-section { color: var(--white); background: var(--ink); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3.4vw, 44px); }
.product-card a { display: block; }
.product-card figure { position: relative; aspect-ratio: 4 / 3; margin-bottom: 24px; overflow: hidden; background: var(--indigo); border-radius: var(--radius); }
.product-card figure::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(17,16,34,.42), transparent 55%); }
.product-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.product-card figure span { position: absolute; z-index: 2; right: 20px; bottom: 20px; display: grid; place-items: center; width: 64px; height: 64px; color: var(--ink); background: var(--white); border-radius: 50%; font-family: var(--display); font-size: .66rem; font-weight: 800; opacity: 0; transform: translateY(10px); transition: opacity .25s ease, transform .25s ease; }
.product-card a:hover figure img { transform: scale(1.045); }
.product-card a:hover figure span { opacity: 1; transform: translateY(0); }
.product-card__meta { margin-bottom: 6px; color: var(--pink); font-size: .68rem; font-weight: 800; letter-spacing: .15em; }
.product-card h3 { margin-bottom: 10px; font-size: clamp(1.4rem, 2.4vw, 2.2rem); }
.product-card__chips { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 13px; }
.product-card__chips span { padding: 5px 9px; color: #4f4d59; background: #f0f0f4; border-radius: 999px; font-size: .68rem; font-weight: 700; line-height: 1.2; }
.product-card[hidden] { display: none; }
.product-card > a > div > p:last-child { color: rgba(255,255,255,.6); }
.products-page .product-card { color: var(--ink); }
.products-page .product-card > a > div > p:last-child { color: var(--muted); }

.news-section { background: var(--white); }
.news-list { border-top: 1px solid var(--line); }
.news-list article { border-bottom: 1px solid var(--line); }
.news-list a { display: grid; grid-template-columns: 150px 1fr auto; gap: 24px; align-items: center; padding: 28px 4px; transition: padding .25s ease, background .25s ease; }
.news-list a:hover { padding-inline: 18px; background: #fafafd; }
.news-list time { color: var(--muted); font-family: var(--display); font-size: .76rem; letter-spacing: .08em; }
.news-list h3 { margin: 0; font-family: var(--sans); font-size: 1rem; font-weight: 700; letter-spacing: 0; }

.partner-band { display: flex; gap: 58px; align-items: center; justify-content: center; padding: 38px 24px; overflow: hidden; color: #a9a8b0; background: var(--white); border-block: 1px solid var(--line); font-family: var(--display); font-size: clamp(.8rem, 1.5vw, 1.05rem); font-weight: 800; letter-spacing: .14em; white-space: nowrap; }

/* Page heroes and editable branded content */
.page-hero { position: relative; padding: clamp(70px, 9vw, 130px) 0; overflow: hidden; background: var(--paper); }
.page-hero--dark { color: var(--white); background: var(--ink); }
.page-hero--paper { background: linear-gradient(135deg, #f8f8fa, #efeff3); }
.page-hero__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.page-hero__copy h1 { margin-bottom: 30px; font-size: clamp(3.7rem, 8vw, 8.2rem); }
.page-hero__excerpt { max-width: 620px; margin-bottom: 25px; color: var(--muted); font-size: clamp(1rem, 1.7vw, 1.25rem); }
.page-hero--dark .page-hero__excerpt { color: rgba(255,255,255,.68); }
.page-hero__kicker { color: var(--pink); font-family: var(--display); font-size: .9rem; font-style: italic; }
.page-hero__visual { position: relative; height: clamp(460px, 57vw, 680px); overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.page-hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__number { position: absolute; right: 20px; bottom: -24px; color: rgba(255,255,255,.76); font-family: var(--display); font-size: clamp(6rem, 15vw, 13rem); font-weight: 800; line-height: .8; mix-blend-mode: overlay; }

.branded-content { background: var(--white); }
.branded-content > * { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.story-section { padding-block: clamp(80px, 10vw, 150px); }
.story-section--split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(42px, 8vw, 110px); align-items: center; }
.story-section--reverse .story-copy { order: 2; }
.story-section--reverse .story-media { order: 1; }
.story-copy h2 { margin-bottom: 30px; }
.story-copy > p:not(.eyebrow) { color: #52515c; font-size: 1.05rem; }
.story-copy > p:last-child { margin-bottom: 0; }
.story-media { height: clamp(420px, 52vw, 650px); overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.story-media--tall { height: clamp(520px, 65vw, 780px); }
.story-media.portrait { height: clamp(520px, 62vw, 720px); }
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-section--dark { position: relative; width: 100%; max-width: none; padding-inline: max(24px, calc((100vw - 1200px)/2)); color: var(--white); background: var(--ink); }
.story-section--dark .story-copy > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.stat-line { display: flex; gap: 20px; align-items: center; margin-top: 38px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.18); }
.stat-line strong { font-family: var(--display); font-size: 3rem; }
.stat-line span { color: rgba(255,255,255,.6); font-size: .8rem; line-height: 1.6; }
.aging-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 48px; }
.aging-grid figure { position: relative; height: min(55vw, 620px); overflow: hidden; border-radius: var(--radius); }
.aging-grid img { width: 100%; height: 100%; object-fit: cover; }
.aging-grid figcaption { position: absolute; right: 20px; bottom: 20px; left: 20px; display: flex; align-items: flex-end; justify-content: space-between; padding: 20px; color: var(--white); background: rgba(17,16,34,.5); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-sm); backdrop-filter: blur(10px); }
.aging-grid figcaption strong { font-size: 1.25rem; }
.aging-grid figcaption span { font-size: .7rem; letter-spacing: .13em; }
.company-profile { width: 100%; max-width: none; color: var(--white); background: var(--ink); }
.company-profile dl { margin: 48px 0 0; border-top: 1px solid rgba(255,255,255,.2); }
.company-profile dl div { display: grid; grid-template-columns: 180px 1fr; gap: 30px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.company-profile dt { color: rgba(255,255,255,.55); font-size: .78rem; font-weight: 700; letter-spacing: .08em; }
.company-profile dd { margin: 0; font-weight: 600; }

.entry-content { line-height: 1.95; }
.entry-content > * { margin-top: 0; margin-bottom: 1.5em; }
.entry-content > h2 { margin-top: 2em; }
.entry-content a:not(.button) { color: #1d4ed8; text-decoration: underline; text-underline-offset: 3px; }
.entry-content .alignwide { width: min(1200px, 100%); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.entry-content .alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }

/* Process */
.process-intro { position: relative; min-height: calc(100svh - var(--header-height)); color: var(--white); background: var(--ink); }
.process-intro__image { position: absolute; inset: 0; }
.process-intro__image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(17,16,34,.96) 5%, rgba(17,16,34,.72) 50%, rgba(17,16,34,.28)); }
.process-intro__image img { width: 100%; height: 100%; object-fit: cover; }
.process-intro__content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; min-height: calc(100svh - var(--header-height)); padding-block: 80px; }
.process-intro h1 { max-width: 850px; margin-bottom: 32px; }
.process-intro__content > p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.72); font-size: 1.12rem; }
.scroll-cue { display: inline-flex; gap: 14px; align-items: center; width: fit-content; margin-top: 40px; color: rgba(255,255,255,.65); font-family: var(--display); font-size: .68rem; font-weight: 700; letter-spacing: .16em; }
.process-step { min-height: 78vh; padding-block: clamp(75px, 10vw, 140px); background: var(--paper); border-bottom: 1px solid var(--line); }
.process-step:nth-child(even) { background: var(--white); }
.process-step__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 9vw, 130px); align-items: center; }
.process-step:nth-child(even) .process-step__copy { order: 2; }
.process-step:nth-child(even) figure { order: 1; }
.process-step__number { margin-bottom: 30px; color: transparent; font-family: var(--display); font-size: clamp(6rem, 13vw, 12rem); font-weight: 800; line-height: .7; -webkit-text-stroke: 1px #cbcbd2; }
.process-step h2 { margin-bottom: 26px; font-size: clamp(2.5rem, 4.5vw, 4.5rem); }
.process-step__text { color: var(--muted); }
.process-step figure { height: clamp(420px, 57vw, 680px); overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.process-step figure img { width: 100%; height: 100%; object-fit: cover; }
.quality-cta { padding-block: clamp(90px, 12vw, 170px); text-align: center; color: var(--white); background: radial-gradient(circle at 50% 120%, rgba(79,70,229,.24), transparent 40%), var(--ink); }
.quality-cta h2 { margin-bottom: 28px; }
.quality-cta p:not(.eyebrow) { max-width: 680px; margin-inline: auto; color: rgba(255,255,255,.68); }
.quality-cta .button-row { justify-content: center; margin-top: 36px; }

/* Products */
.products-hero { padding: clamp(70px, 9vw, 130px) 0; background: var(--white); }
.products-hero__grid { display: grid; grid-template-columns: 1fr .85fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.products-hero h1 { margin-bottom: 30px; font-size: clamp(3.2rem, 6.7vw, 6.9rem); }
.products-hero__grid > div > p:not(.eyebrow) { max-width: 620px; margin-bottom: 34px; color: var(--muted); font-size: 1.1rem; }
.products-hero figure { height: clamp(480px, 57vw, 680px); overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); transform: rotate(1.5deg); }
.products-hero figure img { width: 100%; height: 100%; object-fit: cover; }
.products-intro { background: var(--warm); }
.products-intro__grid { display: grid; grid-template-columns: .5fr 1.2fr .9fr; gap: clamp(30px, 6vw, 90px); align-items: start; }
.products-intro h2 { margin-bottom: 0; }
.products-intro__grid > p:last-child { padding-top: 22px; color: var(--muted); }
.product-archive { background: var(--white); }
.collection-toolbar { display: flex; gap: 24px; align-items: center; justify-content: space-between; margin-bottom: 42px; }
.product-filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.product-filters span { margin-right: 8px; color: var(--muted); font-family: var(--display); font-size: .65rem; font-weight: 800; letter-spacing: .14em; }
.product-filters button { padding: 9px 16px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: .8rem; font-weight: 700; cursor: pointer; }
.product-filters button:hover,
.product-filters button.is-active { color: var(--white); background: var(--ink); border-color: var(--ink); }
.collection-count { flex: 0 0 auto; margin: 0; color: var(--muted); font-family: var(--display); font-size: .78rem; font-weight: 700; }
.section-heading__note { max-width: 390px; margin: 0; color: var(--muted); font-size: .9rem; }
.custom-order { color: var(--white); background: var(--ink); }
.custom-order__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 9vw, 120px); align-items: center; }
.custom-order__visual { height: clamp(460px, 58vw, 680px); overflow: hidden; border-radius: var(--radius-lg); }
.custom-order__visual img { width: 100%; height: 100%; object-fit: cover; }
.custom-order__copy > p:not(.eyebrow) { margin-bottom: 34px; color: rgba(255,255,255,.68); }
.value-section { background: var(--paper); }
.value-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); }
.value-grid article { min-height: 310px; padding: clamp(30px, 4vw, 55px); background: var(--paper); }
.value-grid span { display: block; margin-bottom: 60px; color: var(--pink); font-family: var(--display); font-size: .8rem; font-weight: 800; }
.value-grid h3 { margin-bottom: 18px; }
.value-grid p { color: var(--muted); }

/* Product single */
.product-single__hero { padding-block: clamp(70px, 9vw, 130px); background: var(--white); }
.product-single__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.product-single__hero figure { height: clamp(500px, 64vw, 740px); overflow: hidden; border-radius: var(--radius-lg); }
.product-single__hero figure img { width: 100%; height: 100%; object-fit: cover; }
.product-single__hero h1 { margin-bottom: 25px; font-size: clamp(3rem, 6vw, 6rem); }
.product-single__lead { color: var(--muted); font-size: 1.08rem; }
.product-specs { margin: 38px 0; border-top: 1px solid var(--line); }
.product-specs div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.product-specs dt { color: var(--muted); font-size: .72rem; font-weight: 700; }
.product-specs dd { margin: 0; font-weight: 700; }
.product-single__content { padding-block: clamp(80px, 10vw, 140px); }

/* Contact */
.contact-hero { padding-block: clamp(90px, 13vw, 180px); color: var(--white); background: radial-gradient(circle at 85% 25%, rgba(37,99,235,.22), transparent 28%), var(--ink); }
.contact-hero h1 { margin-bottom: 30px; }
.contact-hero p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.68); font-size: 1.12rem; }
.contact-content { background: var(--white); }
.contact-content__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 120px); }
.contact-content__info dl { margin-top: 50px; border-top: 1px solid var(--line); }
.contact-content__info dl div { padding: 24px 0; border-bottom: 1px solid var(--line); }
.contact-content__info dt { margin-bottom: 5px; color: var(--pink); font-family: var(--display); font-size: .68rem; font-weight: 800; letter-spacing: .14em; }
.contact-content__info dd { margin: 0; font-size: 1.05rem; font-weight: 700; }
.contact-content__info small { display: block; color: var(--muted); font-size: .72rem; font-weight: 400; }
.contact-form-shell { padding: clamp(32px, 5vw, 60px); background: var(--paper); border-radius: var(--radius); }
.contact-form-shell input:not([type="submit"]),
.contact-form-shell textarea,
.contact-form-shell select { width: 100%; padding: 14px 16px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; }
.contact-form-shell input[type="submit"] { padding: 15px 24px; color: var(--white); background: var(--ink); border: 0; border-radius: 999px; font-weight: 800; cursor: pointer; }
.contact-methods { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 10px; }

/* Journal, search and utility pages */
.archive-header,
.article-header { padding-block: clamp(80px, 11vw, 150px); color: var(--white); background: var(--ink); }
.archive-header h1,
.article-header h1 { margin: 0; }
.article-header time { display: block; margin-bottom: 20px; color: rgba(255,255,255,.56); font-family: var(--display); font-size: .78rem; }
.journal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 36px; padding-block: clamp(70px, 10vw, 130px); }
.journal-card { padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.journal-card img { aspect-ratio: 4/3; width: 100%; margin-bottom: 22px; object-fit: cover; border-radius: var(--radius); }
.journal-card time { color: var(--muted); font-family: var(--display); font-size: .72rem; }
.journal-card h2 { margin: 9px 0 16px; font-size: 1.45rem; }
.journal-card p { color: var(--muted); }
.article-featured { margin-top: -50px; }
.article-featured img { width: 100%; max-height: 720px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.article-page .entry-content { padding-block: clamp(70px, 10vw, 130px); }
.search-results { padding-block: clamp(70px, 10vw, 130px); }
.search-results article { padding: 30px 0; border-bottom: 1px solid var(--line); }
.search-results h2 { margin-bottom: 12px; font-size: 2rem; }
.search-results p:last-child { color: var(--muted); }
.error-page { display: grid; place-items: center; min-height: 72vh; padding-block: 90px; text-align: center; }
.error-page__code { margin-bottom: 0; font-family: var(--display); font-size: clamp(8rem, 22vw, 18rem); font-weight: 800; line-height: .8; }
.error-page h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
.error-page .button { margin-top: 25px; }

/* Contact band and footer */
.contact-band { padding-block: clamp(75px, 10vw, 130px); color: var(--white); background: var(--blue); }
.contact-band__inner { display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: end; }
.contact-band h2 { margin-bottom: 0; }
.contact-band__actions { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.contact-band__actions .button-row { width: 100%; }
.contact-band__phone { color: rgba(255,255,255,.66); font-family: var(--display); font-size: 1.3rem; }
.button--ghost-light { color: var(--white); background: transparent; border-color: rgba(255,255,255,.48); }
.button--ghost-light:hover { color: var(--ink); background: var(--white); }

.site-footer { padding: 80px 0 25px; color: var(--white); background: var(--ink); }
.site-footer__grid { display: grid; grid-template-columns: 1.3fr 1fr .8fr; gap: clamp(40px, 8vw, 100px); }
.site-footer__brand > p { max-width: 410px; margin: 28px 0 0; color: rgba(255,255,255,.56); }
.footer-label { margin-bottom: 20px; color: rgba(255,255,255,.36); font-family: var(--display); font-size: .65rem; font-weight: 800; letter-spacing: .16em; }
.site-footer .footer-menu,
.site-footer__nav .menu { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 22px; }
.site-footer .footer-menu a,
.site-footer__nav .menu a { color: rgba(255,255,255,.72); font-size: .8rem; }
.site-footer .footer-menu a:hover,
.site-footer__nav .menu a:hover { color: var(--white); }
.site-footer__contact { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer__contact > a { margin-bottom: 7px; font-size: .86rem; }
.site-footer__contact address { margin-top: 12px; color: rgba(255,255,255,.54); font-size: .78rem; font-style: normal; }
.social-links { display: flex; gap: 15px; margin-top: 18px; font-size: .75rem; text-decoration: underline; text-underline-offset: 4px; }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 70px; padding-top: 22px; color: rgba(255,255,255,.38); border-top: 1px solid rgba(255,255,255,.1); font-family: var(--display); font-size: .68rem; }
.site-footer__bottom p { margin: 0; }

/* Approved content structure */
.home-index { background: var(--white); }
.home-index__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.home-index__card { position: relative; min-height: 330px; overflow: hidden; color: var(--white); background: var(--ink); border-radius: var(--radius); }
.home-index__card:first-child { grid-column: 1 / -1; min-height: 430px; }
.home-index__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.home-index__card:hover img { transform: scale(1.04); }
.home-index__shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,15,30,.9), rgba(10,15,30,.08) 68%); }
.home-index__number { position: absolute; top: 24px; left: 26px; font-family: var(--display); font-size: .78rem; font-weight: 800; letter-spacing: .14em; }
.home-index__copy { position: absolute; right: 70px; bottom: 30px; left: 30px; display: grid; gap: 5px; }
.home-index__copy small { color: rgba(255,255,255,.64); font-family: var(--display); font-size: .68rem; font-weight: 800; letter-spacing: .14em; }
.home-index__copy strong { font-family: var(--display); font-size: clamp(1.7rem, 3.4vw, 3.6rem); line-height: 1.1; }
.home-index__arrow { position: absolute; right: 30px; bottom: 30px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; }

.product-solution { background: var(--warm); }
.products-intro__grid > div { padding-top: 22px; color: var(--muted); }
.products-intro__grid > div .button { margin-top: 20px; }
.collection-lines { display: grid; gap: clamp(70px, 10vw, 130px); margin-top: clamp(70px, 9vw, 120px); }
.collection-line { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 7vw, 90px); align-items: center; }
.collection-line--reverse figure { order: 2; }
.collection-line figure { height: clamp(420px, 48vw, 640px); overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.collection-line figure img { width: 100%; height: 100%; object-fit: cover; }
.collection-line h3 { margin-bottom: 24px; font-size: clamp(2.1rem, 4vw, 4rem); }
.collection-line p:last-child { color: var(--muted); }
.value-grid--approved { margin-top: clamp(60px, 8vw, 105px); }
.process-step__focus { margin: 0 0 20px; padding-left: 18px; color: var(--indigo); border-left: 4px solid var(--pink); font-weight: 800; }
.contact-notice { margin: 30px 0; padding: 20px 22px; background: var(--warm); border-left: 4px solid var(--pink); font-weight: 700; }
.company-profile__list { max-width: 960px; }
.company-profile .button { margin-top: 36px; }

/* Entrance motion */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .site-header__inner { width: min(100% - 28px, 1200px); }
  .primary-nav .menu { gap: 16px; }
  .primary-nav a { font-size: .94rem; }
  .header-contact { display: none; }
  .home-philosophy__grid { grid-template-columns: .2fr 1.2fr 1fr; gap: 45px; }
}

@media (max-width: 960px) {
  :root { --header-height: 70px; }
  .site-header__inner { grid-template-columns: auto 1fr auto; }
	body.menu-is-open .site-header { position: fixed; top: 0; right: 0; left: 0; }
	body.menu-is-open .site-header.is-scrolled { backdrop-filter: none; }
	.site-header__inner > .site-brand,
	.site-header__actions { position: relative; z-index: 120; }
  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: block;
    width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    padding: calc(var(--header-height) + 28px) 24px max(34px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    justify-self: stretch;
    visibility: hidden;
    background: rgba(17,16,34,.985);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .primary-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
	.primary-nav .menu { display: block; width: min(720px, 100%); margin-inline: auto; }
  .primary-nav .menu li { border-bottom: 1px solid rgba(255,255,255,.1); }
  .primary-nav a { display: flex; align-items: center; justify-content: space-between; padding: 18px 2px; font-size: 1rem; }
  .primary-nav a::after { display: none; }
	.mobile-nav-actions { display: grid; width: min(720px, 100%); gap: 12px; margin: 30px auto 0; }
	.mobile-nav-actions .button { justify-content: center; padding-inline: 20px; }
  .menu-toggle { display: inline-grid; }
  .home-hero__grid,
  .page-hero__grid,
  .products-hero__grid,
  .product-single__grid { grid-template-columns: 1fr; }
	.product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-hero::before { display: none; }
  .home-hero__copy { max-width: 720px; }
  .home-hero__visual { height: 70vw; min-height: 460px; }
  .home-hero__side-note { display: none; }
  .service-grid { grid-template: "stock" 500px "quick" 420px "custom" 420px / 1fr; }
  .service-card--3 .service-card__overlay { background: linear-gradient(to top, rgba(17,16,34,.92), rgba(17,16,34,.1)); }
  .home-philosophy__grid { grid-template-columns: 100px 1fr; }
  .home-philosophy__body { grid-column: 2; padding-top: 0; }
  .story-section--split,
  .process-step__grid,
  .custom-order__grid,
  .contact-content__grid { grid-template-columns: 1fr; }
  .story-section--reverse .story-copy,
  .story-section--reverse .story-media,
  .process-step:nth-child(even) .process-step__copy,
  .process-step:nth-child(even) figure { order: initial; }
  .story-media { height: 68vw; min-height: 440px; }
  .process-step__grid { gap: 45px; }
  .process-step figure { height: 66vw; min-height: 440px; }
  .products-intro__grid { grid-template-columns: 1fr 1.5fr; }
  .products-intro__grid > p:last-child,
  .products-intro__grid > div { grid-column: 2; padding-top: 0; }
	.collection-line { grid-template-columns: 1fr; }
	.collection-line--reverse figure { order: initial; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article { min-height: 0; }
  .value-grid span { margin-bottom: 32px; }
  .journal-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__contact { grid-column: 2; }
}

@media (max-width: 700px) {
  .shell,
  .shell--narrow,
  .branded-content > * { width: min(100% - 32px, 1200px); }
  .site-brand__name { font-size: 1rem; }
  .site-brand__mark { width: 34px; height: 34px; }
  .site-brand .custom-logo-link { width: 38px; height: 38px; }
  .search-toggle { display: none; }
	.header-email { display: none; }
  .home-hero { padding-top: 58px; }
  .home-hero__copy h1 { font-size: clamp(3.4rem, 17vw, 5.5rem); }
  .home-hero__visual { min-height: 420px; border-radius: var(--radius); }
  .home-hero__visual figcaption { right: 16px; bottom: 16px; left: 16px; }
  .button { min-height: 48px; padding: 13px 19px; font-size: .82rem; }
  .button-row { align-items: stretch; }
  .button-row .button { flex: 1 1 190px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
	.home-index__grid { grid-template-columns: 1fr; }
	.home-index__card,
	.home-index__card:first-child { grid-column: auto; min-height: 360px; }
  .service-grid { grid-template-rows: 470px 400px 400px; }
  .service-card__body h3 { font-size: 2.2rem; }
  .home-philosophy__grid { grid-template-columns: 1fr; }
  .home-philosophy__index { font-size: 7rem; }
  .home-philosophy__body { grid-column: auto; }
  .product-grid { grid-template-columns: 1fr; }
	.collection-toolbar { align-items: flex-start; flex-direction: column; }
  .product-card figure { margin-bottom: 18px; }
  .news-list a { grid-template-columns: 1fr auto; gap: 8px 18px; }
  .news-list time { grid-column: 1; }
  .news-list h3 { grid-column: 1; }
  .news-list span { grid-row: 1 / 3; grid-column: 2; }
  .partner-band { justify-content: flex-start; overflow-x: auto; }
  .page-hero { padding-top: 62px; }
  .page-hero__copy h1 { font-size: clamp(3.4rem, 16vw, 5.2rem); }
  .page-hero__visual { height: 110vw; min-height: 430px; border-radius: var(--radius); }
  .story-section { padding-block: 75px; }
  .story-media,
  .story-media--tall,
  .story-media.portrait { height: 110vw; min-height: 400px; border-radius: var(--radius); }
  .story-section--dark { width: 100%; padding-inline: 16px; }
  .aging-grid { grid-template-columns: 1fr; }
  .aging-grid figure { height: 115vw; }
  .company-profile dl div { grid-template-columns: 1fr; gap: 6px; }
  .process-intro h1 { font-size: clamp(3.4rem, 15vw, 5.1rem); }
  .process-intro__image::after { background: linear-gradient(to top, rgba(17,16,34,.96) 8%, rgba(17,16,34,.68) 68%, rgba(17,16,34,.35)); }
  .process-step figure { height: 105vw; min-height: 390px; border-radius: var(--radius); }
  .products-hero h1 { font-size: clamp(2.8rem, 13vw, 4.3rem); }
  .products-hero figure { height: 110vw; min-height: 440px; border-radius: var(--radius); }
  .products-intro__grid { grid-template-columns: 1fr; }
  .products-intro__grid > p:last-child,
  .products-intro__grid > div { grid-column: auto; }
	.collection-line figure { height: 105vw; min-height: 390px; border-radius: var(--radius); }
  .custom-order__visual { height: 105vw; min-height: 420px; border-radius: var(--radius); }
  .product-single__hero figure { height: 115vw; min-height: 450px; border-radius: var(--radius); }
  .product-specs div { grid-template-columns: 110px 1fr; }
  .contact-content__grid { gap: 40px; }
  .journal-grid { grid-template-columns: 1fr; }
  .contact-band__inner { grid-template-columns: 1fr; gap: 36px; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__contact { grid-column: auto; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .site-footer .footer-menu,
  .site-footer__nav .menu { grid-template-columns: 1fr 1fr; }
}

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

/* Stitch multipage navigation and gallery refinements */
.section-nav {
  position: relative;
  z-index: 4;
  width: 100%;
  overflow-x: auto;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
}

.section-nav__track {
  display: flex;
  width: max-content;
  min-width: min(100%, 1200px);
  margin-inline: auto;
}

.section-nav__item {
  position: relative;
  display: grid;
  flex: 1 0 150px;
  gap: 2px;
  min-width: 150px;
  padding: 17px 18px 15px;
  border-right: 1px solid var(--line);
}

.section-nav__item:first-child { border-left: 1px solid var(--line); }
.section-nav__item::after { position: absolute; right: 18px; bottom: -1px; left: 18px; height: 3px; content: ""; background: var(--spectrum); transform: scaleX(0); transition: transform .25s ease; }
.section-nav__item:hover::after,
.section-nav__item.is-current::after { transform: scaleX(1); }
.section-nav__item span { color: var(--pink); font-family: var(--display); font-size: .62rem; font-weight: 800; letter-spacing: .15em; }
.section-nav__item strong { font-size: .88rem; line-height: 1.45; white-space: nowrap; }

.page-hero--paper {
  background:
    radial-gradient(circle at 22% 25%, rgba(79,70,229,.09), transparent 30%),
    radial-gradient(circle at 78% 22%, rgba(34,211,238,.1), transparent 34%),
    linear-gradient(135deg, #fbfbfc, #f3f4f6);
}

.page-hero--paper::after {
  position: absolute;
  top: 17%;
  left: 11%;
  width: 78%;
  height: 50%;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(34,211,238,.35);
  border-color: rgba(34,211,238,.35) transparent rgba(79,70,229,.3);
  border-radius: 48% 52% 54% 46%;
  transform: rotate(4deg);
}

.page-hero__grid { position: relative; z-index: 1; }
.page-hero__visual { transform: rotate(1.2deg); }
.page-hero__visual::after { position: absolute; inset: 14px -14px -14px 14px; z-index: -1; content: ""; background: var(--spectrum); border-radius: inherit; filter: blur(18px); opacity: .18; }

.branded-content > .story-section:nth-child(odd) .story-media,
.collection-line:nth-child(odd) figure { transform: rotate(-.7deg); }
.branded-content > .story-section:nth-child(even) .story-media,
.collection-line:nth-child(even) figure { transform: rotate(.7deg); }

.product-single__back {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.product-single__back:hover { color: var(--pink); }

.product-flow { color: var(--ink); background: var(--warm); }
.product-flow__intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; margin-bottom: 48px; align-items: end; }
.product-flow__intro h2 { margin-bottom: 0; }
.product-flow__steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.product-flow__steps article { position: relative; min-height: 230px; padding: 30px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 22px; }
.product-flow__steps article::before { position: absolute; top: 0; right: 0; left: 0; height: 4px; content: ""; background: var(--spectrum); }
.product-flow__steps span { display: block; margin-bottom: 40px; color: var(--pink); font-family: var(--display); font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.product-flow__steps h3 { margin-bottom: 12px; font-size: 1.2rem; }
.product-flow__steps p { margin-bottom: 0; color: var(--muted); font-size: .88rem; }

.related-products { background: var(--white); }
.related-products .section-heading { margin-bottom: 44px; }

.contact-content__map { position: relative; margin-top: 34px; overflow: hidden; border-radius: 22px; }
.contact-content__map img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.contact-content__map span { position: absolute; right: 14px; bottom: 14px; padding: 8px 12px; color: var(--white); background: rgba(17,16,34,.86); border-radius: 999px; font-size: .72rem; font-weight: 800; }

.texture-section,
.initiative-gallery { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.texture-section h2 { max-width: 760px; }
.texture-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 48px; }
.texture-grid figure { aspect-ratio: 1; overflow: hidden; border-radius: 22px; box-shadow: 0 16px 36px rgba(17,16,34,.1); }
.texture-grid figure:nth-child(even) { transform: translateY(30px); }
.texture-grid img { width: 100%; height: 100%; object-fit: cover; }

.initiative-gallery__heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; margin-bottom: 48px; align-items: end; }
.initiative-gallery__heading h2,
.initiative-gallery__heading p { margin-bottom: 0; }
.initiative-gallery__heading > p { color: var(--muted); }
.initiative-gallery__grid { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: repeat(2, 310px); gap: 18px; }
.initiative-gallery__grid figure { position: relative; overflow: hidden; background: var(--ink); border-radius: 26px; }
.initiative-gallery__wide { grid-row: 1 / 3; }
.initiative-gallery__grid img { width: 100%; height: 100%; object-fit: cover; }
.initiative-gallery__grid figure::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(11,13,24,.9), transparent 62%); }
.initiative-gallery__grid figcaption { position: absolute; z-index: 1; right: 26px; bottom: 24px; left: 26px; display: grid; gap: 5px; color: var(--white); }
.initiative-gallery__grid figcaption strong { font-size: 1.2rem; }
.initiative-gallery__grid figcaption span { color: rgba(255,255,255,.68); font-size: .82rem; }

.company-profile { color: var(--ink); background: #f3f4f6; }
.company-profile__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; max-width: none; margin-top: 46px !important; border: 0 !important; }
.company-profile dl div { display: block; min-height: 150px; padding: 28px !important; background: var(--white); border: 1px solid #e8e8ed !important; border-radius: 22px; box-shadow: 0 14px 34px rgba(17,16,34,.05); }
.company-profile dl div:nth-child(3),
.company-profile dl div:nth-child(8) { grid-column: 1 / -1; }
.company-profile dl div:nth-child(2) { color: var(--white); background: var(--spectrum); }
.company-profile dt { margin-bottom: 22px; color: var(--pink); font-family: var(--display); font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.company-profile dl div:nth-child(2) dt { color: rgba(255,255,255,.78); }
.company-profile dd { margin: 0; font-family: var(--display); font-size: clamp(1.15rem, 2vw, 1.8rem); font-weight: 700; }

@media (max-width: 960px) {
  .product-flow__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.texture-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .section-nav__item { flex-basis: 132px; min-width: 132px; padding: 14px 14px 12px; }
  .section-nav__item::after { right: 14px; left: 14px; }
  .section-nav__item strong { font-size: .8rem; }
  .page-hero__visual { transform: none; }
  .product-flow__intro,
  .product-flow__steps { grid-template-columns: 1fr; }
  .product-flow__steps article { min-height: 190px; }
	.texture-section,
	.initiative-gallery { width: min(100% - 32px, 1200px); }
	.texture-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
	.texture-grid figure:nth-child(even) { transform: translateY(16px); }
	.initiative-gallery__heading,
	.initiative-gallery__grid { grid-template-columns: 1fr; }
	.initiative-gallery__grid { grid-template-rows: 440px 300px 300px; }
	.initiative-gallery__wide { grid-row: auto; }
	.company-profile__list { grid-template-columns: 1fr; }
	.company-profile dl div:nth-child(3),
	.company-profile dl div:nth-child(8) { grid-column: auto; }
}
