/* ================================================================
   EC2 — FASHION STORE  style.css
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Cormorant+Garamond:wght@300;400&family=Noto+Sans+JP:wght@300;400;500&display=swap');

/* ── Variables ───────────────────────────────────────────────── */
:root {
  --white:      #FFFFFF;
  --off-white:  #F7F6F4;
  --surface:    #F2F1EF;
  --border:     #E4E3E1;
  --border-mid: #C8C7C5;
  --text:       #111111;
  --text-mid:   #555555;
  --text-muted: #999999;
  --sale:       #B83A2A;
  --new-bg:     #111111;
  --new-txt:    #FFFFFF;

  --ff-en:    'Playfair Display', Georgia, serif;
  --ff-sub:   'Cormorant Garamond', Georgia, serif;
  --ff-ui:    'Noto Sans JP', sans-serif;

  --header-h: 64px;
  --max-w:    1340px;
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-ui);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Announcement Bar ────────────────────────────────────────── */
.announce-bar {
  background: var(--text);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.18em;
}

/* ── Header ──────────────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  gap: 40px;
}

.site-logo {
  font-family: var(--ff-en);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  flex-shrink: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav {
  display: flex;
  gap: 28px;
}
.header-nav a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.header-nav a:hover { color: var(--text); }

.header-icons {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-shrink: 0;
}
.header-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--text-mid);
  transition: color 0.2s ease;
}
.header-icon-btn:hover { color: var(--text); }
.header-icon-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 16px;
  height: 16px;
  background: var(--text);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 2px;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.3s ease;
  transform-origin: center;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Mobile Menu ─────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--ff-en);
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
}
.mobile-menu a:hover { opacity: 0.45; }

/* ── 01 Hero ─────────────────────────────────────────────────── */
.section-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-h) - 41px);
}
.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  background: var(--off-white);
}
.hero-season {
  font-family: var(--ff-sub);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: block;
}
.hero-title {
  font-family: var(--ff-en);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  display: block;
}
.hero-subtitle {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  max-width: 320px;
  margin-bottom: 48px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--text);
  padding: 14px 32px;
  transition: background 0.3s ease, gap 0.3s ease;
  width: fit-content;
}
.hero-btn::after { content: '→'; }
.hero-btn:hover { background: #333; gap: 18px; }

.hero-img-col {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.hero-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero-img-col:hover img { transform: scale(1.04); }

/* ── Section Label ───────────────────────────────────────────── */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
}
.section-title {
  font-family: var(--ff-en);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
}
.section-link {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-mid);
  padding-bottom: 3px;
  transition: color 0.2s ease, gap 0.3s ease;
}
.section-link::after { content: '→'; }
.section-link:hover { color: var(--text); gap: 14px; }

/* ── Product Grid ────────────────────────────────────────────── */
.product-section {
  padding: 88px 0;
}
.product-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

/* ── Product Card ────────────────────────────────────────────── */
.product-card {
  display: block;
  cursor: pointer;
  background: var(--white);
}
.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--surface);
}
.product-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.7s var(--ease);
}
.product-card-img .img-hover {
  opacity: 0;
}
.product-card:hover .img-hover { opacity: 1; transform: scale(1.04); }
.product-card:hover .img-main  { opacity: 0; }
.product-card:hover .img-main:not(.img-hover) { transform: scale(1.04); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  line-height: 1;
}
.badge-new  { background: var(--new-bg); color: var(--new-txt); }
.badge-sale { background: var(--sale); color: var(--white); }

.product-card-action {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: rgba(255,255,255,0.95);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}
.product-card:hover .product-card-action { transform: none; }
.product-card-btn {
  width: 100%;
  padding: 11px;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  background: var(--text);
  color: var(--white);
  transition: background 0.2s ease;
  display: block;
}
.product-card-btn:hover { background: #333; }

.product-card-body {
  padding: 14px 0 20px;
}
.product-card-category {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
}
.product-card-name {
  font-family: var(--ff-sub);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.4;
}
.product-card-name-ja {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-mid);
  margin-bottom: 10px;
}
.product-card-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.price-current {
  font-family: var(--ff-sub);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
}
.price-original {
  font-family: var(--ff-sub);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-sale { color: var(--sale); }
.product-card-colors {
  display: flex;
  gap: 4px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.color-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ── 02 Category Showcase ────────────────────────────────────── */
.section-category {
  padding: 0 0 88px;
}
.category-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
}
.category-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  background: var(--surface);
}
.category-card:first-child { grid-row: span 2; aspect-ratio: auto; }
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.4s ease;
}
.category-card:hover img { transform: scale(1.06); filter: brightness(0.88); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
}
.category-card-label {
  font-family: var(--ff-en);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #FFFFFF;
  margin-bottom: 2px;
  line-height: 1;
}
.category-card-ja {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.72);
  margin-bottom: 14px;
}
.category-card-cta {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  padding-bottom: 4px;
  transition: border-color 0.3s ease;
}
.category-card:hover .category-card-cta { border-color: #FFFFFF; }

/* ── Brand Story ─────────────────────────────────────────────── */
.section-story {
  padding: 100px 0;
  background: var(--off-white);
}
.story-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.story-img {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.story-img:hover img { transform: scale(1.04); }
.story-label {
  font-family: var(--ff-sub);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 20px;
}
.story-title {
  font-family: var(--ff-en);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 28px;
}
.story-title em { font-style: italic; }
.story-body {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 2.1;
  color: var(--text-mid);
  margin-bottom: 40px;
}
.story-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 4px;
  transition: gap 0.3s ease;
}
.story-link::after { content: '→'; }
.story-link:hover { gap: 16px; }

/* ── Instagram Strip ─────────────────────────────────────────── */
.section-insta {
  padding: 80px 0 0;
  overflow: hidden;
}
.insta-label {
  display: block;
  text-align: center;
  font-family: var(--ff-sub);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.insta-handle {
  display: block;
  text-align: center;
  font-family: var(--ff-en);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 40px;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}
.insta-cell {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
}
.insta-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s ease;
}
.insta-cell:hover img { transform: scale(1.07); filter: brightness(0.88); }

/* ── Footer ──────────────────────────────────────────────────── */
#site-footer {
  background: var(--text);
  padding: 72px 40px 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
.footer-brand {
  font-family: var(--ff-en);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  display: block;
}
.footer-tagline {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.3);
}
.footer-col-title {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-links a {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s ease;
}
.footer-col-links a:hover { color: rgba(255,255,255,0.82); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
}
.footer-sns {
  display: flex;
  gap: 20px;
}
.footer-sns a {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s ease;
}
.footer-sns a:hover { color: rgba(255,255,255,0.72); }

/* ── Reveal ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ── Info Pages ──────────────────────────────────────────────── */
.info-page-hero {
  background: var(--off-white);
  padding: 64px 40px 56px;
  border-bottom: 1px solid var(--border);
}
.info-breadcrumb {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.info-breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.info-breadcrumb a:hover { color: var(--text); }
.info-page-title {
  font-family: var(--ff-en);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.info-page-body {
  padding: 72px 40px 100px;
}
.info-page-inner {
  max-width: 800px;
  margin: 0 auto;
}
.info-section {
  margin-bottom: 56px;
}
.info-section h2 {
  font-family: var(--ff-en);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.info-section h3 {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin: 28px 0 10px;
}
.info-section p {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 2;
  color: var(--text-mid);
}
.info-section p + p { margin-top: 12px; }
.info-section ul, .info-section ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-section ul li, .info-section ol li {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
}
.info-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--border-mid);
  font-size: 0.7rem;
}
.info-section ol { counter-reset: ol-counter; }
.info-section ol li { counter-increment: ol-counter; }
.info-section ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-size: 0.75rem;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin-top: 8px;
}
.info-table th, .info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-weight: 300;
  color: var(--text-mid);
}
.info-table th {
  font-weight: 400;
  color: var(--text);
  background: var(--off-white);
  white-space: nowrap;
}
.info-table td { text-align: center; }
.info-table td:first-child { text-align: left; }
.info-note {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.8;
}
/* FAQ Accordion */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 0.85rem;
  font-weight: 400;
  text-align: left;
  gap: 16px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--ff-ui);
  color: var(--text);
}
.faq-q-icon {
  font-size: 1.2rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item.is-open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.3s ease;
}
.faq-item.is-open .faq-a { max-height: 400px; padding-bottom: 20px; }
/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--text);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--text);
  padding: 14px 40px;
  border: none;
  cursor: pointer;
  font-family: var(--ff-ui);
  transition: background 0.3s, gap 0.3s;
  width: fit-content;
}
.form-submit::after { content: '→'; }
.form-submit:hover { background: #333; gap: 18px; }
.form-notice {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .info-page-hero { padding: 48px 20px 40px; }
  .info-page-body  { padding: 48px 20px 80px; }
  .form-row        { grid-template-columns: 1fr; }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1160px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top   { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 960px) {
  .section-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text-col { padding: 64px 40px; order: 2; }
  .hero-img-col { height: 56vw; min-height: 320px; order: 1; }

  .story-inner  { grid-template-columns: 1fr; max-width: 540px; gap: 48px; }
  .insta-grid   { grid-template-columns: repeat(4, 1fr); }

  .category-grid { grid-template-columns: 1fr 1fr; }
  .category-card:first-child { grid-row: span 1; aspect-ratio: 3 / 4; }
}

@media (max-width: 768px) {
  .header-inner { padding: 0 20px; gap: 0; }
  .header-nav   { display: none; }
  .menu-toggle  { display: flex; }
  .header-icons .header-icon-btn span { display: none; }
  .header-right { gap: 16px; }

  .product-section-inner,
  .category-inner { padding: 0 20px; }
  .product-section { padding: 64px 0; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }

  .story-inner { padding: 0 20px; }
  .section-story { padding: 72px 0; }

  .footer-top   { grid-template-columns: 1fr 1fr; padding: 0 0 40px; }
  #site-footer  { padding: 56px 20px 32px; }

  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .hero-text-col { padding: 48px 20px; }
  .hero-title { font-size: 2.4rem; }
  .section-head { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; }
}
