:root {
  --ink: #082638;
  --deep: #073b58;
  --navy: #052b41;
  --ocean: #08758a;
  --aqua: #52bbc4;
  --ice: #edf7f5;
  --mint: #d8eeea;
  --paper: #ffffff;
  --soft: #f5f7f6;
  --coral: #f46f55;
  --coral-dark: #dc5942;
  --sage: #738f7f;
  --muted: #5f747e;
  --line: rgba(8, 38, 56, 0.16);
  --shadow: 0 24px 60px rgba(4, 36, 53, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}
body.dialog-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
h1, h2, h3, p { overflow-wrap: break-word; }
.content-shell { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 200; padding: 10px 16px; color: #fff; background: var(--coral); }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  color: #fff;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.nav-shell { width: min(1320px, calc(100% - 48px)); height: 100%; margin: 0 auto; display: flex; align-items: center; gap: 30px; }
.brand { flex: 0 0 auto; display: flex; align-items: center; gap: 12px; font-weight: 800; }
.brand-mark { display: grid; place-items: center; width: 40px; aspect-ratio: 1; border: 2px solid rgba(255,255,255,.9); border-radius: 50%; font-size: 15px; }
.brand-word { line-height: 1; font-size: 19px; }
.brand-word small { display: block; margin-top: 7px; font-size: 7px; font-weight: 600; color: rgba(255,255,255,.68); }
.primary-nav { display: flex; align-items: stretch; justify-content: center; gap: 22px; height: 100%; margin-left: auto; }
.primary-nav a { position: relative; display: flex; align-items: center; white-space: nowrap; font-size: 13px; font-weight: 650; color: rgba(255,255,255,.78); }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: transparent; }
.primary-nav a:hover, .primary-nav a:focus-visible, .primary-nav a.is-active { color: #fff; outline: none; }
.primary-nav a.is-active::after { background: var(--coral); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.language-toggle { display: inline-flex; align-items: center; gap: 5px; min-height: 36px; padding: 0 8px; border: 0; color: #fff; background: transparent; cursor: pointer; font-size: 12px; font-weight: 800; }
.lang-divider, .lang-other { color: rgba(255,255,255,.48); }
.nav-contact { display: inline-flex; align-items: center; gap: 8px; min-height: 38px; padding: 0 14px; border: 1px solid rgba(255,255,255,.45); font-size: 12px; font-weight: 750; }
.nav-contact:hover, .nav-contact:focus-visible { color: var(--ink); background: #fff; outline: none; }
.menu-button { display: none; width: 42px; height: 42px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-button span { display: block; height: 2px; margin: 5px 0; background: #fff; }

.page { display: none; min-height: 65vh; }
.page.is-active { display: block; animation: page-in .35s ease both; }
@keyframes page-in { from { opacity: 0; } to { opacity: 1; } }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

.eyebrow { margin: 0 0 18px; color: var(--ocean); font-size: 11px; line-height: 1.3; font-weight: 850; }
.eyebrow::before { content: ""; display: inline-block; width: 32px; height: 2px; margin-right: 12px; vertical-align: middle; background: currentColor; }
.eyebrow-light { color: #6ed1d5; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); gap: 80px; align-items: end; }
.section-heading h2 { max-width: 760px; margin: 0; font-size: 46px; line-height: 1.17; }
.section-heading > p { margin: 0; color: var(--muted); font-size: 17px; }
.section-heading.compact { grid-template-columns: 1fr auto; gap: 30px; }
.section-heading.compact h2 { font-size: 42px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 22px; padding: 0 22px; border: 1px solid transparent; border-radius: 3px; cursor: pointer; font-size: 14px; font-weight: 780; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.button-coral { color: #fff; background: var(--coral); }
.button-coral:hover, .button-coral:focus-visible { background: var(--coral-dark); outline: none; }
.button-outline-light { color: #fff; border-color: rgba(255,255,255,.68); background: transparent; }
.button-outline-light:hover, .button-outline-light:focus-visible { color: var(--ink); background: #fff; outline: none; }
.button-dark { color: #fff; background: var(--navy); }
.button-dark:hover, .button-dark:focus-visible { background: var(--ocean); outline: none; }
.text-link { display: inline-flex; align-items: center; gap: 22px; padding-bottom: 7px; border-bottom: 1px solid currentColor; color: var(--ocean); font-size: 14px; font-weight: 800; }
.text-link:hover, .text-link:focus-visible { color: var(--coral); outline: none; }

.home-hero { position: relative; min-height: calc(86svh - 76px); overflow: hidden; color: #fff; background: var(--deep) url("assets/gentail-hero-background-poster.jpg?v=20260718-1") center / cover no-repeat; isolation: isolate; }
.hero-video { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center; pointer-events: none; }
.hero-shade { position: absolute; inset: 0; z-index: -1; background: rgba(0, 32, 51, .42); }
.hero-layout { min-height: calc(86svh - 76px); display: grid; grid-template-columns: minmax(0, 1fr) 230px; gap: 70px; align-items: end; padding-top: 80px; padding-bottom: 84px; }
.hero-copy-block { max-width: 880px; }
.hero-kicker { margin: 0 0 22px; font-size: 12px; font-weight: 800; }
.home-hero h1 { margin: 0; font-size: 82px; line-height: 1; }
.hero-slogan { margin: 18px 0 0; font-size: 38px; line-height: 1.25; font-weight: 800; }
.hero-copy { max-width: 630px; margin: 24px 0 0; color: rgba(255,255,255,.86); font-size: 18px; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.hero-index { align-self: end; padding: 10px 0 4px 28px; border-left: 1px solid rgba(255,255,255,.5); }
.hero-index strong { display: block; font-size: 52px; line-height: 1; }
.hero-index span, .hero-index small { display: block; margin-top: 9px; font-size: 10px; }
.hero-index small { color: rgba(255,255,255,.65); }
.scroll-cue { position: absolute; right: max(32px, calc((100vw - 1180px) / 2)); bottom: 26px; display: flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 750; color: rgba(255,255,255,.7); }
.scroll-cue i { width: 32px; height: 1px; background: currentColor; }

.fact-strip { color: #fff; background: var(--coral); }
.fact-grid { min-height: 104px; display: grid; grid-template-columns: repeat(3, 1fr) 1.35fr; align-items: stretch; }
.fact-grid > div { display: flex; align-items: center; gap: 14px; padding: 24px 22px 24px 0; border-right: 1px solid rgba(255,255,255,.38); }
.fact-grid > div + div { padding-left: 22px; }
.fact-grid strong { font-size: 11px; }
.fact-grid span { font-size: 13px; font-weight: 750; }
.fact-grid > p { align-self: center; margin: 0; padding-left: 30px; font-size: 13px; }

.origin-section { padding: 122px 0; background: #fff; }
.origin-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 100px; align-items: center; }
.origin-copy h2 { margin: 0; font-size: 50px; line-height: 1.16; }
.origin-copy .lead { margin: 26px 0 34px; color: var(--muted); font-size: 18px; }
.origin-figure { position: relative; margin: 0; min-height: 570px; overflow: hidden; }
.origin-figure img { height: 570px; object-fit: cover; }
.origin-figure figcaption { position: absolute; left: 0; right: 0; bottom: 0; display: flex; justify-content: space-between; gap: 20px; padding: 18px 24px; color: #fff; background: var(--coral); font-size: 11px; }

.collection-section { padding: 118px 0 112px; background: var(--ice); }
.home-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 64px; }
.home-product { border: 1px solid var(--line); background: #fff; }
.pack-stage { height: 340px; display: grid; place-items: center; overflow: hidden; }
.stage-deep { background: var(--deep); }
.stage-mint { background: var(--mint); }
.stage-coral { background: #f5d1c8; }
.pack { position: relative; width: 168px; height: 232px; padding: 26px 20px; overflow: hidden; border-radius: 6px 6px 18px 18px; box-shadow: 0 24px 40px rgba(3, 32, 48, .23); transform: rotate(-3deg); }
.pack::before { content: ""; position: absolute; left: -20px; right: -20px; bottom: 36px; height: 56px; background: var(--coral); transform: rotate(-7deg); }
.pack span, .pack b, .pack small { position: relative; z-index: 1; display: block; }
.pack span { font-size: 14px; font-weight: 900; }
.pack b { margin-top: 43px; font-size: 22px; line-height: 1.16; }
.pack small { margin-top: 8px; font-size: 7px; font-weight: 800; }
.pack-white { background: #fff; }
.pack-deep { color: #fff; background: var(--deep); transform: rotate(3deg); }
.pack-deep::before { background: #fff; }
.pack-clear { background: rgba(255,255,255,.82); }
.home-product-copy { min-height: 214px; padding: 28px; }
.home-product-copy > span, .story-card > span, .featured-story span { color: var(--coral); font-size: 10px; font-weight: 850; }
.home-product-copy h3 { margin: 10px 0 11px; font-size: 24px; }
.home-product-copy p { margin: 0; color: var(--muted); font-size: 14px; }
.section-action { display: flex; justify-content: center; margin-top: 44px; }

.quality-feature { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 650px; color: #fff; background: var(--navy); }
.quality-feature-image { min-height: 650px; background: url("assets/ocean-school.jpg") center / cover no-repeat; }
.quality-feature-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 82px max(44px, calc((100vw - 1180px) / 2)) 82px 68px; }
.quality-feature-copy h2 { margin: 0; font-size: 47px; line-height: 1.18; }
.quality-feature-copy > p:not(.eyebrow) { margin: 24px 0 0; color: rgba(255,255,255,.72); font-size: 17px; }
.quality-metrics { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 38px 0; padding: 26px 0; border-top: 1px solid rgba(255,255,255,.25); border-bottom: 1px solid rgba(255,255,255,.25); }
.quality-metrics strong, .quality-metrics span { display: block; }
.quality-metrics strong { color: #71d4d8; font-size: 32px; }
.quality-metrics span { margin-top: 5px; font-size: 11px; color: rgba(255,255,255,.65); }

.news-preview { padding: 112px 0 122px; background: #fff; }
.journal-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 60px; margin-top: 52px; }
.journal-lead { position: relative; min-height: 480px; overflow: hidden; color: #fff; background: var(--deep); }
.journal-lead::after { content: ""; position: absolute; inset: 45% 0 0; background: rgba(3, 28, 42, .72); }
.journal-lead img { height: 480px; object-fit: cover; }
.journal-lead div { position: absolute; z-index: 1; left: 30px; right: 30px; bottom: 28px; }
.journal-lead span, .journal-list span { font-size: 10px; font-weight: 800; color: #7ad3d5; }
.journal-lead h3 { max-width: 530px; margin: 10px 0 0; font-size: 28px; line-height: 1.25; }
.journal-list { border-top: 1px solid var(--line); }
.journal-list a { position: relative; display: block; min-height: 138px; padding: 25px 50px 24px 0; border-bottom: 1px solid var(--line); }
.journal-list h3 { margin: 9px 0 0; font-size: 20px; line-height: 1.35; }
.journal-list i { position: absolute; right: 0; top: 50%; font-style: normal; }
.journal-list a:hover h3 { color: var(--coral); }

.inner-hero { position: relative; min-height: 620px; display: flex; align-items: end; overflow: hidden; color: #fff; background-position: center; background-size: cover; isolation: isolate; }
.inner-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(2, 31, 47, .55); }
.inner-about { background-image: url("assets/ocean-hero.jpg"); }
.inner-brand { background-image: url("assets/gentail-hero-dog.jpg"); background-position: center 40%; }
.inner-hero-copy { padding-top: 100px; padding-bottom: 78px; }
.inner-hero h1 { max-width: 930px; margin: 0; font-size: 60px; line-height: 1.13; }
.inner-hero-copy > p:last-child { margin: 24px 0 0; color: rgba(255,255,255,.8); font-size: 18px; }
.statement-section { padding: 118px 0; }
.statement-grid { display: grid; grid-template-columns: .35fr 1.65fr; gap: 60px; }
.statement-grid h2 { max-width: 820px; margin: 0; font-size: 48px; line-height: 1.18; }
.statement-grid div > p { max-width: 760px; margin: 30px 0 0; color: var(--muted); font-size: 18px; }
.timeline-section { padding: 112px 0; background: var(--ice); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 62px; border-top: 1px solid var(--line); }
.timeline article { min-height: 290px; padding: 28px 28px 22px 0; border-right: 1px solid var(--line); }
.timeline article + article { padding-left: 28px; }
.timeline article:last-child { border-right: 0; }
.timeline strong { color: var(--coral); font-size: 11px; }
.timeline span { display: block; margin-top: 58px; font-size: 23px; font-weight: 800; }
.timeline p { margin: 14px 0 0; color: var(--muted); font-size: 14px; }
.values-section { padding: 96px 0; background: #fff; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.values-grid article { padding-left: 24px; border-left: 4px solid var(--coral); }
.values-grid article:nth-child(2) { border-color: var(--ocean); }
.values-grid article:nth-child(3) { border-color: var(--sage); }
.values-grid span { color: var(--muted); font-size: 10px; font-weight: 800; }
.values-grid h3 { margin: 8px 0; font-size: 27px; }
.values-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.wide-cta { padding: 70px 0; color: #fff; background: var(--coral); }
.wide-cta .content-shell { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.wide-cta h2 { margin: 0; font-size: 36px; }
.wide-cta .button { color: var(--ink); background: #fff; }

.product-page-hero { position: relative; padding: 104px 0 90px; color: #fff; background: var(--navy); overflow: hidden; }
.product-page-hero::after { content: "GENTAIL"; position: absolute; right: -30px; bottom: -65px; color: rgba(255,255,255,.06); font-size: 178px; line-height: 1; font-weight: 900; pointer-events: none; }
.product-page-hero h1, .simple-page-header h1, .quality-hero h1, .partners-hero h1 { max-width: 850px; margin: 0; font-size: 58px; line-height: 1.14; }
.product-page-hero p:last-child, .simple-page-header p:last-child, .quality-hero p:last-child { max-width: 650px; margin: 22px 0 0; color: rgba(255,255,255,.7); font-size: 17px; }
.product-catalog { padding: 42px 0 104px; background: var(--soft); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.filter-button { min-height: 40px; padding: 0 18px; border: 1px solid var(--line); border-radius: 3px; background: #fff; cursor: pointer; font-size: 13px; font-weight: 750; }
.filter-button:hover, .filter-button:focus-visible, .filter-button.is-active { color: #fff; border-color: var(--deep); background: var(--deep); outline: none; }
.product-count { margin: 20px 0 26px; color: var(--muted); font-size: 12px; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.catalog-card { overflow: hidden; border: 1px solid var(--line); background: #fff; }
.catalog-card[hidden] { display: none; }
.catalog-stage { position: relative; height: 330px; display: grid; place-items: center; overflow: hidden; }
.catalog-stage.deep { background: var(--deep); }
.catalog-stage.mint { background: var(--mint); }
.catalog-stage.coral { background: #f5d1c8; }
.catalog-stage.sage { background: #d7e0d8; }
.catalog-stage.ice { background: #eaf0f3; }
.catalog-stage.teal { background: #73b4b2; }
.catalog-stage .pack { width: 154px; height: 215px; }
.catalog-stage .product-image, .dialog-visual .product-image { width: 100%; height: 100%; object-fit: cover; }
.catalog-badge { position: absolute; top: 16px; left: 16px; padding: 5px 9px; color: var(--ink); background: rgba(255,255,255,.85); font-size: 9px; font-weight: 850; }
.catalog-copy { padding: 25px; }
.catalog-copy > span { color: var(--coral); font-size: 10px; font-weight: 850; }
.catalog-copy h2 { margin: 8px 0 10px; font-size: 23px; }
.catalog-copy p { min-height: 45px; margin: 0; color: var(--muted); font-size: 13px; }
.catalog-meta { display: flex; gap: 12px; margin-top: 18px; color: var(--ocean); font-size: 11px; font-weight: 750; }
.catalog-open { width: 100%; display: flex; justify-content: space-between; align-items: center; margin-top: 22px; padding: 13px 0 0; border: 0; border-top: 1px solid var(--line); background: transparent; cursor: pointer; color: var(--ink); font-size: 12px; font-weight: 800; }
.catalog-open:hover { color: var(--coral); }
.catalog-note { padding: 34px 0; color: #fff; background: var(--coral); }
.catalog-note .content-shell { display: flex; gap: 18px; align-items: flex-start; }
.catalog-note span { flex: 0 0 auto; display: grid; place-items: center; width: 24px; aspect-ratio: 1; border: 1px solid #fff; border-radius: 50%; font-weight: 800; }
.catalog-note p { margin: 0; font-size: 12px; }

.brand-manifesto { padding: 122px 0; }
.manifesto-grid { display: grid; grid-template-columns: .3fr 1.7fr; gap: 70px; }
.manifesto-number { margin: 0; color: var(--coral); font-size: 70px; line-height: 1; font-weight: 850; }
.manifesto-grid h2 { max-width: 800px; margin: 0; font-size: 49px; line-height: 1.16; }
.manifesto-grid div > p:last-child { max-width: 760px; margin: 28px 0 0; color: var(--muted); font-size: 18px; }
.principles-section { padding: 0 0 120px; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principles-grid article { min-height: 310px; padding: 32px 34px 28px 0; border-right: 1px solid var(--line); }
.principles-grid article + article { padding-left: 34px; }
.principles-grid article:last-child { border-right: 0; }
.principles-grid span { color: var(--coral); font-size: 10px; font-weight: 850; }
.principles-grid h3 { margin: 62px 0 14px; font-size: 26px; }
.principles-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.brand-language { padding: 108px 0; color: #fff; background: var(--navy); }
.brand-language-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.brand-language h2 { margin: 0; font-size: 45px; line-height: 1.18; }
.brand-language p:last-child { margin: 24px 0 0; color: rgba(255,255,255,.68); }
.swatch-stack { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: 150px 150px; gap: 10px; }
.swatch-stack span { display: flex; align-items: flex-end; padding: 18px; font-size: 10px; font-weight: 800; }
.swatch-deep { grid-row: 1 / 3; border: 1px solid rgba(255,255,255,.2); background: var(--deep); }
.swatch-ice { color: var(--ink); background: var(--ice); }
.swatch-coral { background: var(--coral); }

.quality-hero { padding: 102px 0; color: #fff; background: var(--deep); overflow: hidden; }
.quality-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: center; }
.quality-orbit { position: relative; width: 320px; aspect-ratio: 1; display: grid; place-items: center; margin-left: auto; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; }
.quality-orbit::before, .quality-orbit::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.quality-orbit::before { inset: 42px; }
.quality-orbit::after { inset: 92px; }
.quality-orbit strong { font-size: 72px; }
.quality-orbit span { position: absolute; padding: 3px 6px; color: #7bdadd; background: var(--deep); font-size: 9px; font-weight: 800; }
.quality-orbit span:nth-of-type(1) { top: 22px; }
.quality-orbit span:nth-of-type(2) { right: -10px; bottom: 74px; }
.quality-orbit span:nth-of-type(3) { left: -8px; bottom: 74px; }
.quality-process { padding: 116px 0; }
.process-list { margin-top: 58px; border-top: 1px solid var(--line); }
.process-list article { display: grid; grid-template-columns: 80px 1fr 170px; gap: 32px; align-items: center; min-height: 148px; border-bottom: 1px solid var(--line); }
.process-list article > strong { color: var(--coral); font-size: 12px; }
.process-list h3 { margin: 0; font-size: 24px; }
.process-list p { margin: 5px 0 0; color: var(--muted); font-size: 14px; }
.process-list article > span { text-align: right; color: var(--ocean); font-size: 10px; font-weight: 850; }
.quality-evidence { padding: 108px 0; background: var(--ice); }
.evidence-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.evidence-image img { height: 510px; object-fit: cover; }
.evidence-grid h2 { margin: 0; font-size: 44px; line-height: 1.18; }
.evidence-grid > div:last-child > p:not(.eyebrow) { margin: 24px 0; color: var(--muted); }
.evidence-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.evidence-tags span { padding: 7px 11px; border: 1px solid var(--line); background: #fff; font-size: 11px; font-weight: 750; }

.simple-page-header { padding: 104px 0 90px; color: var(--ink); background: var(--ice); }
.simple-page-header p:last-child { color: var(--muted); }
.news-page { padding: 90px 0 120px; }
.featured-story { display: grid; grid-template-columns: 1.15fr .85fr; gap: 62px; align-items: center; padding-bottom: 82px; border-bottom: 1px solid var(--line); }
.featured-story img { height: 480px; object-fit: cover; }
.featured-story h2 { margin: 12px 0 18px; font-size: 42px; line-height: 1.19; }
.featured-story p { margin: 0 0 28px; color: var(--muted); }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 60px; }
.story-card { border: 1px solid var(--line); background: #fff; }
.story-card img { height: 240px; object-fit: cover; }
.story-card > span, .story-card h3, .story-card p { display: block; margin-left: 24px; margin-right: 24px; }
.story-card > span { margin-top: 22px; }
.story-card h3 { margin-top: 10px; margin-bottom: 10px; font-size: 21px; line-height: 1.35; }
.story-card p { margin-top: 0; margin-bottom: 26px; color: var(--muted); font-size: 13px; }

.partners-hero { position: relative; min-height: 580px; display: flex; align-items: end; padding: 80px 0; overflow: hidden; color: #fff; background: url("assets/ocean-school.jpg") center / cover no-repeat; isolation: isolate; }
.partners-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(3, 35, 51, .58); }
.partner-types { padding: 112px 0; }
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 58px; }
.partner-grid article { min-height: 330px; display: flex; flex-direction: column; align-items: flex-start; padding: 30px; border: 1px solid var(--line); background: #fff; }
.partner-grid article > span { color: var(--coral); font-size: 11px; font-weight: 850; }
.partner-grid h3 { margin: 52px 0 14px; font-size: 25px; }
.partner-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.partner-grid a { width: 100%; display: flex; justify-content: space-between; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 800; }
.partner-grid a:hover { color: var(--coral); }
.partner-grid i { font-style: normal; }
.shop-section { padding: 104px 0; color: #fff; background: var(--coral); }
.shop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.shop-section .eyebrow { color: #fff; }
.shop-section h2 { margin: 0; font-size: 44px; }
.shop-section p:not(.eyebrow) { margin: 18px 0 0; color: rgba(255,255,255,.8); }
.shop-links { border-top: 1px solid rgba(255,255,255,.55); }
.shop-links a { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.55); font-weight: 750; }
.shop-links i { font-style: normal; }
.shop-links a:hover { color: var(--ink); }

.contact-header { color: #fff; background: var(--navy); }
.contact-header p:last-child { color: rgba(255,255,255,.7); }
.contact-section { padding: 112px 0; }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.contact-details h2 { margin: 0; font-size: 40px; }
.contact-details dl { margin: 38px 0 0; border-top: 1px solid var(--line); }
.contact-details dl div { display: grid; grid-template-columns: 105px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-details dt { color: var(--muted); font-size: 12px; }
.contact-details dd { margin: 0; font-size: 13px; font-weight: 750; }
.demo-note { margin: 22px 0 0; color: var(--muted); font-size: 11px; }
.contact-form { padding: 34px; border: 1px solid var(--line); background: var(--soft); }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: block; margin-bottom: 18px; }
.contact-form label > span { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 2px; color: var(--ink); background: #fff; outline: none; }
.contact-form input, .contact-form select { height: 46px; padding: 0 12px; }
.contact-form textarea { min-height: 132px; padding: 12px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(8,117,138,.1); }
.form-submit { margin-top: 2px; }
.form-privacy { margin: 14px 0 0; color: var(--muted); font-size: 10px; }
.location-section { padding: 96px 0; color: #fff; background: var(--deep); }
.location-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.location-grid h2 { margin: 0; font-size: 40px; }
.location-grid p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.map-placeholder { position: relative; height: 340px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,.25); background: var(--sage); }
.map-placeholder::before, .map-placeholder::after { content: ""; position: absolute; background: rgba(255,255,255,.2); transform: rotate(-18deg); }
.map-placeholder::before { width: 130%; height: 18px; }
.map-placeholder::after { width: 18px; height: 130%; }
.map-placeholder span { position: relative; z-index: 1; font-size: 28px; font-weight: 900; }
.map-placeholder i { position: absolute; z-index: 1; width: 20px; aspect-ratio: 1; border: 5px solid var(--coral); border-radius: 50% 50% 50% 0; transform: rotate(-45deg) translate(48px, -50px); }

.site-footer { color: #fff; background: #031d2c; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; padding-top: 72px; padding-bottom: 58px; }
.footer-logo { font-size: 32px; font-weight: 900; }
.footer-brand p { margin: 10px 0 0; color: #7ec7c9; font-size: 13px; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-nav strong, .footer-nav a { display: block; }
.footer-nav strong { margin-bottom: 14px; font-size: 12px; }
.footer-nav a { margin-top: 8px; color: rgba(255,255,255,.55); font-size: 11px; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; padding-bottom: 24px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.42); font-size: 10px; }

.product-dialog { width: min(980px, calc(100% - 40px)); max-height: min(760px, calc(100svh - 40px)); padding: 0; border: 0; border-radius: 4px; color: var(--ink); background: #fff; box-shadow: var(--shadow); overflow: auto; }
.product-dialog::backdrop { background: rgba(2, 22, 33, .72); }
.dialog-close { position: sticky; float: right; top: 14px; z-index: 4; width: 40px; height: 40px; margin: 14px 14px -54px 0; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; font-size: 25px; line-height: 1; }
.dialog-close:hover { color: #fff; border-color: var(--coral); background: var(--coral); }
.dialog-layout { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 660px; }
.dialog-visual { min-height: 660px; display: grid; place-items: center; background: var(--mint); }
.dialog-visual .pack { width: 190px; height: 270px; }
.dialog-content { padding: 58px 48px 42px; }
.dialog-code { color: var(--coral); font-size: 10px; font-weight: 850; }
.dialog-content h2 { margin: 10px 0 12px; font-size: 34px; line-height: 1.2; }
.dialog-summary { margin: 0; color: var(--muted); font-size: 14px; }
.dialog-specs { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 26px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dialog-specs div + div { padding-left: 14px; border-left: 1px solid var(--line); }
.dialog-specs span, .dialog-specs strong { display: block; }
.dialog-specs span { color: var(--muted); font-size: 9px; }
.dialog-specs strong { margin-top: 4px; font-size: 12px; }
.detail-tabs { display: flex; gap: 20px; margin-top: 26px; border-bottom: 1px solid var(--line); }
.detail-tab { padding: 0 0 10px; border: 0; border-bottom: 2px solid transparent; background: transparent; cursor: pointer; font-size: 12px; font-weight: 800; }
.detail-tab.is-active { color: var(--coral); border-color: var(--coral); }
.detail-panel { min-height: 110px; padding-top: 18px; color: var(--muted); font-size: 13px; }
.detail-panel ul { margin: 0; padding-left: 18px; }
.detail-panel li + li { margin-top: 7px; }
.dialog-note { margin: 14px 0 0; color: var(--muted); font-size: 9px; }
.story-read { margin: 0 24px 24px; padding: 0 0 5px; border: 0; border-bottom: 1px solid currentColor; color: var(--deep); background: transparent; cursor: pointer; font-size: 12px; font-weight: 800; }
.feature-read { margin: 0; }
.news-dialog { width: min(760px, calc(100% - 40px)); max-height: calc(100svh - 40px); padding: 0; border: 0; color: var(--ink); background: #fff; box-shadow: var(--shadow); }
.news-dialog::backdrop { background: rgba(2, 22, 33, .72); }
.news-dialog article { padding: 58px 64px 64px; }
.news-dialog article > span { color: var(--coral); font-size: 10px; font-weight: 850; }
.news-dialog h2 { margin: 12px 0 28px; font-size: 36px; line-height: 1.25; }
.news-dialog #news-dialog-body { color: var(--muted); font-size: 15px; }
.news-dialog #news-dialog-body p { margin: 0 0 18px; }
.news-dialog-close { position: sticky; float: right; top: 14px; z-index: 2; width: 40px; height: 40px; margin: 14px 14px -54px 0; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; font-size: 25px; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 300; padding: 12px 20px; color: #fff; background: var(--navy); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translate(-50%, 20px); transition: opacity .25s ease, transform .25s ease; font-size: 12px; font-weight: 750; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1180px) {
  .nav-shell { width: calc(100% - 32px); gap: 18px; }
  .primary-nav { gap: 14px; }
  .primary-nav a { font-size: 12px; }
  .nav-contact { display: none; }
}

@media (max-width: 980px) {
  .content-shell { width: min(760px, calc(100% - 40px)); }
  .site-header { height: 68px; }
  .nav-shell { justify-content: space-between; }
  .menu-button { display: block; order: 3; }
  .nav-actions { margin-left: auto; }
  .primary-nav { position: fixed; inset: 68px 0 auto; display: none; height: auto; max-height: calc(100svh - 68px); padding: 14px 20px 24px; overflow-y: auto; background: var(--navy); border-top: 1px solid rgba(255,255,255,.18); }
  .primary-nav.is-open { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
  .primary-nav a { min-height: 48px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .primary-nav a::after { display: none; }
  .home-hero, .hero-layout { min-height: calc(80svh - 68px); }
  .hero-layout { grid-template-columns: 1fr; padding-top: 76px; }
  .hero-index { display: none; }
  .home-hero h1 { font-size: 66px; }
  .hero-slogan { font-size: 31px; }
  .fact-grid { grid-template-columns: repeat(3, 1fr); }
  .fact-grid > p { grid-column: 1 / -1; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.38); }
  .origin-grid, .quality-feature, .journal-grid, .featured-story, .brand-language-grid, .evidence-grid, .shop-grid, .contact-grid, .location-grid { grid-template-columns: 1fr; }
  .origin-grid { gap: 55px; }
  .quality-feature-image { min-height: 480px; }
  .quality-feature-copy { padding: 72px 42px; }
  .home-products, .catalog-grid, .story-grid { grid-template-columns: 1fr 1fr; }
  .quality-feature { min-height: 0; }
  .journal-grid { gap: 26px; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline article:nth-child(2) { border-right: 0; }
  .timeline article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .quality-hero-grid { grid-template-columns: 1fr; }
  .quality-orbit { margin: 10px auto 0; }
  .featured-story { gap: 36px; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner-grid article { min-height: 260px; }
  .footer-main { grid-template-columns: .65fr 1.35fr; gap: 50px; }
}

@media (max-width: 680px) {
  .content-shell { width: calc(100% - 32px); }
  .brand-mark { width: 36px; }
  .brand-word { font-size: 17px; }
  .language-toggle { padding: 0 3px; }
  .primary-nav.is-open { grid-template-columns: 1fr; }
  .section-heading, .section-heading.compact { grid-template-columns: 1fr; gap: 22px; }
  .section-heading h2, .section-heading.compact h2 { font-size: 34px; }
  .home-hero { min-height: calc(78svh - 68px); background-position: 58% center; }
  .hero-layout { min-height: calc(78svh - 68px); padding-top: 62px; padding-bottom: 62px; }
  .home-hero h1 { font-size: 47px; }
  .hero-slogan { margin-top: 14px; font-size: 27px; }
  .hero-copy { margin-top: 18px; font-size: 15px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .scroll-cue { display: none; }
  .fact-grid { grid-template-columns: 1fr; padding: 10px 0; }
  .fact-grid > div, .fact-grid > div + div { min-height: 56px; padding: 12px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.28); }
  .fact-grid > p { grid-column: auto; margin-top: 4px; }
  .origin-section, .collection-section, .news-preview, .statement-section, .timeline-section, .quality-process, .news-page, .partner-types, .contact-section { padding: 76px 0; }
  .origin-copy h2, .quality-feature-copy h2, .statement-grid h2, .manifesto-grid h2, .brand-language h2, .evidence-grid h2 { font-size: 35px; }
  .origin-copy .lead { font-size: 16px; }
  .origin-figure, .origin-figure img { min-height: 390px; height: 390px; }
  .origin-figure figcaption { flex-direction: column; gap: 4px; }
  .home-products, .catalog-grid, .story-grid { grid-template-columns: 1fr; }
  .pack-stage, .catalog-stage { height: 300px; }
  .home-product-copy { min-height: auto; }
  .quality-feature-image { min-height: 360px; }
  .quality-feature-copy { padding: 64px 20px; }
  .quality-metrics { grid-template-columns: 1fr 1fr; }
  .journal-lead, .journal-lead img { min-height: 400px; height: 400px; }
  .inner-hero, .partners-hero { min-height: 520px; }
  .inner-hero-copy { padding-bottom: 56px; }
  .inner-hero h1, .product-page-hero h1, .simple-page-header h1, .quality-hero h1, .partners-hero h1 { font-size: 39px; }
  .statement-grid, .manifesto-grid { grid-template-columns: 1fr; gap: 28px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline article, .timeline article + article { min-height: 230px; padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .timeline span { margin-top: 32px; }
  .values-grid, .principles-grid { grid-template-columns: 1fr; }
  .values-grid { gap: 28px; }
  .principles-grid article, .principles-grid article + article { min-height: 240px; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .principles-grid h3 { margin-top: 36px; }
  .wide-cta .content-shell { align-items: flex-start; flex-direction: column; }
  .wide-cta h2 { font-size: 30px; }
  .product-page-hero, .simple-page-header, .quality-hero { padding: 76px 0; }
  .product-page-hero::after { font-size: 90px; bottom: -24px; }
  .swatch-stack { grid-template-columns: 1fr 1fr; grid-template-rows: 170px 120px; }
  .swatch-deep { grid-column: 1 / 3; grid-row: auto; }
  .quality-orbit { width: min(310px, 88vw); }
  .process-list article { grid-template-columns: 42px 1fr; gap: 16px; padding: 24px 0; }
  .process-list article > span { display: none; }
  .evidence-image img { height: 380px; }
  .featured-story { grid-template-columns: 1fr; }
  .featured-story img { height: 340px; }
  .featured-story h2 { font-size: 31px; }
  .shop-section { padding: 76px 0; }
  .shop-section h2 { font-size: 36px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 22px 18px; }
  .location-grid h2, .contact-details h2 { font-size: 34px; }
  .footer-main { grid-template-columns: 1fr; gap: 44px; padding-top: 58px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .dialog-layout { grid-template-columns: 1fr; }
  .dialog-visual { min-height: 330px; }
  .dialog-content { padding: 32px 22px; }
  .dialog-content h2 { font-size: 29px; }
  .dialog-specs { grid-template-columns: 1fr; gap: 11px; }
  .dialog-specs div + div { padding: 11px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .detail-tabs { gap: 14px; overflow-x: auto; }
  .detail-tab { white-space: nowrap; }
  .news-dialog article { padding: 52px 22px 34px; }
  .news-dialog h2 { font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-video { display: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .page.is-active { animation: none; }
}
