/* ---------- Base ---------- */
:root {
  --cream: #faf6f0;
  --cream-dark: #f0e8db;
  --rose: #c0496a;
  --rose-dark: #963552;
  --rose-soft: #f5d8e0;
  --sage: #8a9a7b;
  --gold: #c8a572;
  --wood-light: #d4a574;
  --wood-mid: #a07843;
  --wood-dark: #6b4a26;
  --wood-bamboo: #e6c79a;
  --charcoal: #1f1b1a;
  --ink: #3a302c;
  --muted: #7a6f6a;
  --line: #e6dcc9;
  --shadow: 0 20px 60px -20px rgba(31, 27, 26, 0.25);
  --shadow-soft: 0 8px 24px -10px rgba(31, 27, 26, 0.15);
  --shadow-wood: 0 14px 40px -12px rgba(107, 74, 38, 0.5);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }

p { font-size: 1.05rem; color: var(--ink); }

a { color: inherit; text-decoration: none; }

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--rose);
  margin-bottom: 16px;
}

.italic-script {
  font-style: italic;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--rose);
  font-weight: 400;
}

.footnote {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 16px;
  font-style: italic;
}

/* ---------- Top Promo Banner ---------- */
.top-banner {
  background: linear-gradient(90deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: sticky;
  top: 0;
  z-index: 101;
}

.top-banner a {
  color: white;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.top-banner .pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2s infinite;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

@media (max-width: 600px) {
  .top-banner { font-size: 0.78rem; padding: 9px 14px; }
  .site-header { top: 36px; }
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  background: var(--wood-mid);
  color: var(--cream);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.brand-mark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,
    transparent 0px,
    rgba(0,0,0,0.08) 1px,
    transparent 3px);
}

.brand-mark span { position: relative; z-index: 1; }

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-name span {
  color: var(--rose);
  font-style: italic;
}

.brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 2px;
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
}

.brand-sub.on-dark {
  color: rgba(250, 246, 240, 0.7);
}

@media (max-width: 600px) {
  .brand-sub { font-size: 0.6rem; }
  .brand-sub a { text-decoration: none !important; }
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--rose); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}
.nav-phone:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.nav-cta {
  background: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
}

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

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(.2,.8,.2,1);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--rose);
  color: var(--cream);
  box-shadow: 0 8px 24px -8px rgba(192, 73, 106, 0.5);
}

.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(192, 73, 106, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 24px -8px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

.btn-wood {
  background: linear-gradient(180deg, var(--wood-light), var(--wood-mid));
  color: white;
  box-shadow: 0 8px 24px -8px rgba(107, 74, 38, 0.5);
  position: relative;
  overflow: hidden;
}

/* ---------- Wood Block Visuals ---------- */
.wood {
  position: relative;
  background:
    repeating-linear-gradient(92deg,
      rgba(139, 90, 43, 0.18) 0px,
      rgba(139, 90, 43, 0) 2px,
      rgba(107, 74, 38, 0.22) 4px,
      rgba(139, 90, 43, 0) 7px,
      rgba(160, 110, 60, 0.15) 11px,
      rgba(107, 74, 38, 0.18) 16px),
    linear-gradient(170deg, var(--wood-light) 0%, var(--wood-mid) 70%, var(--wood-dark) 100%);
  box-shadow: var(--shadow-wood), inset 0 0 30px rgba(107, 74, 38, 0.25);
}

.wood-bamboo {
  background:
    repeating-linear-gradient(90deg,
      rgba(180, 140, 80, 0.2) 0px,
      rgba(230, 199, 154, 0) 1px,
      rgba(160, 120, 67, 0.15) 3px,
      rgba(230, 199, 154, 0) 6px),
    linear-gradient(180deg, var(--wood-bamboo) 0%, #c9a370 100%);
  box-shadow: var(--shadow-wood), inset 0 0 25px rgba(107, 74, 38, 0.18);
}

.wood::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.15), transparent 40%),
    radial-gradient(ellipse at 70% 80%, rgba(0,0,0,0.18), transparent 50%);
  border-radius: inherit;
}

.wood-block {
  position: relative;
  padding: 14px;
  border-radius: 6px;
  display: grid;
  place-items: center;
}

.wood-block .photo {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  border-radius: 2px;
}

/* Shape variants */
.shape-rect {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
}
.shape-square {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
}
.shape-heart {
  aspect-ratio: 1 / 1;
  clip-path: path('M 50,88 C 50,88 6,60 6,32 C 6,16 18,6 32,6 C 42,6 50,12 50,22 C 50,12 58,6 68,6 C 82,6 94,16 94,32 C 94,60 50,88 50,88 Z');
  -webkit-clip-path: path('M 50,88 C 50,88 6,60 6,32 C 6,16 18,6 32,6 C 42,6 50,12 50,22 C 50,12 58,6 68,6 C 82,6 94,16 94,32 C 94,60 50,88 50,88 Z');
}
.shape-hex {
  aspect-ratio: 1 / 1.1547;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.shape-circle {
  aspect-ratio: 1;
  border-radius: 50%;
}

/* Photo overlays - colored gradients standing in for real photos */
.photo-wedding { background: linear-gradient(135deg, #f5d8e0 0%, #c0496a 60%, #5e1f33 100%); }
.photo-baby    { background: linear-gradient(135deg, #fce8d4 0%, #e8a787 60%, #8b4a2c 100%); }
.photo-family  { background: linear-gradient(135deg, #e8c4a0 0%, #b07850 60%, #4a2c1a 100%); }
.photo-home    { background: linear-gradient(135deg, #c4d8b0 0%, #6a8a55 60%, #2d3a20 100%); }
.photo-mum     { background: linear-gradient(135deg, #f5d8e0 0%, #d896a8 50%, #8b3a52 100%); }
.photo-couple  { background: linear-gradient(135deg, #f0c8a0 0%, #c08560 60%, #5a3018 100%); }
.photo-pet     { background: linear-gradient(135deg, #e8d4a0 0%, #a88555 60%, #4a3018 100%); }

.photo-wedding::before, .photo-baby::before, .photo-family::before,
.photo-home::before, .photo-mum::before, .photo-couple::before, .photo-pet::before {
  content: attr(data-emoji);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2.8rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Hero needs less top-pad now that header is sticky-not-fixed */
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--cream-dark);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  text-align: center;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.trust-stat .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--rose);
  line-height: 1;
}

.trust-stat .stat-label {
  font-size: 0.82rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.3;
}

.trust-stat .stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 1px;
}

@media (max-width: 720px) {
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* Old hero padding override no longer needed */
.hero-old-pad {
  padding: 140px 0 80px;
}

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

.hero-copy h1 {
  margin-bottom: 24px;
}

.hero-copy h1 .accent {
  color: var(--rose);
  font-style: italic;
}

.hero-copy h1 .wood-word {
  color: var(--wood-mid);
  font-style: italic;
  position: relative;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--rose-soft);
  color: var(--rose);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

/* Hero collage — real product photos */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
}

.hero-block {
  position: absolute;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-block-1 {
  width: 58%;
  height: 60%;
  top: 0;
  left: 0;
  transform: rotate(-3deg);
  z-index: 2;
}

.hero-block-2 {
  width: 46%;
  height: 46%;
  top: 8%;
  right: 0;
  transform: rotate(4deg);
  z-index: 3;
}

.hero-block-3 {
  width: 42%;
  height: 44%;
  bottom: 0;
  left: 4%;
  transform: rotate(-4deg);
  z-index: 1;
}

.hero-block-4 {
  width: 44%;
  height: 50%;
  bottom: 2%;
  right: 4%;
  transform: rotate(5deg);
  z-index: 4;
}

.hero-block:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 10;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
}

/* ---------- Sections ---------- */
section { padding: 100px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-top: 16px;
}

/* ---------- Promise strip ---------- */
.promise {
  background: var(--charcoal);
  color: var(--cream);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promise::before, .promise::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.promise::before {
  top: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 165, 114, 0.18), transparent 70%);
}
.promise::after {
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(192, 73, 106, 0.15), transparent 70%);
}

.promise .container { position: relative; z-index: 1; }

.promise-eyebrow {
  color: var(--gold) !important;
  margin-bottom: 28px !important;
}

.promise-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-style: italic;
  font-weight: 400;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.promise-text .highlight {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
  display: inline-block;
  margin-top: 14px;
  font-size: 1.05em;
}

.promise-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: rgba(250, 246, 240, 0.75);
  max-width: 640px;
  margin: 32px auto 0;
  line-height: 1.6;
}

/* ---------- Shapes Showcase ---------- */
.shapes {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.shapes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.shape-card {
  text-align: center;
  cursor: pointer;
  transition: transform 0.4s;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.shape-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.shape-display {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
}

.shape-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.shape-card:hover .shape-display img { transform: scale(1.06); }

.shape-info {
  padding: 22px 16px;
}

.shape-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.shape-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.size-tags-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.size-tags-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-right: 8px;
}

.size-tag-chip {
  display: inline-block;
  background: white;
  color: var(--charcoal);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--line);
  transition: all 0.2s;
  cursor: default;
}

.size-tag-chip:hover {
  background: var(--rose);
  color: white;
  border-color: var(--rose);
  transform: translateY(-2px);
}

.material-strip {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
}

.material-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink);
}

.material-swatch {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 900px) {
  .shapes-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .shape-display { height: 180px; }
}
@media (max-width: 480px) {
  .shapes-grid { grid-template-columns: 1fr; }
}

/* ---------- Scenarios ---------- */
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.scenario {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s, box-shadow 0.4s;
  display: block;
}

.scenario:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.scenario-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.scenario:hover .scenario-bg { transform: scale(1.06); }

.scenario-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.78) 100%);
}

.scenario-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  color: white;
}

.scenario-content h3 {
  color: white;
  margin-bottom: 8px;
  font-size: 1.8rem;
}

.scenario-content p {
  color: rgba(255,255,255,0.88);
  font-size: 0.98rem;
  margin-bottom: 16px;
}

.scenario-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 4px;
  transition: gap 0.2s;
}

.scenario:hover .scenario-link { gap: 14px; }

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

/* Scenario backgrounds: real product photos */
.bg-wedding { background: #fff url('assets/mb5.webp') center/cover no-repeat; }
.bg-house   { background: #fff url('assets/mb-canvas-set.webp') center/cover no-repeat; }
.bg-family  { background: #fff url('assets/mb6.webp') center/cover no-repeat; }
.bg-baby    { background: #fff url('assets/mb3.webp') center/cover no-repeat; }

/* ---------- Pricing ---------- */
.pricing {
  background: var(--cream-dark);
  position: relative;
}

.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.pricing-tab {
  background: white;
  border: 1.5px solid var(--line);
  color: var(--ink);
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.pricing-tab:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-1px);
}

.pricing-tab.active {
  background: var(--rose);
  color: white;
  border-color: var(--rose);
  box-shadow: 0 6px 18px -6px rgba(192, 73, 106, 0.5);
}

.pricing-panel {
  display: none;
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.pricing-panel.active { display: block; animation: fadeUp 0.4s ease; }

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

.pricing-panel h3 {
  text-align: center;
  margin-bottom: 6px;
  color: var(--charcoal);
  font-size: 1.8rem;
}

.pricing-panel .panel-desc {
  text-align: center;
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 0.98rem;
}

.price-table-wrap {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.price-table th {
  text-align: left;
  padding: 14px 16px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  border-bottom: 2px solid var(--line);
  font-weight: 600;
}

.price-table th:last-child,
.price-table td:last-child { text-align: right; }

.price-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  color: var(--ink);
}

.price-table td:first-child {
  font-weight: 600;
  color: var(--charcoal);
}

.price-table td:last-child {
  font-weight: 700;
  color: var(--rose);
  font-size: 1.1rem;
  white-space: nowrap;
}

.price-table tr:last-child td { border-bottom: none; }

.price-table tbody tr {
  transition: background 0.15s;
}

.price-table tbody tr:hover { background: var(--cream); }

.price-section-divider {
  margin: 24px 0 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--rose);
  text-align: center;
}

.price-cta {
  margin-top: 40px;
  padding: 36px 28px;
  background: linear-gradient(135deg, var(--rose-soft) 0%, var(--cream) 100%);
  border-radius: 24px;
  text-align: center;
  border: 2px dashed var(--rose);
}

.price-cta strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--charcoal);
  margin-bottom: 10px;
  font-weight: 500;
  font-style: italic;
}

.price-cta strong .accent {
  color: var(--rose);
  font-style: italic;
}

.price-cta p {
  color: var(--ink);
  margin-bottom: 24px;
  font-size: 1.05rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.price-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .pricing-panel { padding: 24px 16px; }
  .pricing-tab { padding: 9px 16px; font-size: 0.82rem; }
}

/* ---------- Continuous Carousel ---------- */
.carousel {
  background: var(--cream);
  padding: 70px 0 80px;
  overflow: hidden;
  position: relative;
}

.carousel-head {
  text-align: center;
  margin-bottom: 36px;
  padding: 0 24px;
}

.carousel-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  color: var(--charcoal);
  font-weight: 500;
}

.carousel-head h3 .accent { color: var(--rose); font-style: italic; }

.carousel-head p {
  color: var(--muted);
  margin-top: 8px;
  font-size: 1rem;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: scroll-x 50s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 12px)); }
}

.marquee-item {
  flex: 0 0 auto;
  width: 280px;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--cream-dark);
  transition: transform 0.4s ease;
}

.marquee-item:hover { transform: scale(1.04); }

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 600px) {
  .marquee-item { width: 220px; height: 220px; }
  .marquee-track { gap: 16px; }
  @keyframes scroll-x {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-50% - 8px)); }
  }
}

/* ---------- (legacy, kept for safety) ---------- */
.sizes {
  background: var(--cream);
}

.sizes-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.size-card-v2 {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.size-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.size-card-v2 .size-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
}

.size-card-v2 .size-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.size-card-v2:hover .size-img img { transform: scale(1.06); }

.size-card-v2 .size-tag-bold {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--rose);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
  z-index: 1;
}

.size-card-v2 h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--charcoal);
  padding: 20px 22px 6px;
  margin: 0;
}

.size-card-v2 p {
  padding: 0 22px 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.size-card-wide { grid-column: span 1; }

@media (min-width: 901px) {
  .size-card-wide:nth-of-type(7),
  .size-card-wide:nth-of-type(8) {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  .sizes-grid-v2 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 540px) {
  .sizes-grid-v2 { grid-template-columns: 1fr; }
}

.sizes-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 600px;
}

.size-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.4s, box-shadow 0.4s;
}

.size-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.size-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.size-card:hover img { transform: scale(1.05); }

.size-card .size-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.78) 100%);
}

.size-card .size-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  color: white;
  z-index: 1;
}

.size-tag {
  display: inline-block;
  background: rgba(255,255,255,0.95);
  color: var(--charcoal);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.size-content h4 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.size-content p {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
}

.size-large { grid-column: 1; grid-row: 1 / span 2; }
.size-1     { grid-column: 2; grid-row: 1; }
.size-2     { grid-column: 3; grid-row: 1; }
.size-3     { grid-column: 2; grid-row: 2; }
.size-4     { grid-column: 3; grid-row: 2; }

@media (max-width: 900px) {
  .sizes-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .size-large { grid-column: 1 / -1; grid-row: auto; height: 320px; }
  .size-1, .size-2, .size-3, .size-4 {
    grid-column: auto;
    grid-row: auto;
    height: 240px;
  }
}
@media (max-width: 480px) {
  .sizes-grid { grid-template-columns: 1fr; }
  .size-1, .size-2, .size-3, .size-4 { height: 220px; }
}

/* ---------- Mother's Day banner ---------- */
.mothers-banner {
  background: linear-gradient(135deg, #f5d8e0 0%, #faf6f0 50%, #f5d8e0 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.mothers-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(192, 73, 106, 0.15), transparent 70%);
  border-radius: 50%;
}

.mothers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.countdown-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
}

.countdown-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--rose);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.mothers-banner h2 {
  margin-bottom: 20px;
}

.mothers-banner h2 .accent {
  color: var(--rose);
  font-style: italic;
}

.mothers-banner p {
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 28px;
}

.mothers-visual {
  position: relative;
  aspect-ratio: 1 / 1;
}

.mothers-block-display {
  position: absolute;
  width: 85%;
  left: 7.5%;
  top: 5%;
  transform: rotate(-3deg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}
.mothers-block-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .mothers-grid { grid-template-columns: 1fr; }
  .mothers-visual { max-width: 360px; margin: 0 auto; width: 100%; }
}

/* ---------- How it works ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.step {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 0.3s;
}

.step:hover { transform: translateY(-4px); }

.step-num {
  width: 56px;
  height: 56px;
  background: var(--wood-mid);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
}
.step-num::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,
    transparent 0px, rgba(0,0,0,0.1) 1px, transparent 3px);
}
.step-num span { position: relative; z-index: 1; }

.step h3 { margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 0.98rem; }

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

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--cream-dark);
}

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

.testimonial {
  background: white;
  padding: 36px 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--rose);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 20px;
  position: relative;
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.author-info span {
  font-size: 0.85rem;
  color: var(--muted);
}

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

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--ink) 100%);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(192, 73, 106, 0.2), transparent 60%);
  border-radius: 50%;
}

.final-cta .container { position: relative; z-index: 1; }

.final-cta h2 {
  color: var(--cream);
  margin-bottom: 20px;
}

.final-cta h2 .accent {
  color: var(--gold);
  font-style: italic;
}

.final-cta p {
  color: rgba(250, 246, 240, 0.8);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta .btn-ghost {
  color: var(--cream);
  border-color: var(--cream);
}
.final-cta .btn-ghost:hover {
  background: var(--cream);
  color: var(--charcoal);
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--cream);
}

.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item[open] { box-shadow: var(--shadow); }

.faq-item summary {
  padding: 22px 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--rose); }

.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--rose);
  transition: transform 0.3s;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 28px 24px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
}

.faq-body a {
  color: var(--rose);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 600px) {
  .faq-item summary { padding: 18px 22px; font-size: 1.1rem; }
  .faq-body { padding: 0 22px 20px; }
}

/* ---------- Suburb Chips ---------- */
.suburbs {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.suburbs strong {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  font-weight: 600;
}

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

.suburb-chip {
  background: var(--cream-dark);
  color: var(--ink);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.suburb-chip:hover {
  background: white;
  border-color: var(--rose-soft);
  color: var(--rose);
}

/* ---------- Visit / Contact ---------- */
.visit {
  background: var(--cream);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.visit-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.visit-card h3 {
  margin-bottom: 8px;
}

.visit-detail {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.visit-detail:last-of-type { border-bottom: none; }

.visit-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--rose-soft);
  color: var(--rose);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.visit-detail strong {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.visit-detail a, .visit-detail span {
  color: var(--charcoal);
  font-size: 1.1rem;
  font-weight: 600;
}
.visit-detail .sub {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

.visit-detail a:hover { color: var(--rose); }

.phone-big {
  font-size: 1.4rem !important;
  letter-spacing: 0.02em;
}

.map-embed {
  border-radius: 24px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow-soft);
  background: var(--cream-dark);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  min-height: 460px;
}

@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; }
  .map-embed { min-height: 320px; }
  .map-embed iframe { min-height: 320px; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(250, 246, 240, 0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer h4 {
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }

.footer a {
  color: rgba(250, 246, 240, 0.7);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer a:hover { color: var(--gold); }

.footer-brand p {
  color: rgba(250, 246, 240, 0.7);
  font-size: 0.95rem;
  margin-top: 16px;
  max-width: 360px;
}

.footer-phone {
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 1.1rem !important;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 240, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.5);
}

.footer-bottom a { color: var(--gold); }

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  border-radius: 999px;
  padding: 14px 22px 14px 18px;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  z-index: 99;
  transition: transform 0.2s;
  animation: bounce-in 0.6s ease;
  font-weight: 600;
  font-size: 0.95rem;
}

.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }

.whatsapp-float .wa-icon {
  width: 32px;
  height: 32px;
  background: white;
  color: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.whatsapp-float .wa-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.whatsapp-float .wa-text small {
  font-size: 0.7rem;
  opacity: 0.9;
  font-weight: 500;
}

@keyframes bounce-in {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 480px) {
  .whatsapp-float { padding: 12px 18px 12px 14px; }
  .whatsapp-float .wa-text { display: none; }
}

/* ---------- Mother's Day Page Specific ---------- */
.mothers-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #f5d8e0 0%, #faf6f0 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.mothers-hero::before, .mothers-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.mothers-hero::before {
  top: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(192, 73, 106, 0.2), transparent 70%);
}

.mothers-hero::after {
  bottom: 10%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 165, 114, 0.15), transparent 70%);
}

.mothers-hero .container { position: relative; z-index: 1; }

.mothers-hero h1 {
  margin: 24px auto 24px;
  max-width: 900px;
}

.mothers-hero h1 .accent {
  color: var(--rose);
  font-style: italic;
}

.mothers-hero .lead {
  font-size: 1.25rem;
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto 40px;
}

.mothers-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.mothers-hero-blocks {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.mothers-hero-blocks .mb-photo {
  width: 160px;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  transform: rotate(-3deg);
  transition: transform 0.4s;
  box-shadow: var(--shadow);
}
.mothers-hero-blocks .mb-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mothers-hero-blocks .mb-photo:nth-child(2) { transform: rotate(2deg); }
.mothers-hero-blocks .mb-photo:nth-child(3) { transform: rotate(-1deg); }
.mothers-hero-blocks .mb-photo:nth-child(4) { transform: rotate(4deg); }
.mothers-hero-blocks .mb-photo:hover { transform: rotate(0deg) scale(1.08); }

.heart-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--rose);
}

.heart-divider .line {
  width: 60px;
  height: 1px;
  background: var(--rose);
  opacity: 0.4;
}

/* Why give cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.why-card {
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  text-align: left;
  border-top: 4px solid var(--rose);
  transition: transform 0.3s;
}

.why-card:hover { transform: translateY(-6px); }

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--rose-soft);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

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

/* Gift ideas band */
.gift-ideas {
  background: var(--cream-dark);
}

.gift-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gift-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
}

.gift-card:hover { transform: translateY(-4px); }

.gift-img {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
}

.gift-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gift-card:hover .gift-img img { transform: scale(1.06); }

.gift-content {
  padding: 24px;
}

.gift-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.gift-content p {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .gift-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gift-grid { grid-template-columns: 1fr; }
}

/* Quote band */
.quote-band {
  background: var(--rose);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.quote-band blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 20px;
  font-weight: 400;
}

.quote-band cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ====================================================
   MOBILE POLISH — tighter, breathier, less crowded
   ==================================================== */
@media (max-width: 600px) {

  /* Container: tighter side padding */
  .container { padding: 0 18px; }

  /* Top banner: shorter on mobile via .banner-extra hidden */
  .top-banner { font-size: 0.74rem; line-height: 1.4; padding: 8px 12px; }
  .banner-extra { display: none; }

  /* Header: compact */
  .site-header { padding: 10px 0; top: 32px; }
  .nav { gap: 12px; }
  .brand { gap: 9px; }
  .brand-mark { width: 32px; height: 32px; font-size: 1.1rem; border-radius: 5px; }
  .brand-name { font-size: 0.95rem; }
  .nav-actions { gap: 6px; }
  .nav-cta {
    padding: 8px 12px;
    font-size: 0.78rem;
    gap: 4px;
  }

  /* Section padding: less air = more content per scroll */
  section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head p { font-size: 0.98rem; }

  /* Hero: tighter top padding so the eye lands on copy faster */
  .hero { padding: 24px 0 50px; }
  .hero-grid { gap: 32px; }
  .hero-sub { font-size: 1.05rem; margin-bottom: 24px; }
  .hero-cta { gap: 10px; flex-direction: column; align-items: stretch; }
  .hero-cta .btn { padding: 14px 20px; font-size: 0.92rem; justify-content: center; }
  .hero-trust { gap: 16px; margin-top: 20px; }
  .trust-item { font-size: 0.85rem; }
  .trust-icon { width: 30px; height: 30px; font-size: 0.9rem; }

  /* Trust bar: cleaner stacks */
  .trust-bar { padding: 22px 0; }
  .trust-bar-grid { gap: 14px; }
  .trust-stat .stat-num { font-size: 1.4rem; }
  .trust-stat .stat-label { font-size: 0.75rem; }

  /* Promise: still bold, but breathable */
  .promise { padding: 70px 0; }
  .promise-text { font-size: 1.7rem; }
  .promise-sub { font-size: 0.98rem; margin-top: 22px; }

  /* Carousel: smaller items */
  .carousel { padding: 50px 0 60px; }
  .carousel-head { margin-bottom: 26px; }

  /* Products grid: 2 columns reads better than 1 long scroll */
  .shapes-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .shape-info { padding: 16px 12px; }
  .shape-card h4 { font-size: 1.15rem; }
  .shape-card p { font-size: 0.82rem; }
  .size-tags-row { gap: 6px; padding: 16px 0; }
  .size-tag-chip { padding: 6px 12px; font-size: 0.78rem; }

  /* Pricing: tabs scroll horizontally */
  .pricing-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 4px 8px;
    margin: 0 -18px 26px;
    padding-left: 18px;
    padding-right: 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pricing-tabs::-webkit-scrollbar { display: none; }
  .pricing-tab { flex: 0 0 auto; }
  .pricing-panel h3 { font-size: 1.4rem; }
  .pricing-panel .panel-desc { font-size: 0.9rem; margin-bottom: 20px; }
  .price-table th, .price-table td { padding: 12px 10px; font-size: 0.88rem; }
  .price-table td:last-child { font-size: 0.98rem; }
  .price-cta { margin-top: 28px; padding: 26px 18px; }

  /* Mother's Day banner: stack */
  .mothers-banner { padding: 60px 0; }
  .mothers-grid { gap: 32px; }
  .mothers-banner h2 { font-size: 1.9rem; }
  .mothers-banner p { font-size: 1rem; }
  .countdown-badge { font-size: 0.78rem; padding: 8px 14px; }

  /* Scenarios: 1 col, slightly shorter */
  .scenarios-grid { gap: 18px; }
  .scenario { aspect-ratio: 5 / 4; }
  .scenario-content { padding: 22px; }
  .scenario-content h3 { font-size: 1.5rem; }
  .scenario-content p { font-size: 0.92rem; margin-bottom: 12px; }

  /* How it works */
  .how-grid { gap: 16px; margin-top: 40px; }
  .step { padding: 24px 18px; }
  .step h3 { font-size: 1.2rem; }
  .step p { font-size: 0.9rem; }

  /* Testimonials: cleaner */
  .testimonial { padding: 28px 22px; }
  .testimonial-text { font-size: 1.05rem; margin-bottom: 16px; }

  /* FAQ */
  .faq-grid { gap: 10px; }
  .faq-body { font-size: 0.95rem; }

  /* Visit card */
  .visit-card { padding: 28px 22px; }
  .visit-detail { padding: 16px 0; gap: 12px; }
  .visit-detail strong { font-size: 0.7rem; }
  .visit-detail a, .visit-detail span { font-size: 0.98rem; }
  .phone-big { font-size: 1.2rem !important; }

  /* Final CTA */
  .final-cta p { font-size: 1.02rem; }
  .final-cta-buttons { flex-direction: column; align-items: stretch; gap: 12px; }
  .final-cta-buttons .btn { justify-content: center; }

  /* Footer: tidy */
  .footer { padding: 50px 0 24px; }
  .footer-grid { gap: 28px; margin-bottom: 30px; }

  /* WhatsApp float: thumb-friendly */
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    padding: 12px;
    border-radius: 50%;
  }
  .whatsapp-float .wa-icon { width: 28px; height: 28px; font-size: 1rem; }

  /* Mother's Day hero blocks: smaller */
  .mothers-hero { padding: 60px 0; }
  .mothers-hero h1 { font-size: 2.1rem; }
  .mothers-hero .lead { font-size: 1.05rem; margin-bottom: 28px; }
  .mothers-hero-cta { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 36px; }
  .mothers-hero-cta .btn { justify-content: center; }
  .mothers-hero-blocks .mb-photo { width: 110px; height: 110px; }
  .mothers-hero-blocks { gap: 14px; }

  /* Why grid (Mother's Day) */
  .why-card { padding: 28px 22px; }
  .why-card h3 { font-size: 1.25rem; }

  /* Quote band */
  .quote-band { padding: 60px 0; }
  .quote-band blockquote { font-size: 1.3rem; }

  /* Gift cards */
  .gift-grid { gap: 14px; }
  .gift-content { padding: 18px; }
  .gift-content h4 { font-size: 1.15rem; }
  .gift-content p { font-size: 0.85rem; }
}

/* Even tighter on smallest screens */
@media (max-width: 380px) {
  .brand-name { font-size: 0.88rem; }
  .brand-sub { font-size: 0.55rem; }
  .nav-cta { padding: 7px 10px; font-size: 0.72rem; }
  .promise-text { font-size: 1.45rem; }
  h1 { font-size: 2rem !important; }
}
