/* ============================================
   WHITE PIXIES - Design System
   Warm Handcraft Luxury Aesthetic
   ============================================ */

/* --- Tokens --- */
:root {
  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Palette — Brand Tones (Apr 2026) */
  --ink: #000000;
  --ink-light: hsl(30, 6%, 22%);
  --ink-muted: hsl(30, 5%, 45%);
  --sage: #76928f;
  --sage-light: hsl(174, 14%, 93%);
  --gold: #cec0a4;
  --gold-light: hsl(36, 30%, 95%);
  --cream: #faf9f4;
  --cream-dark: hsl(40, 18%, 91%);
  --taupe: #afa288;
  --taupe-light: hsl(36, 22%, 93%);
  --rose: hsl(355, 40%, 58%);
  --rose-light: hsl(355, 50%, 95%);
  --white: #FFFFFF;
  --border: hsl(36, 18%, 87%);

  /* Spacing */
  --section-pad: clamp(56px, 8vw, 96px);
  --section-pad-sm: clamp(32px, 5vw, 56px);
  --container: 1200px;
  --gap: 24px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.3s;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
input, select, textarea { font: inherit; }

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* --- Typography --- */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--sage);
}

.section-intro {
  font-size: 16px;
  color: var(--ink-light);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 48px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease);
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--ink);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px hsla(174, 12%, 52%, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid hsla(35, 50%, 97%, 0.4);
}
.btn--outline:hover {
  background: hsla(35, 50%, 97%, 0.15);
  border-color: var(--cream);
}

.btn--sm { padding: 10px 24px; font-size: 13px; }
.btn--lg { padding: 16px 40px; font-size: 15px; width: 100%; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: hsla(0, 0%, 0%, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--dur) var(--ease);
}

.nav--scrolled {
  background: hsla(35, 50%, 97%, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav--scrolled .nav__logo,
.nav--scrolled .nav__link { color: var(--ink); text-shadow: none; }
.nav--scrolled .nav__cta {
  background: var(--ink);
  color: var(--cream);
  backdrop-filter: none;
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.5px;
  text-shadow: 0 1px 8px hsla(0, 0%, 0%, 0.5);
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: hsla(35, 50%, 97%, 0.9);
  transition: color var(--dur) var(--ease);
  letter-spacing: 0.3px;
  text-shadow: 0 1px 6px hsla(0, 0%, 0%, 0.4);
}
.nav__link:hover { color: var(--cream); }
.nav--scrolled .nav__link:hover { color: var(--sage); }

.nav__cta {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  background: hsla(35, 50%, 97%, 0.15);
  color: var(--cream);
  border: 1px solid hsla(35, 50%, 97%, 0.25);
  transition: all var(--dur) var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav__cta:hover {
  background: var(--cream);
  color: var(--ink);
}

.nav__burger { display: none; }
.nav__mobile-cta { display: none; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, hsla(0, 0%, 0%, 0.55) 0%, hsla(0, 0%, 0%, 0.3) 35%, hsla(0, 0%, 0%, 0.65) 100%),
    radial-gradient(ellipse at 50% 50%, transparent 20%, hsla(0, 0%, 0%, 0.5) 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 0;
  max-width: 800px;
}

.hero__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
  text-shadow: 0 1px 4px hsla(0, 0%, 0%, 0.4);
  padding: 8px 24px;
  border-radius: 40px;
  background: hsla(0, 0%, 0%, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsla(38, 40%, 54%, 0.2);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease 0.1s both;
  text-shadow: 0 2px 16px hsla(0, 0%, 0%, 0.5), 0 1px 3px hsla(0, 0%, 0%, 0.3);
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: hsla(35, 50%, 97%, 0.9);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.7;
  animation: fadeUp 0.8s ease 0.2s both;
  text-shadow: 0 1px 8px hsla(0, 0%, 0%, 0.5);
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero__proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 56px;
  animation: fadeUp 0.8s ease 0.4s both;
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  text-shadow: 0 1px 8px hsla(0, 0%, 0%, 0.6);
}

.hero__stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  filter: drop-shadow(0 1px 4px hsla(0, 0%, 0%, 0.4));
}

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

/* ============================================
   OCCASIONS
   ============================================ */
.occasions {
  padding: var(--section-pad-sm) 0;
  background: var(--white);
}

.occasions__eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-muted);
  margin-bottom: 28px;
  text-align: center;
}

.occasions__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.occasion-card {
  text-align: center;
  padding: 24px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--dur) var(--ease);
  cursor: pointer;
}

.occasion-card:hover {
  border-color: var(--sage);
  background: var(--sage-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px hsla(174, 12%, 52%, 0.1);
}

.occasion-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  border-radius: 10px;
  background: var(--sage-light);
  color: var(--sage);
  transition: all var(--dur) var(--ease);
}

.occasion-card:hover .occasion-card__icon {
  background: var(--sage);
  color: var(--white);
}

.occasion-card__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.occasion-card__text {
  font-size: 11px;
  color: var(--ink-muted);
  line-height: 1.4;
}

/* ============================================
   WORKSHOPS
   ============================================ */
.workshops {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.workshops__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.workshop-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--dur) var(--ease);
  position: relative;
}

.workshop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px hsla(0, 0%, 0%, 0.1);
}

.workshop-card[data-tag]::before {
  content: attr(data-tag);
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--gold);
  color: var(--white);
  z-index: 2;
}

.workshop-card__image {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.workshop-card__image::after {
  content: 'Photo coming soon';
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 40px;
  background: hsla(0, 0%, 100%, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid hsla(0, 0%, 100%, 0.15);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11px;
  color: hsla(30, 20%, 30%, 0.5);
  letter-spacing: 0.4px;
  pointer-events: none;
}

.workshop-card__body {
  padding: 24px;
}

.workshop-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.workshop-card__duration {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-muted);
}

.workshop-card__price {
  font-size: 13px;
  font-weight: 700;
  color: var(--sage);
}

.workshop-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.workshop-card__text {
  font-size: 13px;
  color: var(--ink-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.workshop-card__includes {
  list-style: none;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
}

.workshop-card__includes li {
  font-size: 12px;
  color: var(--ink-light);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.workshop-card__includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.workshops__note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--ink-muted);
}

/* ============================================
   LIVE STATIONS
   ============================================ */
.live-stations {
  padding: var(--section-pad) 0;
  background: var(--white);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

/* Subtle grain texture */
.live-stations::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px;
  pointer-events: none;
}

.live-stations .section-title em { color: var(--sage); }

.live-stations__intro {
  font-size: 16px;
  color: var(--ink-light);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 52px;
}

.live-stations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 52px;
}

.live-station-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.live-station-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sage), transparent);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.live-station-card:hover {
  border-color: var(--sage);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px hsla(0, 0%, 0%, 0.08);
}

.live-station-card:hover::before {
  opacity: 1;
}

.live-station-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--sage-light);
  border: 1px solid hsl(174, 14%, 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  flex-shrink: 0;
}

.live-station-card__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.3px;
}

.live-station-card__text {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.8;
}

.live-station-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.live-station-card__features li {
  font-size: 13px;
  color: var(--ink-light);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.live-station-card__features li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 8px;
  top: 3px;
}

.live-station-card__btn {
  align-self: flex-start;
  margin-top: 8px;
  color: var(--ink) !important;
  border-color: var(--border) !important;
  font-size: 13px;
  padding: 10px 24px;
}

.live-station-card__btn:hover {
  background: var(--sage) !important;
  border-color: var(--sage) !important;
  color: var(--white) !important;
}

.live-stations__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  gap: 24px;
  flex-wrap: wrap;
}

.live-stations__bottom p {
  font-size: 14px;
  color: var(--ink-muted);
  max-width: 480px;
  line-height: 1.6;
}

.live-stations__bottom .btn--primary {
  background: var(--sage);
  color: var(--white);
  flex-shrink: 0;
}

.live-stations__bottom .btn--primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

/* ============================================
   SHOP
   ============================================ */
.shop {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.shop__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.shop__intro {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.8;
  max-width: 540px;
  margin-top: 12px;
}

.shop__view-all {
  flex-shrink: 0;
  font-size: 14px;
  white-space: nowrap;
}

.shop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.shop__product {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}

.shop__product:hover {
  box-shadow: 0 16px 40px hsla(0, 0%, 0%, 0.1);
  transform: translateY(-4px);
}

.shop__product--featured {
  grid-column: span 1;
  border-color: var(--gold);
  box-shadow: 0 8px 24px hsla(38, 40%, 54%, 0.15);
}

.shop__product-img {
  height: 160px;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 14px;
}

.shop__product-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--sage);
  color: var(--white);
}

.shop__product-tag--new {
  background: var(--sage);
}

.shop__product-tag--premium {
  background: var(--gold);
}

.shop__product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shop__product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

.shop__product-desc {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.65;
  flex: 1;
}

.shop__product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.shop__product-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

.shop__product-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.shop__product-btn:hover {
  color: var(--taupe);
}

/* Perks row */
.shop__perks {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 24px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
}

.shop__perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-light);
  white-space: nowrap;
}

.shop__perk svg { color: var(--gold); flex-shrink: 0; }

/* ============================================
   CORPORATE GIFTING
   ============================================ */
.gifting {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.gifting__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.gifting__intro {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.8;
  max-width: 580px;
  margin-top: 16px;
}

.gifting__header-badges {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}

.gifting__badge {
  text-align: center;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 80px;
}

.gifting__badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.gifting__badge-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-muted);
}

/* Product Cards */
.gifting__products {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
  align-items: start;
}

.gifting__product {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--dur) var(--ease);
  position: relative;
}

.gifting__product:hover {
  box-shadow: 0 12px 32px hsla(0, 0%, 0%, 0.08);
  transform: translateY(-4px);
}

.gifting__product--featured {
  background: var(--white);
  border-color: var(--sage);
  transform: translateY(-8px);
  box-shadow: 0 20px 48px hsla(174, 12%, 52%, 0.12);
}

.gifting__product--featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 56px hsla(174, 12%, 52%, 0.18);
}

.gifting__product--featured .gifting__product-title,
.gifting__product--featured .gifting__product-icon {
  color: var(--ink);
}

.gifting__product--featured .gifting__product-icon {
  background: var(--sage-light);
  border-color: hsl(174, 14%, 85%);
}

.gifting__product--featured .gifting__product-desc {
  color: var(--ink-light);
}

.gifting__product--featured .gifting__product-specs li {
  color: var(--ink-light);
  border-color: var(--border);
}

.gifting__product--featured .gifting__product-specs strong {
  color: var(--ink);
}

.gifting__product--featured .gifting__product-cta {
  color: var(--sage);
}

.gifting__product--featured .gifting__product-cta:hover {
  color: var(--taupe);
}

.gifting__product-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.gifting__product-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--taupe-light);
  border: 1px solid hsl(36, 18%, 87%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.gifting__product-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
}

.gifting__product-desc {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.7;
}

.gifting__product-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.gifting__product-specs li {
  font-size: 12.5px;
  color: var(--ink-light);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}

.gifting__product-specs li:last-child { border-bottom: none; }

.gifting__product-specs strong {
  color: var(--ink);
  font-weight: 600;
}

.gifting__product-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
  align-self: flex-start;
}

.gifting__product-cta:hover {
  color: var(--taupe);
}

/* Occasions */
.gifting__occasions {
  margin-bottom: 48px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.gifting__occasions-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.gifting__occasion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gifting__occasion-chips span {
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--gold-light);
  border: 1px solid var(--border);
  color: var(--ink-light);
  transition: all var(--dur) var(--ease);
  cursor: default;
}

.gifting__occasion-chips span:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.gifting__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.gifting__cta p {
  font-size: 14px;
  color: var(--ink-muted);
  max-width: 480px;
  line-height: 1.6;
}

/* ============================================
   CORPORATE WORKSHOPS
   ============================================ */
.corporate {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.corporate__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.corporate__left {
  position: sticky;
  top: 120px;
}

.corporate__intro {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.corporate__themes {
  margin-bottom: 36px;
}

.corporate__themes-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 14px;
}

.corporate__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.corporate__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 100px;
  background: var(--sage-light);
  color: var(--sage);
  border: 1px solid hsl(174, 14%, 85%);
  transition: all var(--dur) var(--ease);
  cursor: default;
}

.corporate__chip:hover {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
  transform: translateY(-1px);
}

.corporate__customise-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.corporate__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.corporate__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--dur) var(--ease);
}

.corporate__item:last-child { border-bottom: none; }

.corporate__item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--sage-light);
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--dur) var(--ease);
}

.corporate__item:hover .corporate__item-icon {
  background: var(--sage);
  color: var(--white);
}

.corporate__item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.corporate__item p {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.7;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__paragraph {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.about__stat { text-align: center; }

.about__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--sage);
}

.about__stat-label {
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.about__image-placeholder {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #cec0a4, #afa288);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__image-placeholder::after {
  content: 'Studio photo coming soon';
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 40px;
  background: hsla(0, 0%, 100%, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: hsla(30, 20%, 30%, 0.45);
  letter-spacing: 0.4px;
  pointer-events: none;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--cream);
  color: var(--ink);
}

.testimonials .section-label { color: var(--sage); }
.testimonials .section-title { color: var(--ink); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.testimonial-card {
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
}

.testimonial-card__stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-card__stars svg {
  flex-shrink: 0;
}

.testimonial-card__text {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

/* ============================================
   CLIENTS
   ============================================ */
.clients {
  padding: var(--section-pad-sm) 0 0;
  background: var(--cream);
  overflow: hidden;
}

.clients__subtitle {
  font-size: 15px;
  color: var(--ink-light);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.clients__marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: var(--section-pad);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.clients__track {
  overflow: hidden;
  width: 100%;
}

.clients__rail {
  display: flex;
  gap: 16px;
  width: max-content;
}

.clients__track--row1 .clients__rail {
  animation: marquee-left 35s linear infinite;
}

.clients__track--row2 .clients__rail {
  animation: marquee-right 40s linear infinite;
}

@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Pause on hover */
.clients__track:hover .clients__rail {
  animation-play-state: paused;
}

.client-logo {
  flex-shrink: 0;
  width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: all var(--dur) var(--ease);
}

.client-logo:hover {
  border-color: var(--sage);
  box-shadow: 0 8px 24px hsla(174, 12%, 52%, 0.1);
  transform: translateY(-3px);
}

.client-logo img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.65);
  transition: filter var(--dur) var(--ease);
  display: block;
}

.client-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

/* Text-only placeholder for logos we can't load */
.client-logo--text {
  background: var(--cream-dark);
}

.client-logo--text span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.3px;
  text-align: center;
  transition: color var(--dur) var(--ease);
}

.client-logo--text:hover span {
  color: var(--sage);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: var(--section-pad-sm) 0;
  background: var(--cream);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.gallery__item {
  border-radius: var(--radius-md);
  transition: transform var(--dur) var(--ease);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__item::after {
  content: 'Photo coming soon';
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 40px;
  background: hsla(0, 0%, 100%, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid hsla(0, 0%, 100%, 0.15);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11px;
  color: hsla(30, 20%, 30%, 0.45);
  letter-spacing: 0.4px;
  pointer-events: none;
}

.gallery__item:hover { transform: scale(1.02); }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }

/* ============================================
   VISIT
   ============================================ */
.visit {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.visit__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.visit__detail {
  margin-bottom: 28px;
}

.visit__detail h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.visit__detail p {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.7;
}

/* ============================================
   BOOKING
   ============================================ */
.booking {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.booking__layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.booking__info {
  position: sticky;
  top: 120px;
}

.booking__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.15;
}

.booking__text {
  font-size: 15px;
  color: var(--ink-light);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 400px;
}

.booking__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-light);
}

.booking__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px hsla(30, 10%, 9%, 0.06);
}

.booking__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Step Progress Bar */
.steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 8px;
}

.steps-bar__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.steps-bar__step span {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.3px;
  transition: color var(--dur) var(--ease);
}

.steps-bar__step--active span,
.steps-bar__step--done span {
  color: var(--sage);
}

.steps-bar__dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid var(--border);
  color: var(--ink-muted);
  background: var(--white);
  transition: all var(--dur) var(--ease);
}

.steps-bar__step--active .steps-bar__dot {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--white);
}

.steps-bar__step--done .steps-bar__dot {
  border-color: var(--sage);
  background: var(--sage-light);
  color: var(--sage);
}

.steps-bar__line {
  width: 48px;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
  margin-bottom: 22px;
  transition: background var(--dur) var(--ease);
}

/* Form Steps */
.form-step {
  display: none;
  flex-direction: column;
  gap: 20px;
  animation: stepFadeIn 0.3s ease;
}

.form-step--active {
  display: flex;
}

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

/* Step Navigation */
.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Workshop Radio Selector */
.workshop-select {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.workshop-option {
  cursor: pointer;
}

.workshop-option input { display: none; }

.workshop-option__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease);
}

.workshop-option input:checked + .workshop-option__content {
  border-color: var(--sage);
  background: var(--sage-light);
}

.workshop-option:hover .workshop-option__content {
  border-color: var(--sage);
}

.workshop-option__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.workshop-option__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.workshop-option__duration {
  font-size: 11px;
  color: var(--ink-muted);
}

.workshop-option__price {
  font-size: 16px;
  font-weight: 700;
  color: var(--sage);
}

.workshop-option__price small {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-muted);
}

/* Time Slot Picker */
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.time-slot {
  cursor: pointer;
}

.time-slot input { display: none; }

.time-slot span {
  display: block;
  text-align: center;
  padding: 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--dur) var(--ease);
  color: var(--ink-light);
}

.time-slot:hover span {
  border-color: var(--sage);
}

.time-slot input:checked + span {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--white);
}

/* Participant Counter */
.participant-counter {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}

.counter-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--ink);
  transition: background var(--dur) var(--ease);
  border: none;
  cursor: pointer;
}

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

.counter-value {
  width: 56px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  border: none;
  background: transparent;
  color: var(--ink);
  -moz-appearance: textfield;
  appearance: textfield;
}

.counter-value::-webkit-inner-spin-button,
.counter-value::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 14px;
  color: var(--ink);
  transition: border-color var(--dur) var(--ease);
  outline: none;
}

.form-input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px hsla(174, 12%, 52%, 0.1);
}

/* Price Summary */
.booking__summary {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.booking__summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-light);
  padding: 6px 0;
}

.booking__summary-total {
  border-top: 1px solid var(--border);
  margin-top: 6px;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.booking__disclaimer {
  font-size: 11px;
  color: var(--ink-muted);
  text-align: center;
  line-height: 1.5;
}

/* Booking CTA (homepage) */
.booking-cta {
  padding: var(--section-pad-sm) 0;
  background: var(--cream);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 64px 0 32px;
  background: var(--taupe-light);
  color: var(--ink-muted);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 8px;
}

.footer__tagline {
  font-size: 13px;
  color: var(--ink-muted);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 13px;
  padding: 4px 0;
  transition: color var(--dur) var(--ease);
}

.footer__col a:hover { color: var(--sage); }

.footer__bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
}

/* ============================================
   FLOATING WHATSAPP CTA
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: hsl(142, 70%, 41%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px hsla(142, 70%, 30%, 0.4);
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px hsla(142, 70%, 30%, 0.5);
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .occasions__grid { grid-template-columns: repeat(3, 1fr); }
  .workshops__grid { grid-template-columns: repeat(2, 1fr); }
  .booking__layout { grid-template-columns: 1fr; gap: 48px; }
  .booking__info { position: static; }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    background: hsla(0, 0%, 0%, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid hsla(35, 50%, 97%, 0.1);
  }

  .nav__links--open {
    display: flex;
  }

  .nav__links--open .nav__link {
    padding: 14px 0;
    font-size: 16px;
    color: hsla(35, 50%, 97%, 0.85);
    border-bottom: 1px solid hsla(35, 50%, 97%, 0.08);
    text-shadow: none;
  }
  .nav__links--open .nav__link:last-child { border-bottom: none; }
  .nav__links--open .nav__link:hover { color: var(--gold); }

  /* Show CTA inside mobile menu */
  .nav__cta {
    display: none;
  }
  .nav__links--open + .nav__cta,
  .nav__links--open ~ .nav__cta {
    display: none;
  }

  /* Mobile CTA inside menu */
  .nav__mobile-cta {
    display: block;
    margin-top: 12px;
    padding: 14px 24px;
    background: var(--sage);
    color: var(--cream) !important;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-shadow: none;
  }

  .nav--scrolled .nav__mobile-cta {
    background: var(--ink);
  }

  .nav__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    z-index: 10;
  }
  .nav__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--cream);
    transition: all var(--dur) var(--ease);
    transform-origin: center;
  }

  .nav--scrolled .nav__burger span { background: var(--ink); }

  /* Burger → X animation */
  .nav__burger--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav__burger--open span:nth-child(2) {
    opacity: 0;
  }
  .nav__burger--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Scrolled state: dark background for open menu */
  .nav--scrolled .nav__links--open {
    background: hsla(35, 50%, 97%, 0.97);
    border-bottom: 1px solid var(--border);
  }
  .nav--scrolled .nav__links--open .nav__link {
    color: var(--ink);
    border-bottom-color: var(--border);
  }
  .nav--scrolled .nav__links--open .nav__link:hover {
    color: var(--sage);
  }
  .nav--scrolled .nav__links--open::after {
    background: var(--ink);
  }
  .nav--scrolled .nav__mobile-cta {
    background: var(--ink);
  }

  .hero__actions { flex-direction: column; align-items: center; }
  .occasions__grid { grid-template-columns: repeat(2, 1fr); }
  .workshops__grid { grid-template-columns: 1fr; }
  .live-stations__grid { grid-template-columns: 1fr; }
  .live-stations__bottom { flex-direction: column; align-items: flex-start; }
  .corporate__layout { grid-template-columns: 1fr; gap: 48px; }
  .corporate__left { position: static; }
  .shop__grid { grid-template-columns: 1fr 1fr; }
  .shop__header { flex-direction: column; align-items: flex-start; }
  .shop__perks { gap: 20px; justify-content: flex-start; }
  .gifting__products { grid-template-columns: 1fr; }
  .gifting__product--featured { transform: none; }
  .gifting__header { flex-direction: column; align-items: flex-start; }
  .gifting__header-badges { width: 100%; justify-content: space-between; }
  .gifting__cta { flex-direction: column; align-items: flex-start; }
  .about__layout { grid-template-columns: 1fr; }
  .about__image-placeholder { height: 300px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
  .visit__layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__links { grid-template-columns: repeat(3, 1fr); }
  .whatsapp-fab { bottom: 20px; right: 20px; width: 52px; height: 52px; }

  .client-logo { width: 150px; height: 68px; padding: 12px 16px; }
  .client-logo img { max-height: 40px; }
}

@media (max-width: 480px) {
  .occasions__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .occasion-card { padding: 20px 12px; }
  .footer__links { grid-template-columns: 1fr 1fr; gap: 24px; }
}
