/* STANDARD SEOUL DE — v2 (2026-04-24) */
@import url('https://cdn.jsdelivr.net/npm/pretendard@1.3.9/dist/web/variable/pretendardvariable.css');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Cormorant+Garamond:ital,wght@0,400;1,400&display=swap');

:root {
  --font-sans: 'Pretendard Variable','Pretendard','Apple SD Gothic Neo','Noto Sans',system-ui,sans-serif;
  --font-serif: 'Playfair Display','Cormorant Garamond',Georgia,serif;
  --fg: #302C31;
  --fg-soft: #5a555c;
  --muted: #908c92;
  --line: #e7e5ea;
  --line-soft: #f2f0f4;
  --bg: #ffffff;
  --bg-cream: #faf9f7;
  --bg-blue: #eff3fb;
  --accent: #91aaca;
  --accent-2: #0C8E5A;
  --sale: #c93030;
  --header-h: 76px;
  --hdr-mobile-h: 56px;
  --radius: 2px;
  --max: 1400px;
  --gut: 32px;
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; padding: 0;
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
input, select, textarea { font-family: inherit; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 700; letter-spacing: -0.02em; color: var(--fg); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------------- Announcement (top bar) ---------------- */
.announce {
  background: var(--fg);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 9px 20px;
  text-align: center;
  font-weight: 500;
}
.announce span { opacity: 0.9; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
  display: flex; align-items: center;
}
.site-header .wrap {
  max-width: var(--max); width: 100%;
  margin: 0 auto; padding: 0 var(--gut);
  display: flex; align-items: center; gap: 40px;
}
.brand {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
.brand em { font-style: italic; font-weight: 400; opacity: 0.85; }
.main-nav {
  display: flex; align-items: center; gap: 30px;
  flex: 1;
  font-size: 14px; font-weight: 500;
  justify-content: flex-start;
}
.main-nav a {
  position: relative;
  padding: 8px 2px;
  color: var(--fg);
  transition: color 0.2s;
}
.main-nav a::after {
  content: '';
  position: absolute; left: 0; bottom: 2px;
  width: 100%; height: 1px;
  background: var(--fg);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.main-nav a.active { font-weight: 600; }
.util-nav {
  display: flex; align-items: center; gap: 22px;
  font-size: 13px;
  flex-shrink: 0;
  margin-left: auto;
}
.util-nav a { color: var(--fg); display: inline-flex; align-items: center; gap: 6px; }
.util-nav a:hover { color: var(--accent); }
.util-nav .icon { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.util-nav .cart {
  display: inline-flex; align-items: center; gap: 6px;
  position: relative;
}
.util-nav .cart-count {
  background: var(--fg); color: #fff;
  min-width: 18px; height: 18px;
  border-radius: 9px; padding: 0 5px;
  font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.hamburger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  margin-left: auto;
  cursor: pointer;
  position: relative;
}
.hamburger span {
  position: absolute; left: 10px; width: 20px; height: 1.5px;
  background: var(--fg);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 19px; }
.hamburger span:nth-child(3) { top: 24px; }
.hamburger.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: var(--header-h); right: 0;
  width: 88vw; max-width: 340px; height: calc(100vh - var(--header-h));
  background: #fff;
  border-left: 1px solid var(--line);
  padding: 28px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.22,.61,.36,1);
  z-index: 70;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block; padding: 14px 0;
  font-size: 17px; font-weight: 500;
  border-bottom: 1px solid var(--line-soft);
  color: var(--fg);
}
.mobile-menu a.util { font-size: 14px; color: var(--fg-soft); padding: 10px 0; border: 0; }
.mobile-menu .section-label {
  text-transform: uppercase; font-size: 11px; letter-spacing: 0.2em;
  color: var(--muted); margin-top: 28px; margin-bottom: 8px;
}
.backdrop {
  position: fixed; inset: 0;
  background: rgba(30,28,32,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  z-index: 60;
}
.backdrop.open { opacity: 1; pointer-events: all; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: min(86vh, 780px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  background: var(--bg-blue);
  overflow: hidden;
}
.hero .copy {
  padding: 80px 60px 100px max(var(--gut), 6vw);
  display: flex; flex-direction: column; justify-content: center; gap: 22px;
  position: relative;
  z-index: 2;
}
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 11px; font-weight: 600;
  color: var(--fg-soft);
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7.5vw, 110px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  font-weight: 400;
  color: var(--fg);
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--accent); }
.hero .lede {
  font-size: 17px;
  color: var(--fg-soft);
  max-width: 440px;
  line-height: 1.65;
}
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  border: 1px solid var(--fg);
  background: var(--fg);
  color: #fff;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.25s;
}
.btn:hover { background: transparent; color: var(--fg); }
.btn.ghost { background: transparent; color: var(--fg); }
.btn.ghost:hover { background: var(--fg); color: #fff; }
.btn.sm { padding: 10px 18px; font-size: 11px; }
.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }

.hero .media {
  position: relative;
  overflow: hidden;
}
.hero .media .collage {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  padding: 48px 6vw 48px 0;
}
.hero .media .collage img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(.22,.61,.36,1) forwards;
  background: #e5dfda;
}
.hero .media .collage img:nth-child(1) { grid-row: 1 / 3; animation-delay: 0.1s; }
.hero .media .collage img:nth-child(2) { animation-delay: 0.25s; }
.hero .media .collage img:nth-child(3) { animation-delay: 0.4s; }
.hero .scroll-hint {
  position: absolute; bottom: 28px; left: var(--gut);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-soft);
  display: flex; align-items: center; gap: 10px;
  z-index: 3;
}
.hero .scroll-hint::before {
  content: ''; display: inline-block;
  width: 34px; height: 1px; background: var(--fg-soft);
  animation: scrollBar 2s ease-in-out infinite;
}
@keyframes scrollBar {
  0%, 100% { transform: scaleX(1); transform-origin: left; }
  50% { transform: scaleX(0.2); transform-origin: right; }
}
@keyframes fadeUp {
  to { transform: none; opacity: 1; }
}

/* ---------------- Section shell ---------------- */
.section {
  padding: 96px var(--gut);
}
.section.pad-lg { padding: 120px var(--gut); }
.section.bg-cream { background: var(--bg-cream); }
.section.bg-blue { background: var(--bg-blue); }
.section.bg-dark { background: var(--fg); color: #f3efea; }
.section.bg-dark h2, .section.bg-dark h3 { color: #fff; }

.section .inner { max-width: var(--max); margin: 0 auto; }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.section-head .titles { max-width: 660px; }
.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px; font-weight: 600;
  color: var(--muted);
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section-head h2 em { font-style: italic; color: var(--accent); }
.section-head .sub {
  margin-top: 14px;
  color: var(--fg-soft);
  font-size: 15px; line-height: 1.65;
  max-width: 480px;
}
.section-head .more {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  border-bottom: 1px solid var(--fg);
  padding: 4px 0 2px;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--fg);
}
.section-head .more:hover { color: var(--accent); border-color: var(--accent); }
.section-head .more .arrow { transition: transform 0.2s; }
.section-head .more:hover .arrow { transform: translateX(4px); }

/* ---------------- Product grid ---------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 40px 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }

.card {
  position: relative;
  display: flex; flex-direction: column;
  transition: transform 0.3s cubic-bezier(.22,.61,.36,1);
}
.card .thumb-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-cream);
  overflow: hidden;
  border-radius: var(--radius);
}
.card .thumb-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.22,.61,.36,1);
}
.card:hover .thumb-wrap img { transform: scale(1.05); }
.card .thumb-wrap .ribbon {
  position: absolute; top: 12px; left: 12px;
  background: var(--fg); color: #fff;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  z-index: 2;
}
.card .thumb-wrap .ribbon.sale { background: var(--sale); }
.card .thumb-wrap .ribbon.new { background: var(--accent-2); }
.card .quick-add {
  position: absolute; bottom: 12px; right: 12px;
  width: 42px; height: 42px;
  background: #fff; color: var(--fg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 14px rgba(20,18,22,0.12);
  opacity: 0; transform: translateY(6px);
  transition: all 0.28s;
  z-index: 2;
  font-size: 18px; font-weight: 300;
}
.card .quick-add:hover { background: var(--fg); color: #fff; }
.card:hover .quick-add { opacity: 1; transform: none; }
.card .name {
  margin-top: 18px;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--fg);
  min-height: 42px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.005em;
}
.card .price {
  margin-top: 8px;
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.card .price .sale {
  font-weight: 700; font-size: 15px;
  color: var(--fg);
}
.card .price .list {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 12.5px;
}
.card .price .off {
  color: var(--sale);
  font-weight: 700;
  font-size: 12.5px;
  margin-left: auto;
}

/* ---------------- Swiper sections ---------------- */
.carousel {
  position: relative;
  padding: 0 0;
}
.carousel .swiper {
  overflow: hidden;
}
.carousel .swiper-slide { height: auto; }
.carousel .swiper-button-next,
.carousel .swiper-button-prev {
  width: 46px; height: 46px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--fg);
  top: calc(50% - 50px);
  margin-top: 0;
  box-shadow: 0 2px 12px rgba(20,18,22,0.08);
  transition: all 0.2s;
}
.carousel .swiper-button-next { right: -16px; }
.carousel .swiper-button-prev { left: -16px; }
.carousel .swiper-button-next:hover,
.carousel .swiper-button-prev:hover { background: var(--fg); color: #fff; border-color: var(--fg); }
.carousel .swiper-button-next::after,
.carousel .swiper-button-prev::after { font-size: 14px; font-weight: 700; }
@media (max-width: 900px) {
  .carousel .swiper-button-next,
  .carousel .swiper-button-prev { display: none; }
}

/* ---------------- Peakbox (For Your Moment) ---------------- */
.peakbox {
  background: var(--bg-blue);
  padding: 120px var(--gut);
}
.peakbox .inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: center;
}
.peakbox .copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
}
.peakbox .copy h2 em { font-style: italic; color: var(--accent); }
.peakbox .copy .eyebrow {
  text-transform: uppercase; letter-spacing: 0.3em;
  font-size: 11px; font-weight: 600;
  color: var(--fg-soft); margin-bottom: 16px;
}
.peakbox .copy p {
  color: var(--fg-soft); font-size: 16px;
  line-height: 1.7; margin-bottom: 28px;
  max-width: 360px;
}
.peakbox .grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ---------------- Curated / Editor ---------------- */
.editor {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-cream);
}
.editor .item {
  padding: 32px 28px 40px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  background: var(--bg-cream);
  transition: background 0.25s;
}
.editor .item:hover { background: #fff; }
.editor .item:last-child { border-right: 0; }
.editor .item .img {
  aspect-ratio: 4 / 5;
  background: #ddd;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.editor .item .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.editor .item:hover .img img { transform: scale(1.04); }
.editor .item .handle {
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.editor .item h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 12px;
}
.editor .item p {
  font-size: 13.5px;
  color: var(--fg-soft);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.editor .item .tag {
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--fg);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

/* ---------------- About / Color, Defined By You ---------------- */
.about-banner {
  background: var(--fg);
  color: #f3efea;
  padding: 140px var(--gut) 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-banner::before {
  content: '';
  position: absolute;
  inset: -100px;
  background:
    radial-gradient(60% 50% at 20% 50%, rgba(145,170,202,0.22), transparent 60%),
    radial-gradient(50% 40% at 80% 30%, rgba(255,210,180,0.15), transparent 60%);
  pointer-events: none;
}
.about-banner .eyebrow {
  text-transform: uppercase; letter-spacing: 0.35em; font-size: 11px; font-weight: 600;
  color: rgba(243,239,234,0.7); margin-bottom: 20px;
}
.about-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 8vw, 130px);
  font-weight: 400; line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  position: relative;
}
.about-banner h2 em { font-style: italic; color: var(--accent); }
.about-banner .sub {
  color: rgba(243,239,234,0.75);
  max-width: 560px; margin: 28px auto 36px;
  font-size: 17px; line-height: 1.6;
  position: relative;
}
.about-banner .cta-row { display: flex; gap: 14px; justify-content: center; position: relative; }
.about-banner .btn { border-color: #f3efea; background: transparent; color: #f3efea; }
.about-banner .btn:hover { background: #f3efea; color: var(--fg); }

/* ---------------- Footer ---------------- */
.site-footer {
  background: #faf9f7;
  border-top: 1px solid var(--line);
  padding: 72px var(--gut) 40px;
  font-size: 13px;
}
.site-footer .grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.site-footer h5 {
  color: var(--fg); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: 18px;
}
.site-footer a { color: var(--fg-soft); display: block; padding: 5px 0; }
.site-footer a:hover { color: var(--fg); }
.site-footer .brand-col p { color: var(--fg-soft); font-size: 13.5px; line-height: 1.7; max-width: 340px; margin-top: 12px; }
.site-footer .brand-col .logo {
  font-family: var(--font-serif); font-size: 22px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.site-footer .newsletter {
  margin-top: 20px;
}
.site-footer .newsletter form {
  display: flex; align-items: center;
  border: 1px solid var(--line); border-radius: 999px;
  background: #fff; padding: 4px 4px 4px 18px;
  max-width: 380px;
}
.site-footer .newsletter input {
  border: 0; background: transparent;
  flex: 1; min-width: 0;
  font-size: 13px; padding: 10px 0;
  outline: none; color: var(--fg);
}
.site-footer .newsletter button {
  background: var(--fg); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.site-footer .newsletter button:hover { background: var(--accent); color: var(--fg); }
.site-footer .company dl {
  display: grid; grid-template-columns: 90px 1fr;
  gap: 6px 12px;
  font-size: 12px; color: var(--fg-soft);
  margin: 0;
}
.site-footer .company dt { color: var(--muted); }
.site-footer .social { display: flex; gap: 10px; margin-top: 14px; }
.site-footer .social a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0;
}
.site-footer .social a:hover { background: var(--fg); color: #fff; border-color: var(--fg); }
.site-footer .bottom {
  max-width: var(--max); margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--muted); flex-wrap: wrap; gap: 10px;
}

/* ---------------- Product detail ---------------- */
.detail {
  max-width: var(--max); margin: 0 auto;
  padding: 48px var(--gut);
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 72px;
}
.detail .breadcrumb {
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.05em; margin-bottom: 18px;
}
.detail .breadcrumb span { margin: 0 8px; color: #ccc; }
.detail .breadcrumb a:hover { color: var(--fg); }

.gallery .main-img {
  aspect-ratio: 1 / 1;
  background: var(--bg-cream);
  overflow: hidden; border-radius: var(--radius);
}
.gallery .main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery .thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery .thumbs img {
  width: 78px; aspect-ratio: 1;
  object-fit: cover; cursor: pointer;
  border: 1px solid var(--line); border-radius: 2px;
  transition: all 0.2s;
}
.gallery .thumbs img:hover, .gallery .thumbs img.active { border-color: var(--fg); }

.info h1 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.1;
}
.info .rating { font-size: 13px; color: var(--fg-soft); margin-bottom: 20px; }
.info .rating .stars { color: var(--fg); letter-spacing: 2px; margin-right: 6px; }
.info .price-big {
  font-size: 28px;
  font-weight: 700;
  margin: 22px 0 28px;
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
}
.info .price-big .list {
  font-size: 17px; color: var(--muted);
  text-decoration: line-through; font-weight: 500;
}
.info .price-big .off {
  color: var(--sale); font-size: 14px; font-weight: 700;
  padding: 4px 10px; background: #fde9e9; border-radius: 999px;
}
.info .meta {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  display: grid; grid-template-columns: 110px 1fr;
  gap: 12px 20px;
  font-size: 13px;
  color: var(--fg-soft);
  margin: 0;
}
.info .meta dt { color: var(--muted); }
.info .qty {
  display: flex; align-items: center; gap: 16px;
  margin: 32px 0 20px;
}
.info .qty label { font-size: 13px; color: var(--fg-soft); }
.info .stepper {
  display: flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.info .stepper button { padding: 10px 16px; font-size: 14px; }
.info .stepper button:hover { background: var(--bg-cream); }
.info .stepper input {
  width: 40px; border: 0; text-align: center;
  font-size: 14px; background: transparent;
  outline: none;
}
.info .actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-top: 12px;
}
.info .actions .btn {
  justify-content: center;
  padding: 18px;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.info .usps {
  margin-top: 30px;
  display: grid; gap: 12px;
  font-size: 13px; color: var(--fg-soft);
}
.info .usps li { display: flex; align-items: center; gap: 10px; }
.info .usps li::before {
  content: ''; display: inline-block;
  width: 16px; height: 16px;
  border: 1.5px solid var(--accent-2);
  border-radius: 50%;
  background: var(--accent-2);
  position: relative;
  flex-shrink: 0;
}

.detail-story {
  background: var(--bg-cream);
  padding: 100px var(--gut);
}
.detail-story .inner {
  max-width: 920px; margin: 0 auto;
}
.detail-story h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  margin: 40px 0 18px;
}
.detail-story p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--fg-soft);
  margin-bottom: 18px;
}
.detail-story img {
  margin: 32px auto;
  border-radius: var(--radius);
  width: 100%;
}

/* ---------------- Checkout ---------------- */
.checkout {
  max-width: 1080px; margin: 40px auto;
  padding: 0 var(--gut);
}
.checkout h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.checkout .subtitle { color: var(--fg-soft); margin-bottom: 36px; }
.checkout .grid2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.checkout .box {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: var(--radius);
}
.checkout .summary {
  background: var(--bg-cream);
  border: 0;
  position: sticky; top: calc(var(--header-h) + 24px);
}
.checkout .box h3 {
  font-size: 15px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.checkout label { display: block; font-size: 12px; color: var(--muted); margin: 12px 0 4px; font-weight: 600; letter-spacing: 0.05em; }
.checkout input, .checkout select, .checkout textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px; color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
}
.checkout input:focus, .checkout select:focus, .checkout textarea:focus { border-color: var(--fg); }
.checkout .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkout .item-row {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.checkout .item-row:last-of-type { border-bottom: 0; }
.checkout .item-row img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.checkout .item-row .meta { flex: 1; font-size: 13px; }
.checkout .item-row .meta .name { font-weight: 500; line-height: 1.4; margin-bottom: 2px; }
.checkout .totals { font-size: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.checkout .totals .line { display: flex; justify-content: space-between; padding: 7px 0; color: var(--fg-soft); }
.checkout .totals .line.total {
  border-top: 1px solid var(--line);
  padding-top: 14px; margin-top: 10px;
  font-size: 19px; font-weight: 700; color: var(--fg);
}
.checkout .pay-btn {
  display: block; width: 100%;
  background: var(--fg); color: #fff;
  padding: 18px;
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-top: 22px;
  transition: background 0.2s;
}
.checkout .pay-btn:hover { background: var(--accent); color: var(--fg); }
.checkout .pay-methods {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  margin-top: 10px;
}
.checkout .pay-methods label {
  display: flex; align-items: center; gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 14px;
  margin: 0;
  color: var(--fg);
  font-weight: 500;
  transition: all 0.2s;
}
.checkout .pay-methods label:hover { border-color: var(--fg); }
.checkout .pay-methods label:has(input:checked) {
  border-color: var(--fg);
  background: var(--bg-cream);
  box-shadow: inset 0 0 0 1px var(--fg);
}
.checkout .notice {
  background: #fff7ed; color: #8a5a10;
  border: 1px solid #fde5c8;
  padding: 14px 18px; border-radius: var(--radius);
  font-size: 13px; margin-bottom: 28px;
}

/* ---------------- Popup / Toast ---------------- */
.popup {
  position: fixed; inset: 0;
  background: rgba(20,18,22,0.55);
  z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.popup.open { display: flex; }
.popup .box {
  background: #fff; max-width: 460px; width: 100%;
  padding: 36px; border-radius: var(--radius);
  text-align: center; position: relative;
}
.popup .box h3 {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 400;
  margin-bottom: 10px;
}
.popup .box p { font-size: 14px; color: var(--fg-soft); margin: 0 0 20px; }
.popup .box .close { position: absolute; top: 14px; right: 18px; font-size: 22px; color: var(--muted); }

/* ---------------- Responsive ---------------- */
@media (max-width: 1200px) {
  :root { --gut: 28px; }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .hero .copy { padding: 70px 40px 70px var(--gut); }
  .peakbox .inner { grid-template-columns: 1fr 1.6fr; gap: 60px; }
  .editor { grid-template-columns: repeat(2, 1fr); }
  .editor .item:nth-child(2) { border-right: 0; }
  .editor .item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .site-footer .grid { grid-template-columns: 2fr 1fr 1fr; gap: 36px; }
  .site-footer .grid > div:nth-child(5) { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --header-h: var(--hdr-mobile-h); --gut: 20px; }
  .main-nav, .util-nav { display: none; }
  .hamburger { display: flex; }
  .brand { font-size: 18px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero .copy {
    padding: 72px var(--gut) 32px;
  }
  .hero h1 { font-size: clamp(46px, 13vw, 72px); }
  .hero .lede { font-size: 15.5px; max-width: none; }
  .hero .actions { flex-wrap: wrap; }
  .hero .scroll-hint { display: none; }
  .hero .media {
    height: 340px;
    margin: 0 var(--gut);
  }
  .hero .media .collage {
    position: relative;
    inset: auto;
    padding: 0 0 24px;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    height: 100%;
  }
  .hero .media .collage img:nth-child(1) { grid-row: 1 / 3; }

  .section, .section.pad-lg, .peakbox, .about-banner, .detail-story { padding: 64px var(--gut); }
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: clamp(28px, 8vw, 40px); }
  .section-head .sub { font-size: 14px; }

  .grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }

  .card .name { font-size: 13.5px; min-height: 38px; margin-top: 14px; }
  .card .price .sale { font-size: 14px; }
  .card .quick-add { width: 36px; height: 36px; opacity: 1; transform: none; font-size: 16px; }

  .peakbox .inner { grid-template-columns: 1fr; gap: 36px; }
  .peakbox .copy { text-align: left; }
  .peakbox .copy p { max-width: none; }
  .peakbox .grid { grid-template-columns: repeat(2, 1fr); gap: 28px 14px; }

  .editor { grid-template-columns: 1fr; }
  .editor .item { border-right: 0; border-bottom: 1px solid var(--line); padding: 24px 20px; }
  .editor .item:last-child { border-bottom: 0; }

  .about-banner { padding: 80px var(--gut); }
  .about-banner h2 { font-size: clamp(40px, 14vw, 72px); }
  .about-banner .sub { font-size: 15px; }

  .detail {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px var(--gut);
  }
  .info h1 { font-size: 22px; }
  .info .price-big { font-size: 22px; margin: 18px 0 22px; }
  .info .actions { grid-template-columns: 1fr; }

  .site-footer { padding: 56px var(--gut) 30px; }
  .site-footer .grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer .grid > div:nth-child(5) { grid-column: auto; }

  .checkout { margin: 24px auto; }
  .checkout .grid2 { grid-template-columns: 1fr; gap: 20px; }
  .checkout .summary { position: static; }
  .checkout .box { padding: 24px; }
  .checkout .row { grid-template-columns: 1fr; }
  .checkout .pay-methods { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --gut: 16px; }
  .hero .copy { padding: 40px var(--gut) 28px; }
  .hero h1 { font-size: clamp(40px, 13vw, 60px); }
  .btn { padding: 13px 22px; font-size: 12px; }
  .grid { gap: 28px 12px; }
  .card .name { font-size: 13px; }
  .site-header .wrap { gap: 16px; padding: 0 var(--gut); }
  .brand { font-size: 16px; letter-spacing: 0.1em; }
  .announce { font-size: 11px; padding: 8px 12px; }
}

/* ---------------- Animation utilities ---------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s cubic-bezier(.22,.61,.36,1), transform 0.8s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
