/* ============================================================
   OLUKIN LIFESTYLE BOUTIQUE — styles.css
   Palette: cream #FAF7F2 · blush #E8C5B8 · rose #C9897A
            charcoal #252220 · gold #BFA882
   Fonts: Cormorant Garamond (serif) · Inter (sans-serif)
   ============================================================ */

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

:root {
  --cream:        #FAF7F2;
  --cream-dark:   #F0EBE3;
  --blush:        #E8C5B8;
  --blush-dark:   #D9AFA0;
  --rose:         #C9897A;
  --charcoal:     #252220;
  --charcoal-mid: #4A4540;
  --gold:         #BFA882;
  --gold-light:   #D4BC9A;
  --white:        #FFFFFF;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  --ease:  0.3s ease;
  --ease-slow: 0.65s ease;

  --nav-h: 72px;
  --banner-h: 40px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; }

/* ===== WIP BANNER ===== */
.wip-banner {
  background: var(--charcoal);
  color: rgba(250,247,242,0.8);
  text-align: center;
  padding: 0 20px;
  height: var(--banner-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.wip-banner .wip-diamond { color: var(--gold-light); font-size: 0.6rem; }
.wip-banner a {
  color: var(--blush);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,197,184,0.4);
  transition: color var(--ease);
}
.wip-banner a:hover { color: var(--gold-light); }

/* ===== NAVIGATION ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--cream);
  height: var(--nav-h);
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(191,168,130,0.18);
  transition: box-shadow var(--ease);
}
nav.scrolled { box-shadow: 0 2px 32px rgba(37,34,32,0.09); }

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}

/* Circular logo treatment (nav + footer) */
.logo-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
  border: 1.5px solid rgba(191,168,130,0.35);
  box-shadow: 0 2px 16px rgba(37,34,32,0.10);
  padding: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal-mid);
  position: relative;
  transition: color var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--ease);
}
.nav-links a:hover            { color: var(--charcoal); }
.nav-links a:hover::after     { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn-nav-outline,
.btn-nav-filled {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid var(--charcoal);
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-nav-outline { color: var(--charcoal); background: transparent; }
.btn-nav-outline:hover { background: var(--charcoal); color: var(--cream); }
.btn-nav-filled  { color: var(--cream); background: var(--charcoal); }
.btn-nav-filled:hover  { background: var(--rose); border-color: var(--rose); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--charcoal);
  transition: all var(--ease);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--cream);
  padding: 32px 24px 40px;
  transform: translateY(-110%);
  transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
  z-index: 88;
  border-bottom: 1px solid rgba(191,168,130,0.25);
  box-shadow: 0 12px 40px rgba(37,34,32,0.1);
}
.mobile-menu.open { transform: translateY(0); }

.mobile-menu ul {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu ul a {
  display: block;
  padding: 12px 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal-mid);
  border-bottom: 1px solid rgba(191,168,130,0.15);
  transition: color var(--ease);
}
.mobile-menu ul a:hover { color: var(--charcoal); }
.mobile-menu-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ===== SHARED TYPOGRAPHY / ATOMS ===== */
.section-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.section-title em  { font-style: italic; color: var(--rose); }
.section-title.light { color: var(--cream); }

.section-subtitle {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal-mid);
  letter-spacing: 0.02em;
  max-width: 500px;
}
.section-subtitle.light { color: rgba(250,247,242,0.65); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-subtitle { margin: 0 auto; }

/* Primary / secondary buttons */
.btn-primary {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: 16px 42px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--ease);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rose);
  transform: translateX(-101%);
  transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
}
.btn-primary:hover::before  { transform: translateX(0); }
.btn-primary:hover           { border-color: var(--rose); }
.btn-primary span            { position: relative; z-index: 1; }

.btn-primary.btn-light {
  background: transparent;
  border-color: rgba(250,247,242,0.5);
  color: var(--cream);
  margin-top: 40px;
}
.btn-primary.btn-light::before { background: var(--rose); }
.btn-primary.btn-light:hover { border-color: var(--rose); }

.btn-secondary {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
  background: transparent;
  border: 1px solid rgba(37,34,32,0.28);
  padding: 16px 42px;
  transition: all var(--ease);
}
.btn-secondary:hover { border-color: var(--charcoal); background: var(--cream-dark); }

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 80px;
  background: var(--cream);
}
.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(4rem, 6.5vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--charcoal);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--rose); }

.hero-tagline {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal-mid);
  max-width: 380px;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 10s ease;
}
.hero:hover .hero-image img { transform: scale(1.04); }
.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(250,247,242,0.15) 0%, transparent 35%);
}

/* ===== CATEGORY STRIP ===== */
.categories-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.category-card {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 3/4;
  text-decoration: none;
}
.category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}
.category-card:hover img { transform: scale(1.07); }
.category-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(37,34,32,0.72) 0%, rgba(37,34,32,0.08) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
}
.category-label { color: var(--white); }
.category-label h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.category-label p {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.cat-arrow {
  display: block;
  margin-top: 14px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity var(--ease), transform var(--ease);
}
.category-card:hover .cat-arrow { opacity: 1; transform: translateX(0); }

/* ===== SHOP SECTION ===== */
.shop-section { padding: 100px 80px; }

/* Filter tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(191,168,130,0.28);
  margin-bottom: 56px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-tabs::-webkit-scrollbar { display: none; }

.filter-tab {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  background: none;
  border: none;
  padding: 13px 28px;
  cursor: pointer;
  position: relative;
  transition: color var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.filter-tab::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 2px;
  background: var(--charcoal);
  transition: width var(--ease);
}
.filter-tab.active          { color: var(--charcoal); }
.filter-tab.active::after   { width: 100%; }
.filter-tab:hover           { color: var(--charcoal); }

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.product-card { overflow: hidden; }
.product-card.hidden { display: none; }
.product-card.fade-in { animation: cardFadeIn 0.4s ease forwards; }

@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream-dark);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-hover-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(37,34,32,0.82), transparent);
  display: flex;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-hover-overlay { transform: translateY(0); }

.btn-enquire {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
  background: var(--cream);
  padding: 12px 28px;
  border: none;
  transition: background var(--ease);
}
.btn-enquire:hover { background: var(--blush); }

.product-info { padding: 18px 0 0; }
.product-category {
  display: block;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.25;
}
.product-price {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  letter-spacing: 0.04em;
}

/* Shop bottom CTA */
.shop-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid rgba(191,168,130,0.22);
  flex-wrap: wrap;
  text-align: center;
}
.shop-cta-row p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  letter-spacing: 0.03em;
}

/* ===== VIDEO SECTION ===== */
.video-section { background: var(--charcoal); }
.video-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.video-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  overflow: hidden;
}
.video-tile {
  position: relative;
  overflow: hidden;
}
.video-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-tile--offset { margin-top: 40px; }

.video-text-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 72px;
  background: var(--charcoal);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: var(--cream-dark);
  padding: 100px 0 0;
  overflow: hidden;
}
.gallery-header { padding: 0 80px; margin-bottom: 56px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}
.gallery-item {
  overflow: hidden;
  aspect-ratio: 3/4;
}
.gallery-item.gi-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ===== ABOUT SECTION ===== */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  padding: 120px 80px;
}
.about-text .section-eyebrow,
.about-text .section-title { text-align: left; }
.about-body {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--charcoal-mid);
  letter-spacing: 0.02em;
}
.about-body p { margin-bottom: 18px; }
.about-body p:last-child { margin-bottom: 0; }
.about-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 48px; }

.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}
.about-accent-border {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 180px; height: 180px;
  border: 1px solid var(--blush);
  z-index: -1;
  pointer-events: none;
}
.about-badge {
  position: absolute;
  top: 36px; left: -28px;
  background: var(--cream);
  border: 1px solid rgba(191,168,130,0.3);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(37,34,32,0.12);
  min-width: 120px;
}
.about-badge strong {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--charcoal);
  display: block;
  line-height: 1;
}
.about-badge span {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 8px;
}

/* ===== CONTACT STRIP ===== */
.contact-strip {
  background: var(--blush);
  padding: 96px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}
.contact-strip-text .section-eyebrow { color: var(--charcoal-mid); }
.contact-strip-text .section-title   { font-size: clamp(2.2rem,3.5vw,3.2rem); }
.contact-strip-text .section-subtitle { margin: 0; max-width: 420px; }
.contact-strip-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}
.btn-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all var(--ease);
  background: transparent;
}
.btn-contact svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-contact:hover { background: var(--charcoal); color: var(--cream); }

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 88px 80px 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}
.footer-logo {
  height: auto;
  width: auto;
  filter: none;
  margin-bottom: 24px;
}
.footer-logo.logo-circle {
  width: 72px;
  height: 72px;
  padding: 8px;
  background: var(--white);
  border-color: rgba(250,247,242,0.2);
}
.footer-brand p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(250,247,242,0.55);
  max-width: 280px;
}
.footer-tagline {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-light);
  display: block;
  margin-top: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(250,247,242,0.18);
  color: rgba(250,247,242,0.55);
  text-decoration: none;
  transition: all var(--ease);
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { border-color: var(--gold-light); color: var(--gold-light); }

.footer-col h4 {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col ul li,
.footer-col ul li a {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(250,247,242,0.58);
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  display: block;
  transition: color var(--ease);
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-map-link { margin-top: 14px !important; }
.footer-map-link a { color: var(--gold-light) !important; }
.footer-map-link a:hover { color: var(--cream) !important; }

.footer-bottom {
  border-top: 1px solid rgba(250,247,242,0.09);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(250,247,242,0.35);
  letter-spacing: 0.06em;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible          { opacity: 1; transform: translateY(0); }
.reveal-d1               { transition-delay: 0.12s; }
.reveal-d2               { transition-delay: 0.22s; }
.reveal-d3               { transition-delay: 0.34s; }

/* ===== RESPONSIVE ===== */

@media (max-width: 1280px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1100px) {
  nav             { padding: 0 32px; }
  .shop-section   { padding: 80px 40px; }
  .about-section  { padding: 80px 40px; gap: 64px; }
  .contact-strip  { padding: 72px 40px; }
  footer          { padding: 72px 40px 40px; }
  .hero-content   { padding: 64px 52px; }
  .video-text-panel { padding: 64px 52px; }
  .gallery-header { padding: 0 40px; }
}

@media (max-width: 960px) {
  /* Hero stacks */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content { padding: 80px 40px 60px; }
  .hero-image   { aspect-ratio: 4/3; }
  .hero-image img { height: 100%; }

  /* Category strip 2-col */
  .categories-strip { grid-template-columns: 1fr 1fr; }
  .categories-strip .category-card:last-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }

  /* 2-col products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }

  /* Video stacks */
  .video-section-inner { grid-template-columns: 1fr; }
  .video-pair          { grid-template-columns: 1fr 1fr; min-height: 50vw; }
  .video-tile--offset  { margin-top: 0; }
  .video-text-panel    { padding: 64px 40px; }

  /* About stacks */
  .about-section { grid-template-columns: 1fr; gap: 48px; }
  .about-image   { display: none; }

  /* Contact strip stacks */
  .contact-strip {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 72px 40px;
  }
  .contact-strip-actions { flex-direction: row; flex-wrap: wrap; }
  .btn-contact { flex: 1; min-width: 180px; }

  /* Gallery 3-col */
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.gi-tall { grid-row: auto; aspect-ratio: 3/4; }

  /* Footer 2-col */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  :root { --nav-h: 64px; --banner-h: 36px; }

  nav { padding: 0 20px; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }

  .wip-banner { font-size: 0.62rem; }

  .hero-content   { padding: 60px 20px 48px; }
  .hero-title     { font-size: clamp(3rem,12vw,4.5rem); }
  .hero-ctas      { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; padding: 15px 28px; }

  .categories-strip { grid-template-columns: 1fr; }
  .categories-strip .category-card:last-child { grid-column: 1; aspect-ratio: 3/4; }

  .shop-section   { padding: 60px 20px; }
  .filter-tab     { padding: 12px 18px; font-size: 0.66rem; }
  .products-grid  { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-name   { font-size: 1rem; }

  .shop-cta-row { flex-direction: column; }
  .shop-cta-row .btn-primary { width: auto; }

  .video-pair  { grid-template-columns: 1fr; }
  .video-text-panel { padding: 48px 20px; }

  .gallery-section { padding-top: 64px; }
  .gallery-header  { padding: 0 20px; }
  .gallery-grid    { grid-template-columns: repeat(2, 1fr); }

  .about-section  { padding: 64px 20px; }
  .about-ctas     { flex-direction: column; }
  .about-ctas .btn-primary,
  .about-ctas .btn-secondary { width: 100%; text-align: center; }

  .contact-strip  { padding: 60px 20px; }
  .contact-strip-actions { flex-direction: column; }
  .btn-contact    { flex: none; }

  footer { padding: 60px 20px 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  .section-header { margin-bottom: 40px; }
  .section-title  { font-size: clamp(2rem, 8vw, 2.8rem); }
}

@media (max-width: 380px) {
  .products-grid { grid-template-columns: 1fr; }
}
