:root {
  --cyan: #00bfe8;
  --cyan-dark: #008ab8;
  --magenta: #f20a78;
  --yellow: #ffd600;
  --black: #0d0d12;
  --ink: #17171d;
  --muted: #656570;
  --paper: #ffffff;
  --soft: #f4f4f7;
  --line: #dedee5;
  --radius: 22px;
  --shadow: 0 18px 60px rgba(12, 12, 18, .12);
  --max: 1220px;
  --display-font: "Avenir Next", Avenir, "Segoe UI Variable Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 { margin: 0 0 .5em; color: var(--black); font-family: var(--display-font); font-weight: 800; line-height: 1.1; letter-spacing: -.025em; text-wrap: balance; }
h1 { font-size: clamp(3rem, 5.8vw, 5.6rem); }
h2 { font-size: clamp(2.25rem, 4.3vw, 3.95rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.16; }
p { margin: 0 0 1rem; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: clamp(76px, 9vw, 130px) 0; }
.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 { z-index: 99999; top: 8px; left: 8px; width: auto; height: auto; padding: 14px 18px; clip: auto; background: #fff; color: #000; }
.skip-link { position: fixed !important; }

.announcement { position: relative; z-index: 50; color: #fff; background: var(--black); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.announcement::after { content: ""; position: absolute; inset: auto 0 0; height: 3px; background: linear-gradient(90deg, var(--cyan) 0 25%, var(--magenta) 25% 50%, var(--yellow) 50% 75%, #fff 75%); }
.announcement-inner { display: flex; align-items: center; justify-content: space-between; min-height: 42px; gap: 20px; }
.announcement p { margin: 0; }
.announcement a { color: var(--yellow); white-space: nowrap; }
.site-header { position: sticky; z-index: 40; top: 0; border-bottom: 1px solid rgba(0, 0, 0, .08); background: rgba(255, 255, 255, .94); backdrop-filter: blur(18px); }
.header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; min-height: 82px; gap: 34px; }
.site-branding { min-width: 0; }
.custom-logo { max-height: 56px; width: auto; }
.brand-logo { display: block; width: clamp(230px, 24vw, 310px); line-height: 0; }
.brand-logo img { width: 100%; height: auto; }
.wordmark { display: inline-flex; align-items: center; gap: 11px; color: var(--black); font-family: var(--display-font); font-size: 1.25rem; font-weight: 800; letter-spacing: -.045em; line-height: 1; white-space: nowrap; }
.wordmark b { color: var(--magenta); }
.wordmark-dots { display: grid; grid-template-columns: repeat(2, 9px); gap: 3px; transform: rotate(-8deg); }
.wordmark-dots i { display: block; width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); }
.wordmark-dots i:nth-child(2) { background: var(--magenta); }
.wordmark-dots i:nth-child(3) { background: var(--yellow); }
.wordmark-dots i:nth-child(4) { background: var(--black); }
.primary-nav { justify-self: center; }
.primary-nav ul { display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; }
.primary-nav a { position: relative; display: inline-block; padding: 29px 0; font-size: .87rem; font-weight: 750; letter-spacing: .025em; text-transform: uppercase; }
.primary-nav a::after { content: ""; position: absolute; right: 0; bottom: 21px; left: 0; height: 3px; transform: scaleX(0); transform-origin: left; background: var(--magenta); transition: transform .2s ease; }
.primary-nav a:hover::after, .primary-nav .current-menu-item > a::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions > a { display: inline-flex; align-items: center; gap: 7px; min-height: 42px; padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; font-size: .78rem; font-weight: 750; text-transform: uppercase; }
.cart-link { position: relative; }
.cart-count { display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 50%; color: #fff; background: var(--magenta); font-size: .67rem; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 50%; color: #fff; background: var(--black); cursor: pointer; }
.menu-toggle > span:not(.screen-reader-text) { display: block; width: 100%; height: 2px; margin: 4px 0; background: #fff; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .wp-element-button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 14px 25px; border: 2px solid transparent; border-radius: 7px; font-weight: 800; letter-spacing: .02em; line-height: 1.2; text-align: center; text-transform: uppercase; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0, 0, 0, .18); }
.button-cmyk { color: #fff; background: var(--magenta); box-shadow: 6px 6px 0 var(--yellow), -2px -2px 0 var(--cyan); }
.button-cmyk:hover { color: #fff; box-shadow: 9px 9px 0 var(--yellow), -3px -3px 0 var(--cyan); }
.button-ghost { border-color: rgba(255, 255, 255, .65); color: #fff; background: rgba(255, 255, 255, .06); backdrop-filter: blur(8px); }
.button-dark { color: #fff; background: var(--black); }
.button-white { color: var(--black); background: #fff; }
.button-row { display: flex; flex-wrap: wrap; gap: 16px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; color: #fff; font-size: .78rem; font-weight: 800; letter-spacing: .11em; line-height: 1.4; text-transform: uppercase; }
.eyebrow > span { display: block; width: 34px; height: 5px; background: linear-gradient(90deg, var(--cyan) 0 33%, var(--magenta) 33% 66%, var(--yellow) 66%); }
.eyebrow-dark { color: var(--ink); }

.hero { position: relative; min-height: min(780px, calc(100vh - 124px)); overflow: hidden; color: #fff; background: var(--black); }
.hero-photo, .hero-overlay { position: absolute; inset: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-overlay { background: linear-gradient(90deg, rgba(4, 4, 8, .96) 0%, rgba(4, 4, 8, .83) 40%, rgba(4, 4, 8, .22) 72%, rgba(4, 4, 8, .08) 100%), linear-gradient(0deg, rgba(4, 4, 8, .42), transparent 45%); }
.hero-content { position: relative; z-index: 2; display: flex; align-items: center; min-height: min(780px, calc(100vh - 124px)); padding-block: 80px; }
.hero-copy { max-width: 790px; }
.hero h1 { max-width: 780px; margin-bottom: 25px; color: #fff; text-shadow: 0 2px 18px rgba(0, 0, 0, .22); }
.hero h1::first-line { color: #fff; }
.hero-lede { max-width: 670px; margin-bottom: 34px; color: rgba(255, 255, 255, .88); font-size: clamp(1.08rem, 2vw, 1.36rem); }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 26px; margin: 34px 0 0; padding: 0; list-style: none; color: rgba(255, 255, 255, .88); font-size: .78rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points span { color: var(--yellow); }
.hero-cmyk, .footer-cmyk { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(4, 1fr); height: 8px; }
.hero-cmyk span:nth-child(1), .footer-cmyk span:nth-child(1) { background: var(--cyan); }
.hero-cmyk span:nth-child(2), .footer-cmyk span:nth-child(2) { background: var(--magenta); }
.hero-cmyk span:nth-child(3), .footer-cmyk span:nth-child(3) { background: var(--yellow); }
.hero-cmyk span:nth-child(4), .footer-cmyk span:nth-child(4) { background: #08080a; }
.audience-strip { color: #fff; background: var(--black); }
.audience-inner { display: flex; align-items: center; justify-content: center; gap: 24px 34px; min-height: 78px; flex-wrap: wrap; }
.audience-inner strong { color: var(--yellow); font-size: .73rem; letter-spacing: .14em; text-transform: uppercase; }
.audience-inner span { position: relative; font-size: .86rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.audience-inner span::before { content: "•"; position: absolute; left: -20px; color: var(--magenta); }

.section-heading { max-width: 850px; margin-bottom: 54px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; }
.centered { margin-right: auto; margin-left: auto; text-align: center; }
.centered .eyebrow { justify-content: center; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr); align-items: end; max-width: none; gap: 70px; }
.split-heading > p { margin-bottom: 8px; }
.intro-section { background: #fff; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.benefit-card { position: relative; min-height: 290px; padding: 34px 30px; border-right: 1px solid var(--line); background: #fff; }
.benefit-card:last-child { border-right: 0; }
.benefit-card::after { content: ""; position: absolute; inset: auto 0 0; height: 7px; background: var(--cyan); }
.m-card::after { background: var(--magenta); }.y-card::after { background: var(--yellow); }.k-card::after { background: var(--black); }
.benefit-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 54px; border-radius: 50%; color: #fff; background: var(--cyan); font-family: var(--display-font); font-weight: 800; }
.m-card .benefit-icon { background: var(--magenta); }.y-card .benefit-icon { color: var(--black); background: var(--yellow); }.k-card .benefit-icon { background: var(--black); }
.benefit-card p { margin-bottom: 0; color: var(--muted); font-size: .94rem; }

.product-paths { background: var(--soft); }
.hot-peel-heading { max-width: 900px; margin-bottom: 32px; }
.hot-peel-heading h2 { margin-bottom: 18px; }
.hot-peel-heading .hot-peel-system { display: inline-flex; align-items: center; justify-content: center; margin: 0 0 22px; padding: 10px 20px; border-radius: 999px; color: #fff; background: var(--black); box-shadow: 4px 0 0 var(--magenta), -4px 0 0 var(--cyan), 0 4px 0 var(--yellow); font-size: .78rem; font-weight: 850; letter-spacing: .13em; line-height: 1.2; text-transform: uppercase; }
.hot-peel-heading .hot-peel-intro { max-width: 790px; margin: 0 auto; color: var(--muted); font-size: 1.08rem; }
.hot-peel-workflow { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.hot-peel-workflow h3 { margin-bottom: 9px; }
.hot-peel-workflow p { margin: 0; color: var(--muted); }
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.path-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 13px 35px rgba(0, 0, 0, .07); transition: transform .22s ease, box-shadow .22s ease; }
.path-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.path-image { position: relative; aspect-ratio: 1; height: auto; overflow: hidden; background: #ddd; }
.path-image img { width: 100%; height: 100%; object-fit: cover; }
.path-body { position: relative; padding: 30px; }
.path-number { position: absolute; top: 26px; right: 28px; color: #d5d5dc; font-family: var(--display-font); font-size: 2rem; font-weight: 800; }
.path-body h3 { padding-right: 45px; }
.path-body > p:not(.path-number) { min-height: 78px; color: var(--muted); font-size: .94rem; }
.path-body a, .text-link { color: var(--magenta); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.path-body a span { display: inline-block; margin-left: 4px; transition: transform .18s ease; }
.path-body a:hover span { transform: translateX(5px); }

.process-section { background: #fff; }
.process-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: center; gap: clamp(50px, 8vw, 105px); }
.process-media { position: relative; }
.process-media::before { content: ""; position: absolute; z-index: 0; top: -22px; right: 25%; bottom: 20%; left: -22px; background: repeating-linear-gradient(135deg, var(--cyan) 0 8px, transparent 8px 16px); opacity: .22; }
.process-media img { position: relative; z-index: 1; aspect-ratio: 4 / 5; width: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.process-badge { position: absolute; z-index: 2; right: -24px; bottom: 36px; display: flex; align-items: center; gap: 10px; padding: 18px 24px; color: var(--black); background: var(--yellow); box-shadow: 8px 8px 0 var(--magenta); text-transform: uppercase; }
.process-badge strong { font-family: var(--display-font); font-size: 2.7rem; font-weight: 800; line-height: 1; }
.process-badge span { max-width: 70px; font-size: .74rem; font-weight: 800; line-height: 1.15; }
.process-copy h2 { margin-bottom: 35px; }
.process-list { margin: 0 0 38px; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 55px 1fr; gap: 18px; padding: 24px 0; border-top: 1px solid var(--line); }
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--magenta); font-family: var(--display-font); font-size: 1.8rem; font-weight: 800; }
.process-list p { margin: 0; color: var(--muted); }

.press-guide { position: relative; overflow: hidden; padding: 72px 0; color: #fff; background: var(--black); }
.press-guide::before { content: "CMYK"; position: absolute; top: -42px; right: -16px; color: rgba(255, 255, 255, .035); font-family: var(--display-font); font-size: 17rem; font-weight: 800; line-height: 1; }
.press-guide-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); align-items: center; gap: 70px; }
.press-guide h2 { color: #fff; }
.press-guide p { max-width: 700px; color: rgba(255, 255, 255, .72); }
.press-stats { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255, 255, 255, .2); }
.press-stats > div { padding: 27px 17px; border-right: 1px solid rgba(255, 255, 255, .2); text-align: center; }
.press-stats > div:last-child { border-right: 0; }
.press-stats strong { display: block; margin-bottom: 6px; color: var(--yellow); font-family: var(--display-font); font-size: clamp(1.55rem, 3vw, 2.4rem); font-weight: 800; }
.press-stats span { color: rgba(255, 255, 255, .7); font-size: .67rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

.feature-layout { display: grid; grid-template-columns: 1fr minmax(280px, .85fr) 1fr; align-items: center; gap: 40px; }
.feature-image { position: relative; }
.feature-image::before, .feature-image::after { content: ""; position: absolute; width: 88px; height: 88px; }
.feature-image::before { top: -13px; left: -13px; border-top: 8px solid var(--cyan); border-left: 8px solid var(--cyan); }
.feature-image::after { right: -13px; bottom: -13px; border-right: 8px solid var(--magenta); border-bottom: 8px solid var(--magenta); }
.feature-image img { aspect-ratio: 1; object-fit: cover; border-radius: 50%; }
.feature-column article { display: grid; grid-template-columns: 48px 1fr; gap: 17px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.feature-column article > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: #fff; background: var(--black); font-size: .7rem; font-weight: 800; }
.feature-column:first-child article:nth-child(1) > span { background: var(--cyan-dark); }.feature-column:first-child article:nth-child(2) > span { background: var(--magenta); }.feature-column:first-child article:nth-child(3) > span { color: var(--black); background: var(--yellow); }
.feature-column:last-child article:nth-child(1) > span { color: var(--black); background: var(--yellow); }.feature-column:last-child article:nth-child(2) > span { background: var(--cyan-dark); }.feature-column:last-child article:nth-child(3) > span { background: var(--magenta); }
.feature-column p { margin: 0; color: var(--muted); font-size: .9rem; }

.gallery-section { color: #fff; background: var(--black); }
.light-heading h2 { color: #fff; }
.light-heading > p { color: rgba(255, 255, 255, .68) !important; }
.mosaic-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 320px; gap: 16px; }
.mosaic-gallery figure { position: relative; margin: 0; overflow: hidden; border-radius: 12px; }
.mosaic-gallery .mosaic-wide { grid-column: span 2; }
.mosaic-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.mosaic-gallery figure:hover img { transform: scale(1.04); }
.mosaic-gallery figcaption { position: absolute; right: 16px; bottom: 16px; left: 16px; padding: 12px 15px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 7px; background: rgba(8, 8, 12, .74); backdrop-filter: blur(8px); font-size: .72rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.studio-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin: 55px 0 22px; }
.studio-heading h3 { margin: 0; color: #fff; }
.studio-heading p { margin: 0; color: rgba(255, 255, 255, .62); font-size: .9rem; }
.studio-strip { display: grid; grid-auto-columns: minmax(210px, 1fr); grid-auto-flow: column; gap: 14px; overflow-x: auto; padding: 0 0 18px; scroll-snap-type: x mandatory; scrollbar-color: var(--magenta) rgba(255,255,255,.1); }
.studio-strip figure { position: relative; min-height: 245px; margin: 0; overflow: hidden; border-radius: 10px; scroll-snap-align: start; }
.studio-strip img { width: 100%; height: 100%; min-height: 245px; object-fit: cover; }
.studio-strip figcaption { position: absolute; right: 10px; bottom: 10px; left: 10px; padding: 9px 10px; border-radius: 5px; background: rgba(8, 8, 12, .78); font-size: .65rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

.color-splash-section { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f3f3f7 100%); }
.color-splash-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 8% 15%, rgba(0, 191, 232, .1), transparent 28%), radial-gradient(circle at 92% 18%, rgba(242, 10, 120, .1), transparent 28%), radial-gradient(circle at 50% 100%, rgba(255, 214, 0, .1), transparent 32%); }
.color-splash-section > .container { position: relative; }
.color-splash-heading { max-width: 900px; margin-bottom: 48px; }
.color-splash-heading h2 { margin-bottom: 18px; }
.color-splash-heading .color-splash-system { display: inline-flex; align-items: center; justify-content: center; margin: 0 0 22px; padding: 10px 20px; border-radius: 999px; color: #fff; background: var(--black); box-shadow: 4px 0 0 var(--magenta), -4px 0 0 var(--cyan), 0 4px 0 var(--yellow); font-size: .78rem; font-weight: 850; letter-spacing: .13em; line-height: 1.2; text-transform: uppercase; }
.color-splash-heading .color-splash-intro { max-width: 790px; margin: 0 auto; color: var(--muted); font-size: 1.08rem; }
.color-splash-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 24px; max-width: 1180px; margin: 0 auto; }
.color-splash-card { display: flex; overflow: hidden; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 15px 42px rgba(9, 9, 15, .09); text-align: center; transition: transform .22s ease, box-shadow .22s ease; }
.color-splash-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.color-splash-image { aspect-ratio: 1; overflow: hidden; background: #050508; }
.color-splash-image img { width: 100%; height: 100%; object-fit: cover; }
.color-splash-body { display: flex; flex: 1; align-items: center; flex-direction: column; padding: 28px 28px 32px; }
.color-splash-label { display: inline-block; margin-bottom: 14px; color: var(--magenta); font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.color-splash-body h3 { margin-bottom: 13px; }
.color-splash-body p { flex: 1; max-width: 330px; margin: 0 0 22px; color: var(--muted); font-size: .92rem; }
.color-splash-link { display: inline-flex; align-items: center; justify-content: center; gap: 5px; color: var(--magenta); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.color-splash-link span { display: inline-block; transition: transform .18s ease; }
.color-splash-link:hover span { transform: translateX(5px); }
.color-splash-features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 1040px; gap: 1px; margin: 38px auto 0; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--line); list-style: none; }
.color-splash-features li { display: flex; align-items: center; flex-direction: column; min-height: 150px; padding: 27px 24px; background: rgba(255, 255, 255, .94); text-align: center; }
.color-splash-features strong { display: block; margin-bottom: 9px; color: var(--black); font-family: var(--display-font); font-size: 1rem; font-weight: 800; }
.color-splash-features span { max-width: 280px; color: var(--muted); font-size: .84rem; }

.review-section { background: var(--soft); }
.review-section > .container { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); gap: 60px; }
.review-summary > p { color: var(--muted); }
.rating { color: var(--magenta); font-size: 1.45rem; letter-spacing: .12em; }
.review-carousel { position: relative; min-width: 0; }
.review-carousel::after { content: ""; position: absolute; z-index: 2; top: 35px; bottom: 0; left: 0; width: 76px; pointer-events: none; opacity: 0; background: linear-gradient(90deg, var(--soft) 0%, rgba(244, 244, 247, .88) 38%, rgba(244, 244, 247, 0) 100%); transition: opacity .28s ease; }
.review-carousel.is-scrolled::after { opacity: 1; }
.review-carousel-count { margin-bottom: 12px; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.review-grid:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.review-grid { display: grid; grid-auto-columns: calc((100% - 16px) / 2); grid-auto-flow: column; gap: 16px; overflow-x: auto; padding: 8px 10px 18px; scroll-padding-inline: 10px; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-inline: contain; }
.review-grid::-webkit-scrollbar { display: none; }
.review-grid blockquote { display: flex; flex-direction: column; justify-content: space-between; min-height: 310px; margin: 0; padding: 28px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 10px 30px rgba(0, 0, 0, .05); scroll-snap-align: start; }
.review-grid blockquote div { color: var(--yellow); text-shadow: 0 1px #b18400; }
.review-grid blockquote p { flex: 1; font-size: .96rem; }
.reviewer { display: flex; align-items: center; gap: 15px; margin-top: 22px; }
.review-avatar { flex: 0 0 auto; width: 62px; height: 62px; border: 3px solid #fff; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px var(--cyan), 4px 4px 0 var(--magenta); }
.review-grid cite { color: var(--muted); font-size: .7rem; font-style: normal; font-weight: 800; letter-spacing: .07em; line-height: 1.35; text-transform: uppercase; }

.faq-layout { display: grid; grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr); gap: 90px; }
.faq-intro > p { color: var(--muted); }
.accordion-list details { border-top: 1px solid var(--line); }
.accordion-list details:last-child { border-bottom: 1px solid var(--line); }
.accordion-list summary { display: flex; justify-content: space-between; gap: 30px; padding: 24px 0; cursor: pointer; color: var(--black); font-family: var(--display-font); font-size: 1rem; font-weight: 750; line-height: 1.35; list-style: none; }
.accordion-list summary::-webkit-details-marker { display: none; }
.accordion-list summary span { color: var(--magenta); font-size: 1.5rem; transition: transform .18s ease; }
.accordion-list details[open] summary span { transform: rotate(45deg); }
.accordion-list details p { max-width: 680px; padding: 0 40px 22px 0; color: var(--muted); }

.final-cta { position: relative; min-height: 620px; overflow: hidden; color: #fff; background: #050507; }
.final-cta > img, .final-cta-overlay { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.final-cta > img { object-position: center 45%; }
.final-cta-overlay { background: linear-gradient(90deg, rgba(5, 5, 8, .95), rgba(5, 5, 8, .76) 50%, rgba(5, 5, 8, .2)), linear-gradient(0deg, rgba(5, 5, 8, .3), transparent); }
.final-cta-content { position: relative; display: flex; flex-direction: column; justify-content: center; min-height: 620px; }
.final-cta h2 { max-width: 740px; color: #fff; }
.final-cta-content > p:not(.eyebrow) { max-width: 640px; color: rgba(255, 255, 255, .78); font-size: 1.08rem; }

.site-footer { position: relative; padding: 82px 0 25px; color: rgba(255, 255, 255, .72); background: #08080c; }
.site-footer .footer-cmyk { top: 0; bottom: auto; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-logo { display: inline-block; width: min(100%, 320px); margin-bottom: 22px; padding: 12px 15px; border-radius: 9px; background: #fff; line-height: 0; }
.footer-logo img { width: 100%; height: auto; }
.footer-brand p { max-width: 300px; }
.site-footer h2 { color: #fff; font-family: var(--display-font); font-size: .82rem; font-weight: 800; letter-spacing: .06em; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-bottom: 7px; }
.site-footer a:hover { color: var(--yellow); }
.footer-contact .button:hover { color: var(--black); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .75rem; }
.footer-bottom p { margin: 0; }
.footer-bottom .menu { display: flex; gap: 20px; }

.content-main, .shop-main { min-height: 60vh; padding: 80px 0 110px; }
.entry-page, .entry-single { max-width: 900px; }
.entry-header { margin-bottom: 42px; text-align: center; }
.entry-header h1, .archive-header h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); }
.entry-hero { margin-bottom: 45px; overflow: hidden; border-radius: var(--radius); }
.entry-content { font-size: 1.05rem; }
.entry-content > * { max-width: 760px; margin-right: auto; margin-left: auto; }
.entry-content > .alignwide { max-width: var(--max); }
.entry-content > .alignfull { max-width: none; }
.entry-content h2 { margin-top: 1.2em; font-size: 2.6rem; }
.entry-content h3 { margin-top: 1.2em; }
.entry-content a { color: var(--magenta); text-decoration: underline; }
.archive-header { margin-bottom: 44px; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.article-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.article-image { display: block; height: 240px; overflow: hidden; }
.article-image img { width: 100%; height: 100%; object-fit: cover; }
.article-body { padding: 28px; }
.article-meta { color: var(--magenta); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-card h2 { font-size: 1.65rem; }
.article-card h2 a:hover { color: var(--magenta); }
.article-card p { color: var(--muted); }
.nav-links { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; }
.comments-area { margin-top: 70px; padding-top: 45px; border-top: 1px solid var(--line); }

/* WooCommerce */
.woocommerce .woocommerce-breadcrumb { margin-bottom: 25px; color: var(--muted); font-size: .78rem; }
.woocommerce .woocommerce-breadcrumb a { color: var(--magenta); }
.woocommerce-products-header__title { margin-bottom: 35px; font-size: clamp(3rem, 6vw, 5.4rem); }
.woocommerce .woocommerce-result-count { color: var(--muted); }
.woocommerce .woocommerce-ordering select { min-height: 44px; padding: 8px 34px 8px 12px; border: 1px solid var(--line); border-radius: 5px; background: #fff; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3, 1fr); clear: both; gap: 28px; margin-top: 40px; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product { float: none; width: auto; margin: 0; padding-bottom: 22px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; transition: box-shadow .2s ease, transform .2s ease; }
.woocommerce ul.products li.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.woocommerce ul.products li.product a img { aspect-ratio: 1; margin: 0 0 20px; object-fit: cover; background: var(--soft); }
.woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product .price, .woocommerce ul.products li.product .button { margin-right: 20px; margin-left: 20px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { color: var(--black); font-family: var(--display-font); font-size: 1rem; font-weight: 750; line-height: 1.35; }
.woocommerce ul.products li.product .price { color: var(--magenta); font-weight: 800; }
.woocommerce ul.products li.product .button { min-height: 44px; padding: 11px 16px; color: #fff; background: var(--black); font-size: .72rem; }
.woocommerce span.onsale { top: 12px; right: auto; left: 12px; min-width: auto; min-height: auto; padding: 8px 11px; border-radius: 4px; color: var(--black); background: var(--yellow); font-size: .7rem; font-weight: 800; line-height: 1; text-transform: uppercase; }
.woocommerce div.product div.images img { border-radius: 14px; }
.woocommerce div.product .product_title { font-size: clamp(2.4rem, 5vw, 4.3rem); }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--magenta); font-size: 1.5rem; font-weight: 800; }
.woocommerce div.product form.cart .button, .woocommerce a.checkout-button, .woocommerce button.button.alt { color: #fff; background: var(--magenta); }
.woocommerce div.product form.cart input.qty { min-height: 54px; border: 1px solid var(--line); }
.woocommerce-message, .woocommerce-info { border-top-color: var(--cyan); background: var(--soft); }
.woocommerce-message::before, .woocommerce-info::before { color: var(--cyan-dark); }
.woocommerce table.shop_table { border-color: var(--line); border-radius: 10px; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select { min-height: 48px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 5px; }
.woocommerce-checkout #payment { background: var(--soft); }
.woocommerce-account .woocommerce-MyAccount-navigation ul { margin: 0; padding: 0; list-style: none; }
.woocommerce-account .woocommerce-MyAccount-navigation a { display: block; padding: 12px 16px; border-bottom: 1px solid var(--line); font-weight: 800; }
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a { color: #fff; background: var(--black); }
.latest-products .woocommerce ul.products { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1080px) {
  .header-inner { gap: 18px; }
  .primary-nav ul { gap: 18px; }
  .action-label { display: none; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-card:nth-child(2) { border-right: 0; }
  .benefit-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .feature-layout { grid-template-columns: 1fr 1fr; }
  .feature-image { grid-row: span 2; }
  .feature-column:last-child { grid-column: 2; }
  .review-section > .container { grid-template-columns: 1fr; }
  .review-summary { max-width: 720px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .announcement-inner { justify-content: center; text-align: center; }
  .announcement a { display: none; }
  .header-inner { grid-template-columns: auto auto 1fr; min-height: 70px; gap: 12px; }
  .brand-logo { width: clamp(170px, 42vw, 225px); }
  .header-actions > a { padding-right: 8px; padding-left: 8px; }
  .menu-toggle { display: block; grid-column: 2; grid-row: 1; }
  .primary-nav { position: absolute; z-index: 100; top: 100%; right: 0; left: 0; display: none; width: 100%; height: calc(100vh - 70px); height: calc(100dvh - 70px); max-height: calc(100dvh - 70px); padding: 24px max(24px, calc((100vw - var(--max)) / 2)); overflow-y: auto; overscroll-behavior: contain; color: var(--black); background: #fff; border-top: 1px solid var(--line); box-shadow: 0 24px 45px rgba(0, 0, 0, .18); justify-self: stretch; }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { display: block; width: min(100%, 720px); margin: 0 auto; }
  .primary-nav li { border-bottom: 1px solid var(--line); }
  .primary-nav a { display: block; padding: 19px 6px; color: var(--black); font-size: 1.05rem; font-weight: 750; line-height: 1.35; }
  .primary-nav a::after { display: none; }
  .header-actions { justify-self: end; }
  .account-link { display: none !important; }
  .hero, .hero-content { min-height: 720px; }
  .hero-photo img { object-position: 60% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(4,4,8,.94), rgba(4,4,8,.7)), linear-gradient(0deg, rgba(4,4,8,.52), transparent); }
  .audience-inner { gap: 14px 28px; padding-block: 20px; }
  .audience-inner strong { width: 100%; text-align: center; }
  .split-heading, .process-layout, .press-guide-inner, .faq-layout { grid-template-columns: 1fr; }
  .split-heading, .process-layout, .press-guide-inner, .faq-layout { gap: 42px; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card { display: grid; grid-template-columns: .9fr 1.1fr; }
  .path-image { height: 100%; min-height: 280px; }
  .process-media { max-width: 620px; }
  .press-stats { max-width: 620px; }
  .feature-layout { grid-template-columns: 1fr; }
  .feature-image { grid-row: auto; max-width: 500px; margin: 0 auto; }
  .feature-column:last-child { grid-column: auto; }
  .mosaic-gallery { grid-template-columns: repeat(2, 1fr); }
  .mosaic-gallery .mosaic-wide { grid-column: span 2; }
  .studio-heading { align-items: flex-start; flex-direction: column; }
  .color-splash-grid { grid-template-columns: 1fr; max-width: 620px; }
  .color-splash-features { grid-template-columns: 1fr; max-width: 620px; }
  .review-grid { grid-auto-columns: calc((100% - 16px) / 2); }
  .review-grid blockquote { min-height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .woocommerce ul.products, .latest-products .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(2.5rem, 10.8vw, 3.45rem); line-height: 1.12; letter-spacing: -.03em; }
  h2 { font-size: clamp(2rem, 8.8vw, 2.85rem); line-height: 1.14; letter-spacing: -.02em; }
  .brand-logo { width: clamp(150px, 45vw, 188px); }
  .section { padding: 72px 0; }
  .announcement { font-size: .66rem; }
  .header-actions { gap: 0; }
  .hero, .hero-content { min-height: 700px; }
  .hero-content { padding-block: 66px; align-items: flex-end; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .button { width: 100%; }
  .hero-points { display: grid; grid-template-columns: 1fr; }
  .audience-inner span { width: calc(50% - 16px); text-align: center; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit-icon { margin-bottom: 32px; }
  .path-card { display: block; }
  .path-image { aspect-ratio: 1; height: auto; min-height: 0; }
  .path-body > p:not(.path-number) { min-height: 0; }
  .color-splash-body { padding: 25px 22px 28px; }
  .color-splash-features li { min-height: 0; }
  .review-grid { grid-auto-columns: 88%; }
  .review-carousel::after { width: 48px; }
  .review-avatar { width: 56px; height: 56px; }
  .process-badge { right: 12px; }
  .press-stats { grid-template-columns: 1fr; }
  .press-stats > div { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .2); }
  .press-stats > div:last-child { border-bottom: 0; }
  .mosaic-gallery { display: block; }
  .mosaic-gallery figure { height: 300px; margin-bottom: 14px; }
  .final-cta, .final-cta-content { min-height: 650px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand, .footer-contact { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .article-grid, .woocommerce ul.products, .latest-products .woocommerce ul.products { grid-template-columns: 1fr; }
  .woocommerce .woocommerce-ordering, .woocommerce .woocommerce-result-count { float: none; }
}

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