/* =========================================
   산아래 붉은 정원
   Premium editorial + Stitch commerce UX
   ========================================= */
:root {
  --primary: #e11d48;
  --primary-deep: #be123c;
  --burgundy: #5c1220;
  --burgundy-deep: #3a0c15;
  --rouge: #9c1f38;
  --secondary: #16a34a;
  --secondary-soft: #e8f7ee;
  --blush: #fce7ec;
  --cream: #fff7f2;
  --cream-2: #f7ebe3;
  --paper: #fffbf7;
  --ink: #171113;
  --ink-2: #3d3235;
  --muted: #7a6c70;
  --line: rgba(23, 17, 19, 0.08);
  --line-strong: rgba(23, 17, 19, 0.14);
  --white: #ffffff;
  --kakao: #fae100;
  --shadow: 0 24px 60px rgba(58, 12, 21, 0.12);
  --shadow-soft: 0 10px 30px rgba(58, 12, 21, 0.08);
  --shadow-primary: 0 12px 28px rgba(225, 29, 72, 0.28);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --header-h: 72px;
  --max: 1120px;
  --font: "Noto Sans KR", system-ui, sans-serif;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

@media (max-width: 720px) {
  body {
    padding-bottom: 84px;
  }
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

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

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

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0.03;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ========== Header ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.35s;
  color: var(--white);
}

.site-header.is-solid {
  background: rgba(255, 251, 247, 0.92);
  backdrop-filter: blur(16px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.site-header.is-solid .logo-img {
  box-shadow: 0 0 0 2px rgba(225, 29, 72, 0.14);
}

.logo-img-footer {
  width: 36px;
  height: 36px;
  box-shadow: none;
}

.site-header.is-solid .logo-mark {
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.12);
}

.logo-mark.light {
  background: #f9a8b8;
  box-shadow: none;
}

.logo-text {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-sub {
  margin-left: 0.35rem;
  font-weight: 600;
  opacity: 0.72;
}

.nav {
  margin-left: auto;
  display: flex;
  gap: 1.5rem;
}

.nav a {
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.88;
  transition: opacity 0.2s, color 0.2s;
}

.nav a:hover {
  opacity: 1;
}

.site-header.is-solid .nav a:hover {
  color: var(--primary);
}

.nav-mobile-order {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.header-order {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.6rem 1.05rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.site-header.is-solid .header-order {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: var(--shadow-primary);
}

.header-order:hover {
  background: var(--white);
  color: var(--burgundy-deep);
  border-color: var(--white);
}

.site-header.is-solid .header-order:hover {
  background: var(--primary-deep);
  color: white;
  border-color: var(--primary-deep);
}

.cart-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.cart-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-solid .cart-btn:hover {
  background: var(--blush);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 15px;
  height: 1.5px;
  background: currentColor;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: white;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease) infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 17, 19, 0.3) 0%, rgba(23, 17, 19, 0.12) 35%, rgba(23, 17, 19, 0.78) 100%),
    linear-gradient(90deg, rgba(23, 17, 19, 0.4) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 0 6.5rem;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--secondary);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.28);
}

.hero-tags {
  margin: 0 0 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 220, 228, 0.95);
}

.hero-tags i {
  font-style: normal;
  opacity: 0.5;
}

.hero h1 {
  margin: 0 0 1.1rem;
  font-weight: 500;
  line-height: 1.15;
}

.hero-line {
  display: block;
  font-family: var(--font);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-line.italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.5rem, 7vw, 4.4rem);
  letter-spacing: -0.02em;
  color: #ffd0da;
}

.hero-desc {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.92;
  max-width: 28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-scroll {
  position: absolute;
  right: 2rem;
  bottom: 2.5rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}

.hero-scroll i {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, white, transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background: var(--primary-deep);
}

.btn-light {
  background: white;
  color: var(--ink);
  border-radius: var(--radius);
}

.btn-light:hover {
  background: var(--cream);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: white;
  border-radius: var(--radius);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-soft {
  background: #f3f0ee;
  color: var(--ink);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  min-height: 42px;
  padding: 0.55rem 1rem;
  font-size: 0.84rem;
}

.text-link {
  display: inline-flex;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.text-link:hover {
  opacity: 0.7;
}

.text-link.light {
  color: white;
}

/* ========== Sections ========== */
.section {
  padding: 5.5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, #fff, var(--cream));
}

.section-dark {
  background: var(--ink);
  color: #f5ebe8;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head.center {
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.section-head.split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
}

.section-head.left {
  margin-bottom: 0;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow.light {
  color: #f9a8b8;
}

.section-head h2,
.story-copy h2,
.order-intro h2,
.feature-banner-copy h2,
.shipping-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--burgundy-deep);
}

.section-dark .section-head h2 {
  color: white;
}

.section-desc,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.section-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

/* ========== Products ========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.25s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(225, 29, 72, 0.2);
}

.product-card.is-featured {
  border-color: rgba(225, 29, 72, 0.45);
  box-shadow: 0 0 0 1px rgba(225, 29, 72, 0.18), var(--shadow-soft);
}

.product-visual {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--cream-2);
}

.product-visual img {
  width: 100%;
  height: 100%;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .product-visual img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  padding: 0.4rem 0.85rem;
  border-radius: 0 0 0 12px;
  background: rgba(255, 251, 247, 0.94);
  backdrop-filter: blur(8px);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--primary);
}

.product-card.is-featured .product-badge {
  background: var(--primary);
  color: white;
}

.product-body {
  padding: 1.25rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}

.product-body h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.product-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
  margin-top: 0.55rem;
}

.product-features span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.product-features span::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--secondary-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2316a34a' d='M6.5 11.2 3.3 8l1-1 2.2 2.2 5-5 1 1z'/%3E%3C/svg%3E") center/10px no-repeat;
  flex-shrink: 0;
}

.product-meta {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: 0.85rem;
}

.product-price {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}

.product-card.is-featured .product-price {
  color: var(--primary);
}

.product-unit {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.product-actions {
  display: flex;
  gap: 0.55rem;
  margin-top: 1rem;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper);
  overflow: hidden;
}

.qty-control button {
  width: 36px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1;
}

.qty-control button:hover {
  background: var(--blush);
}

.qty-control span {
  min-width: 1.4rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
}

.product-actions .btn {
  flex: 1;
  border-radius: var(--radius);
}

.product-card.is-featured .btn-primary {
  box-shadow: var(--shadow-primary);
}

.product-card:not(.is-featured) .btn-cart {
  background: var(--ink);
  color: white;
  box-shadow: none;
}

.product-card:not(.is-featured) .btn-cart:hover {
  background: #2a2224;
}

/* ========== USP ========== */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.usp-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.15rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.usp-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 0.85rem;
}

.usp-rose { background: rgba(225, 29, 72, 0.1); color: var(--primary); }
.usp-green { background: rgba(22, 163, 74, 0.12); color: var(--secondary); }
.usp-blue { background: rgba(59, 130, 246, 0.12); color: #3b82f6; }
.usp-purple { background: rgba(147, 51, 234, 0.12); color: #9333ea; }

.usp-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  font-weight: 800;
}

.usp-card p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ========== Feature banner ========== */
.feature-banner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 500px;
  background: var(--burgundy-deep);
  color: white;
}

.feature-banner-img {
  min-height: 320px;
  overflow: hidden;
}

.feature-banner-img img {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.feature-banner-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem);
}

.feature-banner-copy h2 {
  color: white;
  margin-bottom: 1.15rem;
}

.feature-banner-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  max-width: 28rem;
  line-height: 1.9;
}

.feature-banner-copy em {
  font-family: var(--serif);
  font-style: italic;
  color: #ffd0da;
  font-weight: 500;
}

/* ========== Story ========== */
.story-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}

.story-copy h2 {
  margin-bottom: 1.15rem;
}

.story-copy .lead {
  margin-bottom: 1.4rem;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink-2);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--secondary-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2316a34a' d='M6.5 11.2 3.3 8l1-1 2.2 2.2 5-5 1 1z'/%3E%3C/svg%3E") center/10px no-repeat;
}

.story-gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.85rem;
  min-height: 440px;
}

.story-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream-2);
}

.story-gallery img {
  width: 100%;
  height: 100%;
  transition: transform 0.8s var(--ease);
}

.story-gallery figure:hover img {
  transform: scale(1.05);
}

.g-main {
  grid-row: 1 / -1;
  min-height: 440px;
}

/* ========== Shipping ========== */
.shipping-box {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.75rem;
  box-shadow: var(--shadow-soft);
}

.shipping-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  color: var(--ink);
  flex-shrink: 0;
}

.shipping-copy h2 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.shipping-highlight {
  margin: 0 0 0.9rem;
  color: var(--ink-2);
  font-size: 0.95rem;
}

.shipping-highlight strong {
  display: block;
  font-size: 1.02rem;
}

.shipping-highlight span {
  color: var(--muted);
  font-size: 0.88rem;
}

.shipping-details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.95rem 1.05rem;
  display: grid;
  gap: 0.4rem;
}

.shipping-details p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.shipping-details strong {
  color: var(--ink);
  margin-right: 0.4rem;
}

/* ========== Steps ========== */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.steps li {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.4rem;
}

.step-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  color: #f9a8b8;
  margin-bottom: 0.9rem;
}

.steps h3 {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: white;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ========== Contact / Map ========== */
.contact-layout {
  max-width: 720px;
}

.map-card {
  position: relative;
  height: 240px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 1rem;
  background: #ddd;
}

.map-card img {
  width: 100%;
  height: 100%;
  filter: grayscale(0.15) contrast(1.05);
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(23, 17, 19, 0.28);
}

.map-pin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: white;
  color: var(--ink);
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.map-pin svg {
  color: var(--primary);
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 52px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.92rem;
  border: 1px solid var(--line);
  transition: transform 0.15s, opacity 0.15s;
}

.contact-btn:hover {
  transform: translateY(-1px);
}

.contact-btn.phone {
  background: white;
}

.contact-btn.kakao {
  background: var(--kakao);
  border-color: transparent;
  color: #371d1e;
}

/* ========== Order form ========== */
.order-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.order-intro h2 {
  margin-bottom: 0.9rem;
}

.notice-box {
  margin-top: 1.75rem;
  padding: 1.25rem 1.3rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  border-left: 3px solid var(--primary);
}

.notice-title {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.notice-box ul {
  margin: 0;
  padding-left: 1.05rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.notice-box li + li {
  margin-top: 0.25rem;
}

.order-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.15rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row label,
.choice-field legend {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--ink-2);
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12);
  background: white;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #b5a8ac;
}

.choice-field {
  display: grid;
  gap: 0.65rem;
}

.choice-grid {
  display: grid;
  gap: 0.55rem;
}

.choice-grid.two {
  grid-template-columns: 1fr 1fr;
}

.choice-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.choice-card {
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.55rem 0.4rem;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  background: white;
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
  color: var(--ink-2);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.choice-card input:checked + span {
  border-color: var(--primary);
  background: rgba(225, 29, 72, 0.06);
  color: var(--primary);
}

.choice-card:hover span {
  border-color: rgba(225, 29, 72, 0.35);
}

.bank-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 0.86rem;
}

.bank-box strong {
  color: var(--primary);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.bank-box p {
  margin: 0;
  color: var(--muted);
}

.order-summary {
  margin-top: 0.15rem;
  padding: 1.15rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.summary-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.summary-head h3 {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.linkish {
  border: 0;
  background: none;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.summary-items {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.summary-line span:last-child {
  font-weight: 700;
  white-space: nowrap;
}

.empty-cart-msg {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.summary-shipping {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  min-height: 1.2em;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-weight: 600;
}

.summary-total strong {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 0.65rem;
}

.form-hint {
  margin: 0;
  min-height: 1.2rem;
  font-size: 0.84rem;
  color: var(--muted);
  text-align: center;
}

/* ========== FAQ ========== */
.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0 1.15rem;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: rgba(225, 29, 72, 0.25);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 1.1rem 1.75rem 1.1rem 0;
  list-style: none;
  position: relative;
  letter-spacing: -0.02em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--burgundy-deep);
  color: #e8d4d8;
  padding-top: 3.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  margin: 0;
  opacity: 0.65;
  font-weight: 300;
  font-size: 0.92rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-cols h4 {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f9a8b8;
  font-weight: 700;
}

.footer-cols p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 0.85;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 0 1.35rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
  opacity: 0.5;
}

/* ========== Mobile sticky CTA ========== */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  gap: 0.55rem;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  background: rgba(255, 251, 247, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}

.mobile-cta .btn {
  flex: 1;
  min-height: 48px;
  border-radius: var(--radius);
}

.mobile-cta .btn-primary {
  flex: 2;
}

/* ========== Cart drawer ========== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 17, 19, 0.45);
  z-index: 80;
  backdrop-filter: blur(2px);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 420px);
  height: 100%;
  background: var(--paper);
  z-index: 90;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.4rem;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--burgundy-deep);
}

.icon-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
}

.cart-body {
  flex: 1;
  overflow: auto;
  padding: 0.5rem 1.4rem 1rem;
}

.cart-empty {
  text-align: center;
  color: var(--muted);
  padding: 2.5rem 1rem;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.cart-empty-mascot {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.cart-empty p {
  margin: 0;
  line-height: 1.55;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-thumb {
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--cream-2);
}

.cart-item-thumb img {
  width: 100%;
  height: 100%;
}

.cart-item h4 {
  margin: 0 0 0.2rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.cart-item p {
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.cart-item-price {
  font-weight: 800;
  color: var(--primary);
  font-size: 1rem;
}

.remove-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cart-footer {
  padding: 1.15rem 1.4rem 1.5rem;
  border-top: 1px solid var(--line);
  background: white;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.95rem;
  font-weight: 600;
}

.cart-total-row strong {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary);
}

/* ========== Season promo ========== */
.section-promo {
  padding-top: 0.5rem;
}

.promo-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  background: var(--cream, #faf6f3);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  padding: 0;
}

.promo-media {
  display: block;
  min-height: 280px;
  background: var(--cream-2, #f3ebe6);
}

.promo-media img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.promo-copy {
  padding: 2rem 2rem 2rem 0.5rem;
}

.promo-copy h2 {
  margin: 0.35rem 0 0.85rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.promo-copy .lead {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 36ch;
}

.story-brand-logo {
  width: 96px;
  height: auto;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.footer-farm-logo {
  width: 72px;
  height: auto;
  margin: 0.75rem 0 0.35rem;
  display: block;
  opacity: 0.95;
}

/* ========== Toast ========== */
.toast {
  position: fixed;
  bottom: calc(1.5rem + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: white;
  padding: 0.55rem 1.15rem 0.55rem 0.55rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 100;
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s;
  pointer-events: none;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  max-width: min(92vw, 360px);
}

.toast-mascot {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.toast-msg {
  line-height: 1.35;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (max-width: 900px) {
  .promo-layout {
    grid-template-columns: 1fr;
  }

  .promo-copy {
    padding: 0 1.5rem 1.75rem;
  }

  .promo-media img {
    max-height: 280px;
  }
}

@media (max-width: 720px) {
  .toast {
    bottom: calc(5.5rem + env(safe-area-inset-bottom));
  }
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .usp-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .story-layout,
  .order-layout,
  .faq-layout,
  .feature-banner,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .feature-banner-img img {
    min-height: 300px;
  }

  .section-head.split {
    flex-direction: row;
    align-items: center;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .story-gallery {
    min-height: 360px;
  }

  .g-main {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    margin: 0;
    padding: 0.65rem;
    background: var(--paper);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.9rem 1rem;
    border-radius: 10px;
  }

  .nav a:hover {
    background: var(--blush);
  }

  .nav-mobile-order {
    display: block;
    background: var(--primary);
    color: white !important;
    text-align: center;
    font-weight: 800;
    margin-top: 0.25rem;
  }

  .header-order {
    display: none;
  }

  .hero-content {
    padding-bottom: 4.5rem;
  }

  .hero-scroll {
    display: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-grid,
  .form-actions,
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .choice-grid.three {
    grid-template-columns: 1fr;
  }

  .order-form {
    padding: 1.25rem;
  }

  .story-gallery {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .g-main {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 220px;
    aspect-ratio: 16/10;
  }

  .g-side {
    aspect-ratio: 1;
  }

  .mobile-cta {
    display: flex;
  }

  .shipping-box {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (min-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
