/* ============================================================
   HICCUPS & TICKLES — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@300;400;600;700&display=swap');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Palette */
  --pink-50:   #FFF5F8;
  --pink-100:  #FFE4ED;
  --pink-200:  #FFBDD1;
  --pink-300:  #FF95B3;
  --pink-400:  #FF6B8F;
  --pink-500:  #E8476B;
  --rose-gold: #C9956C;
  --plum:      #3D2235;
  --plum-mid:  #7A4A60;
  --plum-light:#B08090;
  --cream:     #FFF9FB;
  --white:     #FFFFFF;

  /* Semantic */
  --color-bg:        var(--cream);
  --color-surface:   var(--white);
  --color-border:    var(--pink-100);
  --color-text:      var(--plum);
  --color-text-mid:  var(--plum-mid);
  --color-text-soft: var(--plum-light);
  --color-primary:   var(--pink-200);
  --color-accent:    var(--rose-gold);

  /* Typography */
  --font-display:  'Dancing Script', cursive;
  --font-heading:  'Playfair Display', serif;
  --font-body:     'Nunito', sans-serif;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Radii */
  --r-sm:   6px;
  --r-md:   14px;
  --r-lg:   24px;
  --r-xl:   40px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(61,34,53,.06);
  --shadow-sm: 0 2px 10px rgba(61,34,53,.08);
  --shadow-md: 0 4px 24px rgba(61,34,53,.11);
  --shadow-lg: 0 8px 48px rgba(61,34,53,.15);
  --shadow-pink: 0 6px 28px rgba(255,179,198,.45);

  /* Transitions */
  --t-fast:  .15s ease;
  --t-base:  .3s ease;
  --t-slow:  .6s ease;

  /* Layout */
  --max-w: 1200px;
  --header-h: 80px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* Page fade-in */
body { animation: pageFade .4s ease forwards; }
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--color-text);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }

.display-font { font-family: var(--font-display); }
.section-tag {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-text-mid);
  letter-spacing: .02em;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.section {
  padding-block: var(--sp-20);
}
.section--tight { padding-block: var(--sp-12); }
.section--flush { padding-block: 0; }

.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}
.section-header p {
  max-width: 580px;
  margin: var(--sp-3) auto 0;
  color: var(--color-text-mid);
  font-size: 1.05rem;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink-300), var(--rose-gold));
  border-radius: var(--r-full);
  margin: var(--sp-4) auto 0;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255,249,251,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), box-shadow var(--t-base), height var(--t-base);
}
.site-header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
  height: 68px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

/* Logo */
.header-logo a {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.header-logo .logo-img {
  height: 52px;
  width: auto;
  transition: height var(--t-base);
}
.site-header.scrolled .logo-img { height: 42px; }
.header-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}
.logo-placeholder {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-placeholder .logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--plum);
}
.logo-placeholder .logo-tagline-small {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 300;
  color: var(--plum-light);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--color-text-mid);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--t-base);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--pink-300), var(--rose-gold));
  border-radius: var(--r-full);
  transition: width var(--t-base);
}
.main-nav a:hover,
.main-nav a.active { color: var(--plum); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  width: 40px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--plum);
  border-radius: var(--r-full);
  transition: all var(--t-base);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(61,34,53,.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--t-base);
}
.mobile-nav-overlay.active { opacity: 1; }

/* Mobile nav panel */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: calc(var(--header-h) + var(--sp-8)) var(--sp-8) var(--sp-8);
  transition: right var(--t-slow) cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { right: 0; }
.mobile-nav ul { display: flex; flex-direction: column; gap: var(--sp-6); }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-text);
  display: block;
  transition: color var(--t-fast), transform var(--t-fast);
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--pink-400); transform: translateX(6px); }
.mobile-nav .mobile-nav-footer {
  margin-top: auto;
  padding-top: var(--sp-8);
  border-top: 1px solid var(--color-border);
}
.mobile-nav .mobile-nav-footer p {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-text-soft);
  text-align: center;
}

/* Main content offset */
main { padding-top: var(--header-h); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-8);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--pink-300), var(--pink-400));
  color: var(--white);
  box-shadow: var(--shadow-pink);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,107,143,.45);
}

.btn--outline {
  background: transparent;
  color: var(--plum);
  border: 2px solid var(--pink-200);
}
.btn--outline:hover {
  background: var(--pink-50);
  border-color: var(--pink-300);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--plum-mid);
  padding-inline: var(--sp-4);
}
.btn--ghost:hover { color: var(--plum); }

.btn--lg {
  padding: var(--sp-4) var(--sp-10);
  font-size: .95rem;
}

/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  transform: scale(0);
  animation: rippleAnim .6s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--pink-100) 0%, var(--cream) 55%, var(--pink-50) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  opacity: 0;
  animation: floatUp linear infinite;
}
.hero-particle svg { display: block; }

@keyframes floatUp {
  0%   { transform: translateY(0) rotate(0deg) scale(1);   opacity: 0;   }
  10%  { opacity: .8; }
  90%  { opacity: .4; }
  100% { transform: translateY(-110vh) rotate(360deg) scale(.6); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--plum-mid);
  margin-bottom: var(--sp-4);
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp .8s .2s ease forwards;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--sp-5);
  opacity: 0;
  transform: translateY(24px);
  animation: slideUp .8s .4s ease forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--pink-400);
}
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--plum-mid);
  margin-bottom: var(--sp-8);
  opacity: 0;
  transform: translateY(24px);
  animation: slideUp .8s .6s ease forwards;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  opacity: 0;
  transform: translateY(24px);
  animation: slideUp .8s .8s ease forwards;
}

.hero-decoration {
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: min(520px, 50vw);
  opacity: .12;
  pointer-events: none;
}

/* Wave divider */
.wave-divider {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  line-height: 0;
}
.wave-divider svg { display: block; width: 100%; }

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FEATURE STRIP (homepage)
   ============================================================ */
.features {
  background: var(--white);
  padding-block: var(--sp-16);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-8);
}
.feature-card {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
  border-radius: var(--r-lg);
  background: var(--pink-50);
  border: 1px solid var(--color-border);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto var(--sp-5);
  background: linear-gradient(135deg, var(--pink-200), var(--pink-300));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: var(--sp-2);
}
.feature-card p {
  font-size: .9rem;
  color: var(--color-text-mid);
  line-height: 1.6;
}

/* ============================================================
   FEATURED PRODUCTS (homepage preview)
   ============================================================ */
.featured-products { background: var(--color-bg); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-6);
}

.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

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

/* Placeholder when no image */
.product-placeholder-img {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  background: linear-gradient(140deg, var(--pink-100) 0%, var(--pink-200) 100%);
}
.product-placeholder-img svg {
  width: 52px; height: 52px;
  opacity: .5;
}
.product-placeholder-img span {
  font-family: var(--font-display);
  font-size: .85rem;
  color: var(--plum-mid);
  opacity: .7;
}

.product-badge {
  position: absolute;
  top: var(--sp-3); left: var(--sp-3);
  background: var(--pink-300);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
}

.product-body {
  padding: var(--sp-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-category {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: var(--sp-2);
}
.product-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--sp-2);
  line-height: 1.3;
}
.product-desc {
  font-size: .88rem;
  color: var(--color-text-mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--sp-4);
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}
.product-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--plum);
}
.product-cta {
  font-size: .78rem;
  padding: var(--sp-2) var(--sp-5);
}

/* ============================================================
   PRODUCT FILTERS
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
  justify-content: center;
}
.filter-btn {
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full);
  border: 2px solid var(--color-border);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-text-mid);
  background: var(--white);
  cursor: pointer;
  transition: all var(--t-base);
}
.filter-btn:hover {
  border-color: var(--pink-300);
  color: var(--plum);
  background: var(--pink-50);
}
.filter-btn.active {
  background: linear-gradient(135deg, var(--pink-300), var(--pink-400));
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

/* Filter animation */
.product-card.hiding {
  animation: cardHide .25s ease forwards;
}
.product-card.showing {
  animation: cardShow .35s ease forwards;
}
@keyframes cardHide {
  to { opacity: 0; transform: scale(.94); }
}
@keyframes cardShow {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1);  }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  background: linear-gradient(150deg, var(--pink-100) 0%, var(--cream) 60%);
  padding-block: var(--sp-20) var(--sp-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--plum);
}
.page-hero p {
  max-width: 540px;
  margin: var(--sp-4) auto 0;
  font-size: 1.1rem;
  color: var(--plum-mid);
}
.page-hero .page-hero-deco {
  position: absolute;
  opacity: .08;
  pointer-events: none;
}
.page-hero .deco-left  { left: -60px; top: 20px;  width: 260px; }
.page-hero .deco-right { right: -60px; bottom: 0;  width: 260px; }

/* Story / two-column */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-text .eyebrow {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--plum-mid);
  margin-bottom: var(--sp-3);
}
.split-text h2 { margin-bottom: var(--sp-5); }
.split-text p {
  color: var(--color-text-mid);
  margin-bottom: var(--sp-4);
  line-height: 1.8;
}

.split-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--pink-200) 0%, var(--pink-100) 100%);
  display: flex; align-items: center; justify-content: center;
}
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.split-image-placeholder {
  text-align: center;
  padding: var(--sp-8);
}
.split-image-placeholder p {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--plum-light);
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-8);
  counter-reset: steps;
}
.process-step {
  text-align: center;
  padding: var(--sp-8) var(--sp-5);
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--pink-200);
  margin-bottom: var(--sp-4);
}
.process-step h3 {
  margin-bottom: var(--sp-3);
  font-size: 1.1rem;
}
.process-step p {
  font-size: .9rem;
  color: var(--color-text-mid);
  line-height: 1.7;
}
/* Connector lines between steps */
.process-grid .process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 3.5rem; right: -1.5rem;
  width: 3rem; height: 2px;
  background: linear-gradient(90deg, var(--pink-200), transparent);
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-6);
}
.value-card {
  padding: var(--sp-8) var(--sp-6);
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--color-border);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.value-icon { font-size: 2.2rem; margin-bottom: var(--sp-4); }
.value-card h3 { font-size: 1.1rem; margin-bottom: var(--sp-3); }
.value-card p { font-size: .9rem; color: var(--color-text-mid); line-height: 1.7; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-12);
  align-items: start;
}

.contact-info h2 { margin-bottom: var(--sp-5); }
.contact-info p {
  color: var(--color-text-mid);
  line-height: 1.8;
  margin-bottom: var(--sp-6);
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--pink-50);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-3);
  transition: background var(--t-fast);
}
.contact-detail:hover { background: var(--pink-100); }
.contact-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--pink-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-detail-text span {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--plum-light);
}
.contact-detail-text a,
.contact-detail-text p {
  font-weight: 600;
  color: var(--plum);
  font-size: .95rem;
  margin: 0;
}
.contact-detail-text a:hover { color: var(--pink-500); }

/* Social links on contact page */
.social-section { margin-top: var(--sp-8); }
.social-section h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: var(--sp-4);
  color: var(--plum-mid);
}
.social-links-large {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.social-link-card {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  background: var(--white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-full);
  font-size: .88rem;
  font-weight: 600;
  color: var(--plum-mid);
  transition: all var(--t-base);
}
.social-link-card svg { width: 20px; height: 20px; flex-shrink: 0; }
.social-link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  color: var(--plum);
  border-color: var(--pink-300);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: var(--sp-6);
}

.form-group {
  margin-bottom: var(--sp-5);
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--plum-mid);
  margin-bottom: var(--sp-2);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-5);
  border: 2px solid var(--color-border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--plum);
  background: var(--pink-50);
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink-300);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,179,198,.18);
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
}
.form-group select { cursor: pointer; }

/* FAQ */
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--sp-5) var(--sp-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--plum);
  cursor: pointer;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--pink-500); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--pink-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: transform var(--t-base), background var(--t-base);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--pink-300);
  color: var(--white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-answer p {
  padding: 0 var(--sp-2) var(--sp-5);
  color: var(--color-text-mid);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* ============================================================
   QUOTE / TESTIMONIAL
   ============================================================ */
.quote-section {
  background: linear-gradient(145deg, var(--pink-100) 0%, var(--pink-50) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: .6;
  color: var(--pink-200);
  margin-bottom: var(--sp-6);
  display: block;
}
.quote-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  max-width: 680px;
  margin-inline: auto;
  color: var(--plum);
  line-height: 1.5;
}
.quote-author {
  margin-top: var(--sp-6);
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--plum-mid);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--plum) 0%, #5C2D4E 100%);
  text-align: center;
  color: var(--white);
  padding-block: var(--sp-16);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M30 30c0-11.046 8.954-20 20-20s20 8.954 20 20-8.954 20-20 20-20-8.954-20-20zm0 0c0 11.046-8.954 20-20 20S-10 41.046-10 30s8.954-20 20-20 20 8.954 20 20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: var(--sp-4);
}
.cta-banner p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--pink-200);
  margin-bottom: var(--sp-8);
}
.cta-banner .btn--primary {
  background: linear-gradient(135deg, var(--pink-300), var(--rose-gold));
}
.cta-banner .btn--outline {
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.cta-banner .btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--plum);
  color: rgba(255,255,255,.75);
  padding-block: var(--sp-16) var(--sp-8);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: var(--sp-8);
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: var(--sp-4);
}
.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 260px;
  color: rgba(255,255,255,.6);
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--pink-200);
  margin-top: var(--sp-3);
  display: block;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink-200);
  margin-bottom: var(--sp-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-col a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--white); }

/* Social icons in footer */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}
.footer-social-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-base), transform var(--t-base);
}
.footer-social-icon:hover {
  background: var(--pink-300);
  transform: translateY(-3px);
}
.footer-social-icon svg {
  width: 18px; height: 18px;
  fill: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.from-bottom { transform: translateY(40px); }
.reveal.from-left   { transform: translateX(-40px); }
.reveal.from-right  { transform: translateX(40px); }
.reveal.scale-in    { transform: scale(.92); }

.reveal.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.stagger-children.visible > *:nth-child(1) { transition-delay: .05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: .15s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: .25s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: .35s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: .45s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: .55s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: .65s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: .75s; }
.stagger-children.visible > * { opacity: 1; transform: translateY(0); }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-pink    { color: var(--pink-400); }
.text-plum    { color: var(--plum); }
.bg-pink      { background: var(--pink-50); }
.bg-white     { background: var(--white); }

.mt-4  { margin-top: var(--sp-4); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-6  { margin-bottom: var(--sp-6); }
.mb-8  { margin-bottom: var(--sp-8); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border-width: 0;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav,
  .mobile-nav-overlay { display: flex; }

  .split-section {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .split-section.reverse { direction: ltr; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 600px) {
  :root { --header-h: 68px; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-decoration { display: none; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-form-wrap { padding: var(--sp-6); }

  .process-grid .process-step::after { display: none; }

  .products-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
  .product-body  { padding: var(--sp-4); }
}

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