/* Contatti — self-contained page CSS
 *
 * Struttura:
 *  1. :root tokens (globali, non scopati)
 *  2. Base reset + utilities + componenti dal vanilla style.css
 *     scopati sotto body.sitiamo-page--contatti
 *  3. @keyframes (globali, i nomi animazione non si scopano)
 *  4. @media del vanilla style.css con ogni regola interna scopata
 *  5. CSS specifico contatti (vanilla contatti.css), scopato
 *  6. @media specifico contatti, scopato
 */

/* BoomBoomParty — design tokens & base */

:root {
  /* Palette — soft sky / handcrafted */
  --sky-50:  #eef6f7;
  --sky-100: #dbeaec;
  --sky-200: #b9d5da;
  --sky-300: #8fbac2;
  --sky-400: #6a9ea8;
  --sky-500: #4d848f;
  --sky-600: #3a6b75;
  --sky-700: #2b525b;
  --sky-800: #1f3d44;

  --cream-50:  #fdfaf3;
  --cream-100: #f7efdf;
  --cream-200: #efe3c9;

  --blush:   #e8b5a8;
  --peach:   #f2c9a0;
  --butter:  #f5deb0;
  --sage:    #b8c9a3;
  --ink:     #2a1f14;
  --ink-60:  rgba(42, 31, 20, 0.6);
  --ink-40:  rgba(42, 31, 20, 0.4);

  --bg: var(--sky-200);
  --surface: var(--cream-50);

  /* Type */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: "Caveat", "Kalam", cursive;

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-soft: 0 2px 12px rgba(31, 61, 68, 0.08), 0 8px 40px rgba(31, 61, 68, 0.06);
  --shadow-card: 0 1px 2px rgba(31, 61, 68, 0.06), 0 12px 28px rgba(31, 61, 68, 0.10);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; padding: 0; }
img { display: block; max-width: 100%; }

/* Display type */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.02;
}
.display-upright {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.script {
  font-family: var(--font-script);
  font-weight: 500;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky-700);
}

/* Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream-50);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(42, 31, 20, 0.25); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink-40);
}
.btn-ghost:hover { background: rgba(42, 31, 20, 0.04); }
.btn-cream {
  background: var(--cream-50);
  color: var(--ink);
}
.btn-cream:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); }

/* Announcement bar */
.announce {
  background: var(--sky-700);
  color: var(--cream-100);
  font-size: 12.5px;
  letter-spacing: 0.06em;
}
.announce-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: 36px;
  overflow: hidden;
}
.announce-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.announce-item svg { opacity: 0.85; }

/* Header */
.header {
  position: relative;
  z-index: 20;
  padding: 20px 0;
  background: transparent;
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}
.nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}
.nav a {
  padding: 6px 0;
  position: relative;
  color: var(--ink);
  opacity: 0.85;
}
.nav a:hover { opacity: 1; }
.nav a.has-sub::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.5;
}
.logo-mark {
  height: 64px;
  width: auto;
  user-select: none;
}
.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}
.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .18s;
  position: relative;
}
.icon-btn:hover { background: rgba(255,255,255,0.35); }
.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--ink);
  color: var(--cream-50);
  font-size: 10px;
  font-weight: 600;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Hero */
.hero {
  position: relative;
  min-height: 720px;
  padding: 40px 0 120px;
  overflow: hidden;
}
.hero-sky {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--sky-200) 0%, var(--sky-100) 60%, var(--cream-50) 100%);
  z-index: -2;
}
.clouds-layer {
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
}
.cloud {
  position: absolute;
  opacity: 0.85;
  filter: drop-shadow(0 4px 16px rgba(31, 61, 68, 0.05));
}
@keyframes drift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(12px); }
}
.cloud.drift { animation: drift 14s ease-in-out infinite; }
.cloud.drift-slow { animation: drift 22s ease-in-out infinite; }

.hero-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}
.hero-copy h1 {
  margin: 18px 0 24px;
  font-size: clamp(48px, 6.4vw, 92px);
  color: var(--sky-800);
}
.hero-copy h1 .italic { font-style: italic; font-weight: 300; }
.hero-copy h1 .script-accent {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--blush);
  font-size: 0.9em;
  font-weight: 500;
}
.hero-copy p.lede {
  font-size: 18px;
  max-width: 520px;
  color: var(--ink);
  opacity: 0.78;
  margin: 0 0 36px;
}
.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-meta {
  margin-top: 48px;
  display: flex; gap: 40px;
  font-size: 13px;
  color: var(--sky-700);
}
.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--sky-800);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 2px;
}

/* Hero stage (product showcase) */
.hero-stage {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 560px;
  justify-self: end;
}
.stage-plate {
  position: absolute;
  inset: 4% 0 0 4%;
  background: var(--cream-100);
  border-radius: 50% 50% 48% 52% / 50% 50% 46% 54%;
  box-shadow: inset 0 -20px 60px rgba(212, 180, 131, 0.2), var(--shadow-soft);
}
.stage-ribbon {
  position: absolute;
  top: 10%; left: -6%;
  background: var(--blush);
  color: var(--cream-50);
  padding: 10px 22px 10px 30px;
  border-radius: 4px 20px 20px 4px;
  font-family: var(--font-script);
  font-size: 22px;
  transform: rotate(-4deg);
  box-shadow: var(--shadow-soft);
  z-index: 3;
}
.stage-product {
  position: absolute;
  inset: 10% 8% 10% 8%;
  display: grid;
  place-items: center;
  z-index: 2;
}
.stage-confetti {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Section common */
.section {
  position: relative;
  padding: 120px 0;
}
.section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 56px;
}
.section-header h2 {
  margin: 12px 0 0;
  font-size: clamp(40px, 4.6vw, 64px);
  color: var(--sky-800);
  max-width: 720px;
}
.section-header .link-more {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--ink-40);
  padding-bottom: 4px;
  transition: gap .18s;
}
.section-header .link-more:hover { gap: 14px; }

/* Categories — asymmetric stacked cards */
.cat-section {
  background: var(--cream-50);
  position: relative;
}
.cat-section::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--cream-50);
  clip-path: ellipse(100% 100% at 50% 100%);
  transform: translateY(-70px);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sky-100);
  cursor: pointer;
  transition: transform .3s ease;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.cat-card:hover { transform: translateY(-4px); }
.cat-card:hover .cat-illus { transform: scale(1.04) rotate(-2deg); }
.cat-illus {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition: transform .5s ease;
}
.cat-card.featured { grid-column: span 6; min-height: 440px; background: var(--sky-300); color: var(--cream-50); }
.cat-card.span-3 { grid-column: span 3; }
.cat-card.span-4 { grid-column: span 4; }
.cat-card.span-6 { grid-column: span 6; }
.cat-card.tall { min-height: 440px; }
.cat-card .cat-copy {
  position: relative;
  z-index: 2;
}
.cat-card .cat-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 6px;
}
.cat-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  margin: 0 0 8px;
  line-height: 1;
}
.cat-card.featured h3 { font-size: 44px; }
.cat-card .cat-count {
  font-size: 12.5px;
  opacity: 0.65;
}
.cat-card .cat-arrow {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-50);
  color: var(--ink);
  display: grid;
  place-items: center;
  transform: rotate(-45deg);
  transition: transform .25s ease;
}
.cat-card:hover .cat-arrow { transform: rotate(0deg); }
.cat-card.featured .cat-arrow { background: var(--cream-50); }

/* Palette variants */
.cat-card.c-blush { background: #e8c5b8; }
.cat-card.c-butter { background: var(--butter); }
.cat-card.c-sage { background: var(--sage); }
.cat-card.c-sky { background: var(--sky-200); }
.cat-card.c-cream { background: var(--cream-100); }

/* Story / Valentina */
.story {
  position: relative;
  padding: 140px 0;
  background: var(--cream-50);
}
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.story-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 50% 50% 48% 52% / 42% 58% 42% 58%;
  background: linear-gradient(135deg, var(--peach), var(--blush));
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.story-portrait .p-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 120px;
}
.story-portrait .p-tape {
  position: absolute;
  top: -12px; left: 30%;
  width: 90px; height: 30px;
  background: rgba(232, 181, 168, 0.5);
  transform: rotate(-6deg);
  backdrop-filter: blur(2px);
}
.story h2 {
  font-size: clamp(38px, 4.2vw, 56px);
  color: var(--sky-800);
  margin: 16px 0 24px;
}
.story p {
  font-size: 17px;
  color: var(--ink);
  opacity: 0.8;
  max-width: 520px;
  margin: 0 0 18px;
}
.story .sign {
  margin-top: 32px;
  font-family: var(--font-script);
  font-size: 34px;
  color: var(--sky-700);
}

/* Featured product + customizer */
.product {
  padding: 120px 0;
  background: var(--sky-100);
  position: relative;
}
.product-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.product-preview {
  position: sticky;
  top: 40px;
  aspect-ratio: 4 / 5;
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.preview-stage {
  flex: 1;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: var(--radius);
  background: radial-gradient(ellipse at center bottom, var(--cream-100), var(--cream-50) 70%);
  transition: background .4s ease;
}
.preview-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.preview-thumb {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  background: var(--cream-100);
  border: 2px solid transparent;
  display: grid; place-items: center;
  cursor: pointer;
  transition: border-color .18s;
}
.preview-thumb.active { border-color: var(--sky-600); }

.product-info h1 {
  font-size: clamp(40px, 4.4vw, 60px);
  color: var(--sky-800);
  margin: 8px 0 12px;
}
.product-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--sky-700);
  font-size: 13px;
  margin-bottom: 20px;
}
.product-meta-row .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--sky-400); }
.product-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 28px;
}
.product-price .note { font-size: 13px; font-family: var(--font-body); opacity: 0.6; margin-left: 10px; }
.product-desc {
  color: var(--ink);
  opacity: 0.78;
  margin: 0 0 32px;
  max-width: 480px;
}

.customizer {
  background: var(--cream-50);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.customizer-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--sky-800);
  margin-bottom: 4px;
}
.customizer-sub {
  font-size: 13px;
  color: var(--ink-60);
  margin-bottom: 24px;
}
.opt-group { margin-bottom: 22px; }
.opt-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-700);
  margin-bottom: 10px;
}
.opt-label .val { text-transform: none; letter-spacing: 0; color: var(--ink); font-weight: 500; }

.swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.swatch {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  position: relative;
  cursor: pointer;
  transition: transform .15s;
}
.swatch:hover { transform: scale(1.08); }
.swatch::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: inherit;
  background-color: var(--sw);
}
.swatch.active { border-color: var(--ink); }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: var(--cream-100);
  font-size: 13px;
  cursor: pointer;
  transition: all .15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid transparent;
}
.chip:hover { background: var(--cream-200); }
.chip.active {
  background: var(--sky-700);
  color: var(--cream-50);
}
.chip .chip-emoji { font-size: 15px; }

.name-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--sky-200);
  background: var(--cream-50);
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .15s;
}
.name-input:focus {
  outline: none;
  border-color: var(--sky-600);
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 20px;
}
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--sky-200);
  border-radius: var(--radius-pill);
  background: var(--cream-50);
}
.qty-btn { width: 40px; height: 44px; font-size: 18px; color: var(--sky-700); }
.qty-val { min-width: 36px; text-align: center; font-weight: 500; }

.add-to-cart {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.add-to-cart .btn { flex: 1; padding: 18px 24px; font-size: 15px; }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky-600);
  background: rgba(255,255,255,0.6);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  align-self: flex-start;
}
.live-badge .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: #8bc48b;
  box-shadow: 0 0 0 0 rgba(139, 196, 139, 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(139, 196, 139, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(139, 196, 139, 0); }
  100% { box-shadow: 0 0 0 0 rgba(139, 196, 139, 0); }
}

/* Product summary pills */
.summary-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.summary-pill {
  font-size: 11.5px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: var(--sky-100);
  color: var(--sky-700);
  letter-spacing: 0.04em;
}

/* Trust strip */
.trust {
  background: var(--cream-100);
  padding: 60px 0;
  border-top: 1px solid rgba(42, 31, 20, 0.06);
  border-bottom: 1px solid rgba(42, 31, 20, 0.06);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.trust-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  color: var(--sky-700);
}
.trust-item h4 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--sky-800);
}
.trust-item p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-60);
  line-height: 1.5;
}

/* Press / reviews strip */
.reviews {
  padding: 120px 0;
  background: var(--sky-600);
  color: var(--cream-50);
  position: relative;
  overflow: hidden;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.review {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.review .stars {
  color: var(--butter);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.review blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 20px;
}
.review .who {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  opacity: 0.85;
}
.review .who-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blush);
  display: grid; place-items: center;
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
}

/* Newsletter */
.newsletter {
  padding: 120px 0;
  background: var(--cream-50);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-inner {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.newsletter h2 {
  font-size: clamp(36px, 4vw, 52px);
  color: var(--sky-800);
  margin: 10px 0 16px;
}
.newsletter p {
  color: var(--ink-60);
  margin: 0 0 32px;
}
.news-form {
  display: flex;
  gap: 10px;
  background: var(--cream-100);
  border-radius: var(--radius-pill);
  padding: 6px;
  max-width: 480px;
  margin: 0 auto;
}
.news-form input {
  flex: 1;
  border: none;
  background: transparent;
  font: inherit;
  padding: 12px 18px;
  outline: none;
  color: var(--ink);
}
.news-form input::placeholder { color: var(--ink-40); }
.news-form .btn { padding: 12px 22px; }

.newsletter .bg-cloud {
  position: absolute;
  opacity: 0.6;
}

/* Footer */
.footer {
  background: var(--sky-800);
  color: var(--cream-100);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer h5 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--sky-200);
  font-weight: 500;
}
.footer a { display: block; padding: 6px 0; font-size: 14px; opacity: 0.85; }
.footer a:hover { opacity: 1; }
.footer .brand-block p {
  font-size: 13.5px;
  line-height: 1.6;
  opacity: 0.7;
  max-width: 320px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12px;
  opacity: 0.6;
}
.footer-bottom .payments { display: flex; gap: 10px; }

/* Tweaks panel */
.tweaks-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 280px;
  background: var(--cream-50);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  padding: 18px;
  z-index: 100;
  font-size: 13px;
  border: 1px solid rgba(42, 31, 20, 0.08);
  display: none;
}
.tweaks-panel.open { display: block; }
.tweaks-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--sky-800);
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tweaks-title button { font-size: 18px; color: var(--ink-60); }
.tweak-group { margin-bottom: 14px; }
.tweak-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky-700);
  margin-bottom: 8px;
}
.tweak-swatches {
  display: flex;
  gap: 8px;
}
.tweak-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
}
.tweak-swatch.active { border-color: var(--ink); }
.tweak-row { display: flex; gap: 6px; flex-wrap: wrap; }
.tweak-row button {
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: var(--cream-100);
  font-size: 12px;
}
.tweak-row button.active { background: var(--sky-700); color: var(--cream-50); }

/* Wave divider */
.wave-top, .wave-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  pointer-events: none;
}
.wave-top { top: -1px; }
.wave-bottom { bottom: -1px; transform: scaleY(-1); }

/* Responsive */
@media (max-width: 1024px) {
  .hero-content, .story-grid, .product-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stage { justify-self: center; max-width: 420px; }
  .cat-card.featured, .cat-card.span-6, .cat-card.span-4, .cat-card.span-3 { grid-column: span 12; min-height: 240px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
}


/* HERO */
.contact-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  text-align: center;
  min-height: 420px;
}
.contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-align: center;
}
.contact-hero-title {
  font-size: clamp(46px, 6vw, 84px);
  color: var(--sky-800);
  margin: 18px 0 24px;
}
.contact-hero-lede {
  font-size: 18px;
  color: var(--ink);
  opacity: 0.78;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* MAIN */
.contact-main {
  background: var(--cream-50);
  padding: 100px 0 140px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 64px;
  align-items: start;
}

/* FORM */
.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
}
.form-head {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(42, 31, 20, 0.1);
}
.form-head h2 {
  font-size: clamp(28px, 3vw, 38px);
  color: var(--sky-800);
  margin: 10px 0 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-full { display: block; margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-700);
  margin-bottom: 8px;
}
.form-label em { font-style: normal; opacity: 0.6; text-transform: none; letter-spacing: 0; font-size: 11.5px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--sky-200);
  background: var(--cream-50);
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .15s, background .15s;
  font-family: var(--font-body);
}
.contact-form textarea { resize: vertical; line-height: 1.55; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sky-600);
  background: #fff;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--ink-40); }

.form-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.form-privacy {
  font-size: 12.5px;
  color: var(--ink-60);
  max-width: 320px;
  line-height: 1.5;
}
.form-privacy a { border-bottom: 1px solid var(--ink-40); }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: #e6f0e0;
  color: #3a5a30;
  font-size: 14px;
}
.form-success.show { display: inline-flex; }

/* INFO */
.contact-info {
  background: var(--sky-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: sticky;
  top: 32px;
}
.contact-illus {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-soft);
}
.contact-illus svg { display: block; width: 100%; height: auto; }
.info-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  color: var(--sky-800);
  margin: 0 0 24px;
}
.info-block { margin-bottom: 22px; }
.info-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-700);
  margin-bottom: 6px;
}
.info-block p {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
}
.info-block a {
  border-bottom: 1px solid var(--ink-40);
  transition: border-color .15s;
}
.info-block a:hover { border-color: var(--sky-700); }
.info-note { font-size: 13px; color: var(--ink-60); }

.info-promise {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 12px 16px;
  background: var(--cream-50);
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  color: var(--sky-800);
  font-family: var(--font-display);
  font-style: italic;
}
.info-promise svg { color: var(--sky-700); flex-shrink: 0; }

.info-social {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(42, 31, 20, 0.12);
  font-size: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ink-60);
}
.info-social a {
  color: var(--sky-700);
  border-bottom: 1px solid var(--sky-300);
  padding-bottom: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info { position: static; }
}
