:root {
  --ink: #142018;
  --ink-soft: #334039;
  --muted: #6a756e;
  --paper: #fbfaf5;
  --paper-2: #f1f4ed;
  --sage: #dfe9dc;
  --sage-deep: #b9cdb5;
  --lime: #d8ff65;
  --lime-deep: #b9e93d;
  --orange: #ff6b3d;
  --white: #ffffff;
  --line: rgba(20, 32, 24, .12);
  --shadow: 0 24px 70px rgba(20, 32, 24, .11);
  --shadow-soft: 0 14px 38px rgba(20, 32, 24, .08);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
  --header-h: 72px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.cart-open, body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(255, 107, 61, .42);
  outline-offset: 3px;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-head { max-width: 720px; margin-bottom: 38px; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: #31513d;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section-kicker::before { content: ""; width: 26px; height: 2px; background: var(--orange); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.24; letter-spacing: -.035em; }
h1 { font-size: clamp(2.5rem, 6.2vw, 5.6rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 900; }
h3 { font-size: 1.25rem; font-weight: 800; }
.lede { color: var(--muted); font-size: clamp(1rem, 1.7vw, 1.13rem); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--ink); background: var(--lime); box-shadow: 0 10px 26px rgba(185, 233, 61, .25); }
.btn-primary:hover { background: var(--lime-deep); box-shadow: 0 14px 34px rgba(185, 233, 61, .34); }
.btn-dark { color: var(--white); background: var(--ink); box-shadow: 0 10px 25px rgba(20, 32, 24, .18); }
.btn-dark:hover { background: #25352a; }
.btn-ghost { color: var(--ink); background: rgba(255,255,255,.62); border-color: var(--line); }
.btn-ghost:hover { background: var(--white); }
.btn-block { width: 100%; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .8rem;
  font-weight: 800;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,107,61,.13); }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.announcement {
  position: relative;
  z-index: 50;
  background: var(--ink);
  color: #eaf5e8;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.announcement .container { display: flex; justify-content: center; gap: 24px; min-height: 36px; align-items: center; text-align: center; }
.announcement span { white-space: nowrap; }
.announcement span + span::before { content: "•"; margin-right: 24px; color: var(--lime); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(251, 250, 245, .84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 28px rgba(20,32,24,.06); }
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: .13em; font-size: .93rem; }
.brand-mark { width: 32px; height: 32px; border-radius: 11px; background: var(--ink); color: var(--lime); display: grid; place-items: center; font-size: .78rem; letter-spacing: 0; }
.nav { display: flex; align-items: center; gap: 25px; color: var(--ink-soft); font-size: .88rem; font-weight: 700; }
.nav a { position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--orange); transition: right .25s var(--ease); }
.nav a:hover::after { right: 0; }
.header-cta { display: flex; align-items: center; gap: 10px; }
.cart-button { position: relative; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.72); display: grid; place-items: center; }
.cart-button svg { width: 21px; height: 21px; }
.cart-count { position: absolute; right: -3px; top: -3px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: var(--orange); color: white; font-size: .68rem; font-weight: 900; display: grid; place-items: center; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.72); }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 19px; height: 2px; margin: 4px auto; background: var(--ink); transition: transform .25s, opacity .25s; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }
.hero { position: relative; overflow: hidden; padding: 76px 0 84px; background: linear-gradient(145deg, #fbfaf5 0%, #edf4ea 54%, #e5eee2 100%); }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; right: -190px; top: -170px; border-radius: 50%; background: rgba(216,255,101,.48); filter: blur(2px); }
.hero::after { content: ""; position: absolute; width: 290px; height: 290px; left: -130px; bottom: -140px; border-radius: 50%; border: 1px solid rgba(20,32,24,.12); box-shadow: 0 0 0 34px rgba(20,32,24,.025), 0 0 0 68px rgba(20,32,24,.02); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); gap: 62px; align-items: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 23px; }
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { display: block; color: #3d6e4d; }
.hero .lede { max-width: 620px; margin-bottom: 24px; }
.hero-checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 16px; margin: 22px 0 26px; padding: 0; list-style: none; }
.hero-checks li { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: .9rem; }
.hero-checks li::before { content: "✓"; width: 21px; height: 21px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: var(--lime); font-size: .7rem; flex: 0 0 auto; }
.price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 19px; }
.price { font-size: clamp(2rem, 4vw, 3.15rem); font-weight: 900; letter-spacing: -.05em; line-height: 1; }
.price-note { color: var(--muted); font-size: .88rem; font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.microcopy { display: flex; flex-wrap: wrap; gap: 13px 18px; color: var(--muted); font-size: .78rem; font-weight: 700; }
.microcopy span { display: inline-flex; align-items: center; gap: 6px; }
.microcopy span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.hero-visual { position: relative; }
.hero-product-card { position: relative; padding: 22px; border-radius: 40px; background: rgba(255,255,255,.68); border: 1px solid rgba(255,255,255,.85); box-shadow: var(--shadow); }
.hero-product-card::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(20,32,24,.08); border-radius: 31px; pointer-events: none; }
.hero-product-image { position: relative; overflow: hidden; border-radius: 30px; background: #e7ece3; aspect-ratio: 1/1; }
.hero-product-image img { width: 100%; height: 100%; object-fit: contain; transform: scale(1.02); transition: opacity .25s, transform .45s var(--ease); }
.hero-product-image.is-changing img { opacity: .35; transform: scale(.98); }
.floating-card { position: absolute; display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: rgba(255,255,255,.94); border: 1px solid var(--line); border-radius: 17px; box-shadow: var(--shadow-soft); font-size: .78rem; font-weight: 800; backdrop-filter: blur(10px); }
.floating-card strong { display: block; font-size: .98rem; line-height: 1.15; }
.floating-range { right: -24px; top: 19%; }
.floating-fold { left: -22px; bottom: 16%; }
.floating-icon { width: 34px; height: 34px; border-radius: 12px; display: grid; place-items: center; background: var(--lime); color: var(--ink); flex: 0 0 auto; }
.hero-color-picker { margin-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.hero-color-label { color: var(--muted); font-size: .78rem; font-weight: 800; }
.color-swatches { display: flex; gap: 9px; }
.swatch { width: 32px; height: 32px; padding: 0; border-radius: 50%; border: 2px solid transparent; background: var(--swatch); box-shadow: inset 0 0 0 1px rgba(0,0,0,.13); transition: transform .25s, border-color .25s; }
.swatch:hover { transform: scale(1.08); }
.swatch[aria-pressed="true"] { border-color: var(--ink); transform: scale(1.08); }
.trust-strip { background: var(--ink); color: #f4faef; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 122px; padding: 27px 25px; display: flex; gap: 13px; align-items: flex-start; border-right: 1px solid rgba(255,255,255,.12); }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 37px; height: 37px; border-radius: 12px; display: grid; place-items: center; background: rgba(216,255,101,.12); color: var(--lime); flex: 0 0 auto; }
.trust-item h3 { color: white; font-size: .98rem; margin: 1px 0 5px; letter-spacing: -.01em; }
.trust-item p { color: rgba(244,250,239,.63); font-size: .78rem; margin: 0; line-height: 1.6; }
.section-alt { background: var(--paper-2); }
.feature-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.feature-card { position: relative; overflow: hidden; min-height: 310px; padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--white); box-shadow: 0 12px 36px rgba(20,32,24,.05); }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { color: var(--muted); margin-bottom: 0; font-size: .9rem; }
.feature-card .feature-number { position: absolute; right: 22px; top: 20px; color: rgba(20,32,24,.08); font-size: 3.4rem; line-height: 1; font-weight: 900; }
.feature-card.span-7 { grid-column: span 7; }
.feature-card.span-5 { grid-column: span 5; }
.feature-card.span-4 { grid-column: span 4; }
.feature-card.span-8 { grid-column: span 8; }
.feature-card.span-6 { grid-column: span 6; }
.feature-card.image-card { padding: 0; color: white; display: flex; align-items: flex-end; background: #1b271e; }
.feature-card.image-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.feature-card.image-card:hover img { transform: scale(1.035); }
.feature-card.image-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,19,14,.05) 20%, rgba(12,19,14,.83) 100%); }
.feature-card.image-card .feature-content { position: relative; z-index: 1; padding: 30px; }
.feature-card.image-card p { color: rgba(255,255,255,.78); }
.feature-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 15px; background: var(--sage); margin-bottom: 24px; }
.feature-icon svg { width: 24px; height: 24px; }
.feature-wide { display: grid; grid-template-columns: 1.03fr .97fr; overflow: hidden; min-height: 560px; border-radius: 36px; background: var(--ink); color: white; box-shadow: var(--shadow); }
.feature-wide-copy { padding: clamp(34px, 6vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.feature-wide-copy h2 { color: white; margin-bottom: 20px; }
.feature-wide-copy p { color: rgba(255,255,255,.7); }
.feature-wide-image { min-height: 480px; position: relative; overflow: hidden; }
.feature-wide-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-list { display: grid; gap: 13px; margin-top: 25px; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.9); font-size: .9rem; font-weight: 700; }
.feature-list li::before { content: "✓"; width: 20px; height: 20px; border-radius: 50%; flex: 0 0 auto; display: grid; place-items: center; background: var(--lime); color: var(--ink); font-size: .68rem; }
.color-section { padding: 86px 0; background: #f4f6f0; }
.color-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 48px; align-items: center; }
.color-panel { background: white; padding: 26px; border-radius: 32px; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.color-image { aspect-ratio: 1/1; border-radius: 24px; overflow: hidden; background: #edf1ea; }
.color-image img { width: 100%; height: 100%; object-fit: contain; transition: opacity .25s, transform .4s var(--ease); }
.color-image.is-changing img { opacity: .25; transform: scale(.97); }
.color-tabs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; margin-top: 14px; }
.color-tab { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 14px; background: white; text-align: left; font-size: .78rem; font-weight: 800; }
.color-tab::before { content: ""; width: 20px; height: 20px; border-radius: 50%; background: var(--tab-color); box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); flex: 0 0 auto; }
.color-tab[aria-pressed="true"] { border-color: var(--ink); background: #f4f8ef; }
.color-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 21px; }
.color-steps li { display: grid; grid-template-columns: 46px 1fr; gap: 16px; }
.step-num { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 15px; color: var(--ink); background: var(--lime); font-weight: 900; }
.color-steps h3 { margin: 3px 0 3px; }
.color-steps p { margin: 0; color: var(--muted); font-size: .88rem; }
.lifestyle-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px; }
.lifestyle-card { position: relative; overflow: hidden; min-height: 340px; border-radius: 30px; background: #dce5d9; }
.lifestyle-card.tall { grid-row: span 2; min-height: 700px; }
.lifestyle-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .7s var(--ease); }
.lifestyle-card:hover img { transform: scale(1.04); }
.lifestyle-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(7,13,9,.7)); }
.lifestyle-copy { position: absolute; z-index: 1; left: 25px; right: 25px; bottom: 24px; color: white; }
.lifestyle-copy h3 { margin-bottom: 2px; }
.lifestyle-copy p { margin: 0; font-size: .82rem; color: rgba(255,255,255,.74); }
.spec-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: start; }
.spec-image { position: sticky; top: calc(var(--header-h) + 24px); border-radius: 32px; overflow: hidden; background: #edf1e9; box-shadow: var(--shadow-soft); }
.spec-table { width: 100%; border-collapse: collapse; background: white; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-soft); }
.spec-table th, .spec-table td { padding: 17px 19px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { width: 38%; background: #f0f4ed; color: var(--ink-soft); font-size: .82rem; font-weight: 800; }
.spec-table td { font-size: .9rem; font-weight: 700; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.note { margin-top: 17px; color: var(--muted); font-size: .76rem; }
.recommend-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.recommend-card { padding: 28px; border-radius: 24px; background: white; border: 1px solid var(--line); }
.recommend-card .icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 15px; background: var(--sage); margin-bottom: 19px; }
.recommend-card h3 { margin-bottom: 8px; }
.recommend-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.brand-story { display: grid; grid-template-columns: .8fr 1.2fr; gap: 54px; align-items: center; }
.brand-logo-wrap { padding: 38px; border-radius: 30px; background: var(--ink); }
.brand-logo-wrap img { width: 100%; border-radius: 20px; background: white; }
.faq-list { display: grid; gap: 11px; }
.faq-item { border: 1px solid var(--line); border-radius: 17px; background: white; overflow: hidden; }
.faq-item summary { position: relative; padding: 18px 56px 18px 19px; cursor: pointer; list-style: none; font-weight: 800; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 19px; top: 15px; font-size: 1.45rem; font-weight: 400; color: var(--orange); transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 19px 19px; color: var(--muted); font-size: .89rem; }
.order-section { position: relative; overflow: hidden; padding: 96px 0; background: #e9f1e6; }
.order-section::before { content: ""; position: absolute; width: 430px; height: 430px; right: -180px; top: -180px; border-radius: 50%; background: rgba(216,255,101,.55); }
.order-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .72fr 1.28fr; gap: 45px; align-items: start; }
.order-copy { position: sticky; top: calc(var(--header-h) + 30px); }
.order-copy h2 { margin-bottom: 17px; }
.order-copy p { color: var(--ink-soft); }
.order-points { padding: 0; margin: 25px 0 0; list-style: none; display: grid; gap: 12px; }
.order-points li { display: flex; gap: 11px; font-weight: 800; font-size: .9rem; }
.order-points li::before { content: "✓"; width: 21px; height: 21px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: var(--lime); font-size: .7rem; flex: 0 0 auto; }
.order-card { padding: clamp(25px, 4vw, 42px); border-radius: 32px; background: rgba(255,255,255,.9); box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.9); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .8rem; font-weight: 800; }
.form-field label .optional { color: var(--muted); font-weight: 600; margin-left: 5px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid rgba(20,32,24,.18); border-radius: 13px; background: white; color: var(--ink); padding: 13px 14px; outline: none; transition: border-color .2s, box-shadow .2s; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: #31513d; box-shadow: 0 0 0 4px rgba(49,81,61,.1); }
.form-field textarea { min-height: 110px; resize: vertical; }
.form-note { margin: 17px 0 0; color: var(--muted); font-size: .76rem; }
.form-status { display: none; margin-top: 15px; padding: 13px 15px; border-radius: 13px; background: #f2f6ef; border: 1px solid var(--line); color: var(--ink-soft); font-size: .86rem; font-weight: 700; }
.form-status.is-visible { display: block; }
.form-status.is-error { background: #fff1ed; border-color: #ffd0c4; color: #8b2c16; }
.order-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 45px; }
.flow-step { padding: 20px; border-radius: 19px; background: rgba(255,255,255,.62); border: 1px solid var(--line); }
.flow-step b { display: block; color: var(--orange); font-size: .75rem; margin-bottom: 7px; }
.flow-step h3 { font-size: .95rem; margin-bottom: 4px; }
.flow-step p { margin: 0; color: var(--muted); font-size: .77rem; }
.site-footer { padding: 56px 0 100px; background: #101a13; color: rgba(255,255,255,.72); }
.footer-top { display: flex; justify-content: space-between; gap: 40px; align-items: flex-start; padding-bottom: 35px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand { color: white; max-width: 430px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: .81rem; color: rgba(255,255,255,.55); }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(130px, 1fr)); gap: 12px 36px; font-size: .8rem; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 25px; font-size: .73rem; color: rgba(255,255,255,.42); }
.mobile-cta { display: none; position: fixed; z-index: 80; left: 12px; right: 12px; bottom: 12px; padding: 10px; background: rgba(251,250,245,.92); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 15px 40px rgba(20,32,24,.18); backdrop-filter: blur(14px); }
.mobile-cta .btn { width: 100%; }
.cart-drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; pointer-events: none; }
.cart-drawer.is-open { visibility: visible; pointer-events: auto; }
.cart-overlay { position: absolute; inset: 0; background: rgba(9,15,11,.48); opacity: 0; transition: opacity .3s; backdrop-filter: blur(4px); }
.cart-drawer.is-open .cart-overlay { opacity: 1; }
.cart-panel { position: absolute; top: 0; right: 0; width: min(440px, 100%); height: 100%; background: var(--paper); box-shadow: -20px 0 60px rgba(0,0,0,.18); transform: translateX(100%); transition: transform .38s var(--ease); display: flex; flex-direction: column; }
.cart-drawer.is-open .cart-panel { transform: translateX(0); }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 22px 16px; border-bottom: 1px solid var(--line); }
.cart-head h2 { font-size: 1.2rem; margin: 0; }
.cart-close, .lightbox-close { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: white; display: grid; place-items: center; font-size: 1.2rem; }
.cart-body { padding: 22px; overflow: auto; flex: 1; }
.cart-empty { color: var(--muted); text-align: center; padding: 70px 20px; }
.cart-item { display: grid; grid-template-columns: 92px 1fr; gap: 15px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.cart-item-image { border-radius: 16px; overflow: hidden; background: #e9eee6; aspect-ratio: 1/1; }
.cart-item-image img { width: 100%; height: 100%; object-fit: contain; }
.cart-item h3 { font-size: .94rem; margin-bottom: 5px; }
.cart-item-meta { color: var(--muted); font-size: .78rem; margin-bottom: 10px; }
.quantity { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: white; }
.quantity button { width: 34px; height: 34px; border: 0; background: transparent; font-size: 1rem; }
.quantity span { min-width: 30px; text-align: center; font-weight: 800; font-size: .85rem; }
.cart-line-price { font-weight: 900; margin-top: 10px; }
.cart-foot { padding: 20px 22px 26px; border-top: 1px solid var(--line); background: white; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 15px; }
.cart-total span { color: var(--muted); font-size: .82rem; font-weight: 700; }
.cart-total strong { font-size: 1.55rem; letter-spacing: -.03em; }
.lightbox { position: fixed; inset: 0; z-index: 250; display: grid; place-items: center; padding: 30px; background: rgba(7,12,9,.9); visibility: hidden; opacity: 0; transition: opacity .25s; }
.lightbox.is-open { visibility: visible; opacity: 1; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 82vh; object-fit: contain; border-radius: 20px; box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.lightbox-close { position: absolute; right: 20px; top: 20px; background: rgba(255,255,255,.14); color: white; border-color: rgba(255,255,255,.25); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: white; background: rgba(255,255,255,.08); font-size: 1.25rem; }
.lightbox-nav.prev { left: 18px; }
.lightbox-nav.next { right: 18px; }
[data-animate] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-animate].is-visible { opacity: 1; transform: translateY(0); }
.page-hero { padding: 84px 0 60px; background: linear-gradient(145deg, #fbfaf5, #e8f0e6); }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 4.4rem); margin-bottom: 14px; }
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 50px; align-items: start; }
.legal-nav { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 10px; font-size: .84rem; font-weight: 800; color: var(--muted); }
.legal-nav a:hover { color: var(--ink); }
.legal-content { background: white; border: 1px solid var(--line); border-radius: 28px; padding: clamp(26px, 5vw, 56px); box-shadow: var(--shadow-soft); }
.legal-content h2 { font-size: 1.55rem; margin: 35px 0 12px; letter-spacing: -.02em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--ink-soft); font-size: .9rem; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.legal-content th, .legal-content td { padding: 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; font-size: .86rem; }
.legal-content th { width: 34%; background: #f2f5f0; }
.notice-box { margin: 20px 0; padding: 17px 19px; border-radius: 15px; background: #fff8e8; border: 1px solid #f0ddae; color: #6f5420; font-size: .84rem; }
.thank-you { min-height: 78vh; display: grid; place-items: center; padding: 80px 0; background: linear-gradient(145deg,#fbfaf5,#e8f0e6); }
.thank-card { max-width: 720px; padding: clamp(30px, 6vw, 64px); text-align: center; border-radius: 34px; background: white; box-shadow: var(--shadow); }
.thank-icon { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 22px; border-radius: 24px; background: var(--lime); font-size: 1.7rem; font-weight: 900; }
@media (max-width: 1040px) {
  .nav { display: none; position: absolute; left: 20px; right: 20px; top: calc(var(--header-h) - 2px); flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border-radius: 0 0 22px 22px; background: rgba(251,250,245,.98); border: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 10px; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 680px; margin-inline: auto; width: 100%; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .feature-card.span-7, .feature-card.span-5, .feature-card.span-4, .feature-card.span-8, .feature-card.span-6 { grid-column: span 6; }
  .color-layout, .spec-grid, .brand-story, .order-layout { grid-template-columns: 1fr; }
  .spec-image, .order-copy { position: static; }
  .order-flow { grid-template-columns: repeat(2, 1fr); }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; }
}
@media (max-width: 760px) {
  :root { --header-h: 64px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 52px 0; }
  .announcement .container { justify-content: flex-start; overflow: hidden; min-height: 34px; }
  .announcement span:nth-child(3) { display: none; }
  .header-cta .btn { display: none; }
  .hero { padding: 48px 0 65px; }
  .hero-grid { gap: 36px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4.2rem); }
  .hero-checks { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 auto; }
  .floating-range { right: -6px; top: 13%; }
  .floating-fold { left: -6px; bottom: 10%; }
  .floating-card { padding: 9px 10px; font-size: .68rem; }
  .floating-card strong { font-size: .82rem; }
  .floating-icon { width: 29px; height: 29px; }
  .hero-color-picker { align-items: flex-start; flex-direction: column; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(2) { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-item:last-child { border-bottom: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card.span-7, .feature-card.span-5, .feature-card.span-4, .feature-card.span-8, .feature-card.span-6 { grid-column: auto; }
  .feature-wide { grid-template-columns: 1fr; }
  .feature-wide-image { min-height: 360px; order: -1; }
  .color-tabs { grid-template-columns: 1fr 1fr; }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .lifestyle-card.tall { grid-row: auto; min-height: 460px; }
  .lifestyle-card { min-height: 350px; }
  .recommend-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .order-flow { grid-template-columns: 1fr; }
  .footer-top, .footer-bottom { flex-direction: column; }
  .site-footer { padding-bottom: 112px; }
  .mobile-cta { display: block; }
  .lightbox { padding: 18px; }
  .lightbox-nav { width: 42px; height: 42px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  [data-animate] { opacity: 1; transform: none; }
}

