/* =========================================================
   CHA'S CAKE FACTORY — STYLESHEET
   Boutique-editorial layout, warm Canva palette
   ========================================================= */

:root {
  /* Fun young palette — pink, butter yellow, navy (logo color), coral.
     Brand colors come straight from the Cha's logo. */
  --paper:    #FFFFFF;
  --cream:    #FFF8F0;     /* warm cream, slight pink */
  --blush:    #FFE4EC;     /* baby pink */
  --rose:     #FFC8D3;     /* fuller pink */
  --butter:   #FFF8DA;     /* buttery yellow soft bg */
  --sunshine: #FFD43D;     /* sunny mustard (logo h) */
  --coral:    #FF8B6B;     /* warm coral */
  --bubblegum:#F4A6BB;     /* logo pink ('s) */
  --tangerine:#F47D3F;     /* logo orange (a) */
  --navy:     #2D4763;     /* logo navy (C) — used for headlines */
  --navy-dk:  #1F3A5F;     /* deeper navy for dark sections */
  --plum:     #4D3859;     /* soft dark fallback */
  --ink:      #2D4763;     /* body text — navy not brown */
  --muted:    #8a849a;     /* warm gray */
  --line:     #FFE4D4;     /* peachy hairline */
  --rust:     #F47D3F;     /* CTA = logo orange */
  --rust-dk:  #D8632C;
  /* Legacy var aliases (so old rules keep working) */
  --cocoa:    #2D4763;
  --coffee:   #2D4763;
  --espresso: #1F3A5F;

  /* Category mood tints (brightened, Canva-fun pastels) */
  --mood-pink-bg:     #FFEDF2;
  --mood-pink-acc:    #E55B83;
  --mood-blue-bg:     #E8F2FB;
  --mood-blue-acc:    #2D4763;
  --mood-peach-bg:    #FFEFD4;
  --mood-peach-acc:   #F47D3F;
  --mood-mint-bg:     #E5F6EB;
  --mood-mint-acc:    #3F8B65;
  --mood-lavender-bg: #F2EAF8;
  --mood-lavender-acc:#7B4F9C;
  --mood-cream-bg:    #FFF8DA;
  --mood-cream-acc:   #D9A227;

  /* Soft corner radii — Canva-like */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-xl: 28px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; display: block; }
a { color: var(--cocoa); text-decoration: none; }
a:hover { text-decoration: underline; }

.display { font-family: 'Bebas Neue', Impact, sans-serif; font-weight: 400; letter-spacing: 0.02em; }
.serif   { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 400; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 28px; }
.tight     { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.narrow    { max-width: 820px;  margin: 0 auto; padding: 0 28px; }

@media (max-width: 600px) {
  .container, .tight, .narrow { padding: 0 18px; }
}

/* ============== ANNOUNCEMENT BAR ============== */
.announce {
  background: var(--espresso); color: #fff;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  text-align: center;
  height: 38px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.announce-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: announceScroll 32s linear infinite;
}
.announce-track span { padding: 0 30px; opacity: 0.92; }
@keyframes announceScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============== NAV ============== */
.nav {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.nav-inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; height: 84px;
}
.nav-left  { display: flex; gap: 26px; align-items: center; }
.nav-right { display: flex; gap: 22px; justify-content: flex-end; align-items: center; }
.nav-left a, .nav-right a {
  color: var(--ink); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.nav-left a:hover, .nav-right a:hover { color: var(--rust); text-decoration: none; }
.nav-left a.active, .nav-right a.active { color: var(--rust); }

.brand-mark { display: flex; align-items: center; justify-content: center; gap: 12px; }
.brand-mark img.logo {
  height: 56px; width: auto; display: block;
  object-fit: contain;
}
.brand-mark .name-fallback {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 0.18em; color: var(--espresso);
  display: none;
}
.brand-mark.no-image img { display: none; }
.brand-mark.no-image .name-fallback { display: block; }

.nav-cta {
  background: var(--espresso); color: #fff !important;
  padding: 12px 22px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700;
}
.nav-cta:hover { background: var(--rust); text-decoration: none; }

.nav-burger { display: none; width: 32px; height: 32px; border: none; background: none; cursor: pointer; padding: 0; }
.nav-burger span {
  display: block; width: 24px; height: 2px; background: var(--espresso); margin: 5px auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-inner { grid-template-columns: auto 1fr auto; height: 70px; }
  .nav-left  { display: none; }
  .nav-right a:not(.nav-cta) { display: none; }
  .brand-mark { justify-content: flex-start; }
  .brand-mark img.logo { height: 44px; }
  .nav-burger { display: block; }
  .nav-cta { padding: 10px 16px; font-size: 10px; }
}

.mobile-menu {
  display: none;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 14px 28px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 0;
  color: var(--ink); font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--rust); text-decoration: none; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px 28px;
  border: 1.5px solid var(--espresso);
  transition: all 0.2s ease;
  cursor: pointer;
  background: transparent;
  color: var(--espresso);
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--espresso); color: #fff !important; }
.btn-primary:hover { background: var(--rust); border-color: var(--rust); }
.btn-ghost { background: transparent; color: var(--espresso) !important; }
.btn-ghost:hover { background: var(--espresso); color: #fff !important; }
.btn-light { background: #fff; border-color: #fff; color: var(--espresso) !important; }
.btn-light:hover { background: var(--rust); border-color: var(--rust); color: #fff !important; }
.btn-block { width: 100%; padding: 18px; }
@media (max-width: 600px) { .btn { padding: 14px 22px; font-size: 11px; } }

/* ============== HERO ============== */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,212,61,0.35), transparent 50%),
    radial-gradient(circle at 10% 110%, rgba(244,166,187,0.5), transparent 55%),
    linear-gradient(115deg, var(--butter) 0%, var(--blush) 55%, var(--rose) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; }
.hero-text { display: flex; flex-direction: column; justify-content: center; padding: 90px 60px 90px 80px; }
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cocoa); margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 10px; font-weight: 700;
}
.hero-eyebrow:before { content: ""; width: 28px; height: 1.5px; background: var(--cocoa); }
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7.5vw, 110px);
  line-height: 0.92; letter-spacing: 0.01em;
  color: var(--espresso); margin: 0; text-transform: uppercase;
}
.hero h1 em {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 400;
  text-transform: none; letter-spacing: -0.01em; color: var(--rust);
}
.hero p.lede { font-size: 17px; color: var(--coffee); max-width: 460px; margin: 28px 0 36px; line-height: 1.6; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative; background: var(--cream); overflow: hidden;
  display: flex; align-items: center; justify-content: center; min-height: 420px;
}
.hero-visual::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(80% 80% at 70% 30%, rgba(255,255,255,0.55), transparent 70%),
    radial-gradient(60% 60% at 30% 80%, rgba(217,98,46,0.15), transparent 60%);
}
.hero-visual img.hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero-visual svg { width: 78%; max-width: 480px; position: relative; z-index: 1; }
.hero-tag {
  position: absolute; bottom: 30px; left: 30px;
  background: var(--paper); padding: 14px 20px; z-index: 2;
  border: 1px solid var(--line);
}
.hero-tag .label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.hero-tag .name {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 17px; color: var(--espresso); margin-top: 4px;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 60px 28px 50px; }
  .hero-visual { min-height: 360px; }
}

/* ============== TICKER ============== */
.ticker {
  background: var(--espresso); color: var(--cream);
  padding: 22px 0; overflow: hidden;
}
.ticker-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: tickerScroll 36s linear infinite;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 0.12em;
}
.ticker-track span { display: flex; align-items: center; gap: 60px; }
.ticker-track .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rust); display: inline-block; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============== SECTIONS ============== */
section { padding: 100px 0; }
.page-head { padding: 90px 0 60px; background: var(--cream); }
.page-head .eyebrow {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--rust); font-weight: 700; margin-bottom: 16px;
}
.page-head h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 7vw, 96px); line-height: 0.95; letter-spacing: 0.02em;
  color: var(--espresso); margin: 0 0 18px; text-transform: uppercase;
}
.page-head h1 em {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 400;
  text-transform: none; color: var(--rust); letter-spacing: -0.01em;
}
.page-head p.lede { font-size: 17px; color: var(--coffee); max-width: 640px; margin: 0; }

.section-head {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: end; gap: 40px; margin-bottom: 56px;
  border-bottom: 1px solid var(--line); padding-bottom: 28px;
}
.section-head .num {
  font-family: 'Bebas Neue', sans-serif; font-size: 64px; line-height: 1; color: var(--rust);
}
.section-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 4.5vw, 62px); line-height: 0.95; letter-spacing: 0.02em;
  margin: 0; color: var(--espresso); text-transform: uppercase;
}
.section-head h2 em {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 400;
  text-transform: none; color: var(--rust); letter-spacing: -0.01em;
}
.section-head .meta {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; text-align: right; white-space: nowrap;
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 12px; padding-bottom: 22px; margin-bottom: 40px; }
  .section-head .meta { text-align: left; }
  .section-head .num { font-size: 48px; }
  section { padding: 70px 0; }
}

/* ============== COLLECTIONS ============== */
.collections { background: var(--cream); }
.collections-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.collection { background: var(--paper); display: flex; flex-direction: column; transition: transform 0.25s ease; }
.collection:hover { transform: translateY(-4px); }
.collection-img { aspect-ratio: 4/5; background: var(--rose); position: relative; overflow: hidden; }
.collection-img img { width: 100%; height: 100%; object-fit: cover; }
.collection-img .ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.collection-body { padding: 22px 24px 26px; }
.collection-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--espresso); margin: 0 0 4px; }
.collection-from { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rust); font-weight: 700; margin: 0 0 10px; }
.collection-blurb { font-size: 14px; color: var(--muted); margin: 0 0 14px; }
.collection-cta { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--espresso); font-weight: 700; }
.collection-cta:after { content: " →"; }

@media (max-width: 1100px) { .collections-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .collections-grid { grid-template-columns: 1fr; } }

/* ============== STORY (homepage block) ============== */
.story { background: var(--paper); }
.story-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.story-text .label { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--rust); font-weight: 700; margin-bottom: 18px; }
.story-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px); line-height: 0.95; letter-spacing: 0.02em;
  color: var(--espresso); margin: 0 0 26px; text-transform: uppercase;
}
.story-text h2 em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; text-transform: none; color: var(--rust); letter-spacing: -0.01em; }
.story-text p { font-size: 16px; color: var(--coffee); margin: 0 0 18px; line-height: 1.7; }
.story-quote { border-left: 2px solid var(--rust); padding: 4px 0 4px 22px; font-family: 'Fraunces', serif; font-style: italic; font-size: 19px; color: var(--cocoa); margin: 28px 0 0; }
.story-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 38px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-box { padding: 22px 0; text-align: left; border-right: 1px solid var(--line); }
.stat-box:last-child { border-right: none; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: var(--espresso); line-height: 1; }
.stat-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--muted); margin-top: 8px; font-weight: 700; }

.story-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.story-visual .tile { aspect-ratio: 3/4; overflow: hidden; background: var(--cream); position: relative; }
.story-visual .tile.tall { aspect-ratio: 3/5; margin-top: 40px; }
.story-visual .tile img { width: 100%; height: 100%; object-fit: cover; }
.story-visual .tile svg { width: 100%; height: 100%; }

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

/* ============== GOAL ============== */
.goal { background: var(--espresso); color: var(--cream); }
.goal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.goal-text .label { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--rust); font-weight: 700; margin-bottom: 18px; }
.goal-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5.5vw, 76px); line-height: 0.95; letter-spacing: 0.02em;
  color: #fff; margin: 0 0 22px; text-transform: uppercase;
}
.goal-text h2 em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; text-transform: none; color: var(--rust); letter-spacing: -0.01em; }
.goal-text p { color: rgba(255,255,255,0.75); max-width: 460px; font-size: 15px; margin: 0; }
.goal-numbers { display: flex; align-items: baseline; gap: 14px; border-top: 1px solid rgba(255,255,255,0.18); border-bottom: 1px solid rgba(255,255,255,0.18); padding: 28px 0; margin-bottom: 18px; }
.goal-now { font-family: 'Bebas Neue', sans-serif; font-size: clamp(72px, 11vw, 140px); color: var(--rust); letter-spacing: 0.02em; line-height: 0.9; }
.goal-of  { font-size: 15px; color: rgba(255,255,255,0.6); }
.goal-target { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: #fff; letter-spacing: 0.04em; }
.progress-track { height: 6px; background: rgba(255,255,255,0.14); overflow: hidden; }
.progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--rust), var(--blush)); transition: width 1.6s cubic-bezier(0.16,1,0.3,1); }
.goal-meta { display: flex; justify-content: space-between; margin-top: 12px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); font-weight: 700; gap: 14px; }
@media (max-width: 900px) { .goal-grid { grid-template-columns: 1fr; } }

/* ============== SERVICES ============== */
.services { background: var(--paper); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service { display: flex; flex-direction: column; }
.service-img { aspect-ratio: 1/1; background: var(--cream); overflow: hidden; position: relative; }
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--espresso); margin: 18px 0 6px; }
.service-blurb { color: var(--muted); font-size: 14px; margin: 0; }
@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .services-grid { grid-template-columns: 1fr; } }

/* ============== GALLERY / MENU ============== */
.gallery { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cake-card { background: var(--paper); position: relative; overflow: hidden; transition: transform 0.25s ease; display: flex; flex-direction: column; }
.cake-card:hover { transform: translateY(-3px); }
.cake-img { aspect-ratio: 3/4; background: var(--rose); position: relative; overflow: hidden; }
.cake-img img { width: 100%; height: 100%; object-fit: cover; }
.cake-img .ph { width: 100%; height: 100%; }
.cake-card .info { padding: 16px 18px 22px; flex: 1; display: flex; flex-direction: column; }
.cake-tag { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rust); font-weight: 700; margin-bottom: 6px; }
.cake-name { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--espresso); margin: 0 0 6px; }
.cake-blurb { font-size: 13px; color: var(--muted); margin: 0 0 12px; line-height: 1.55; flex: 1; }
.cake-price { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 0.04em; color: var(--rust); margin: 0; }
.cake-price small { display: block; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 2px; font-family: 'Inter', sans-serif; }

@media (max-width: 1100px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-cta { text-align: center; margin-top: 50px; }

/* ============== MENU FILTER BAR ============== */
.menu-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.menu-filter button {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 10px 18px; border: 1px solid var(--line); background: transparent; color: var(--espresso);
  cursor: pointer; transition: all 0.2s ease;
}
.menu-filter button:hover { border-color: var(--cocoa); }
.menu-filter button.active { background: var(--espresso); color: #fff; border-color: var(--espresso); }
@media (max-width: 600px) { .menu-filter button { padding: 8px 14px; font-size: 10px; letter-spacing: 0.14em; } }

/* ============== TESTIMONIALS ============== */
.testimonials { background: var(--paper); }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.testimonial { padding: 32px 32px 28px; background: var(--cream); border-left: 3px solid var(--rust); }
.testimonial p.quote { font-family: 'Fraunces', serif; font-style: italic; font-size: 18px; line-height: 1.55; color: var(--cocoa); margin: 0 0 18px; }
.testimonial p.who   { font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--espresso); margin: 0; }
.testimonial p.who small { display: block; font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.18em; color: var(--muted); margin-top: 4px; font-weight: 700; }
@media (max-width: 800px) { .testimonial-grid { grid-template-columns: 1fr; } .testimonial { padding: 26px 24px; } }

/* ============== TIMELINE ============== */
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--line); }
.timeline-item { padding: 28px 24px; border-right: 1px solid var(--line); }
.timeline-item:last-child { border-right: none; }
.timeline-year { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--rust); margin-bottom: 10px; letter-spacing: 0.04em; }
.timeline-text { font-size: 14px; color: var(--coffee); line-height: 1.55; margin: 0; }
@media (max-width: 1000px) {
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline-item { border-right: none; border-bottom: 1px solid var(--line); }
  .timeline-item:nth-child(2) { border-right: 1px solid var(--line); }
  .timeline-item:last-child { border-bottom: none; }
}
@media (max-width: 540px) { .timeline { grid-template-columns: 1fr; } .timeline-item { border-right: none !important; } }

/* ============== FAQ ============== */
.faq-list { border: 1px solid var(--line); background: var(--paper); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; text-align: left; cursor: pointer; background: none; border: none;
  padding: 24px 28px; font-size: 16px; font-weight: 700; color: var(--espresso);
  font-family: 'Inter', sans-serif; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q:hover { color: var(--rust); }
.faq-q .plus { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--rust); transition: transform 0.25s ease; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { padding: 0 28px 24px; color: var(--coffee); font-size: 15px; line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-a { max-height: 600px; }
@media (max-width: 600px) { .faq-q { padding: 18px 22px; font-size: 15px; } .faq-a { padding: 0 22px 20px; font-size: 14px; } }

/* ============== TABLES ============== */
.t-table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); background: var(--paper); }
.t-table th, .t-table td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--line); }
.t-table th { background: var(--cream); font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--espresso); }
.t-table td { font-size: 15px; color: var(--ink); }
.t-table td strong { color: var(--espresso); }
.t-table tr:last-child td { border-bottom: none; }
@media (max-width: 700px) {
  .t-table { font-size: 13px; }
  .t-table th, .t-table td { padding: 12px 14px; }
}

/* ============== PRICING TRIPTYCH ============== */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; border: 1px solid var(--line); }
.price-card { padding: 36px 32px 32px; border-right: 1px solid var(--line); display: flex; flex-direction: column; background: var(--paper); position: relative; }
.price-card:last-child { border-right: none; }
.price-card.featured { background: var(--cream); }
.price-card .ribbon { position: absolute; top: 20px; right: 20px; background: var(--rust); color: #fff; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; padding: 5px 11px; font-weight: 700; }
.price-title { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--espresso); margin: 0 0 4px; }
.price-sub { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.22em; margin: 0 0 24px; font-weight: 700; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--line); }
.price-row:last-of-type { border-bottom: none; }
.price-row .left { font-weight: 600; color: var(--ink); font-size: 14.5px; }
.price-row .left small { display: block; font-weight: 500; color: var(--muted); margin-top: 3px; font-size: 12px; letter-spacing: 0.04em; }
.price-row .right { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--rust); letter-spacing: 0.04em; }
.price-card .order-btn { margin-top: 26px; align-self: flex-start; }
.price-note { font-size: 13px; color: var(--muted); text-align: center; margin: 36px auto 0; max-width: 700px; line-height: 1.6; }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { border-right: none !important; border-bottom: 1px solid var(--line); }
  .price-card:last-child { border-bottom: none; }
}

/* ============== STEPS (how to order) ============== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); background: var(--paper); }
.step { padding: 36px 30px; border-right: 1px solid var(--line); position: relative; }
.step:last-child { border-right: none; }
.step-num { font-family: 'Bebas Neue', sans-serif; font-size: 56px; line-height: 1; color: var(--rust); margin-bottom: 14px; }
.step h3 { font-family: 'Bebas Neue', sans-serif; font-size: 19px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--espresso); margin: 0 0 8px; }
.step p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line); }
  .step:nth-child(odd) { border-right: 1px solid var(--line); }
  .step:nth-child(3), .step:nth-child(4) { border-bottom: none; }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none !important; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: none; }
}

/* ============== CONTACT ============== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; border: 1px solid var(--line); background: var(--paper); }
.contact-card { padding: 44px 40px; border-right: 1px solid var(--line); }
.contact-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--espresso); margin: 0 0 8px; }
.contact-card p { color: var(--muted); margin: 0 0 22px; font-size: 14.5px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 11px; font-weight: 700; color: var(--espresso); margin-bottom: 8px; letter-spacing: 0.22em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 16px; border: 1px solid var(--line); background: var(--cream); font-size: 15px; font-family: inherit; color: var(--ink); border-radius: 0; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--cocoa); background: #fff; }
.field textarea { min-height: 110px; resize: vertical; }
.contact-direct { padding: 44px 40px; background: var(--espresso); color: var(--cream); }
.contact-direct h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; margin: 0 0 8px; }
.contact-direct p { color: rgba(255,255,255,0.7); margin: 0 0 26px; font-size: 14.5px; }
.direct-row { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.12); color: var(--cream); }
.direct-row:last-of-type { border-bottom: none; }
.direct-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.direct-row strong { display: block; color: #fff; font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 0.08em; text-transform: uppercase; }
.direct-row span { display: block; color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 3px; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { border-right: none; border-bottom: 1px solid var(--line); }
  .contact-card, .contact-direct { padding: 32px 26px; }
}

/* ============== CTA BAND ============== */
.cta-band {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,212,61,0.4), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(244,125,63,0.3), transparent 55%),
    linear-gradient(115deg, var(--blush) 0%, var(--rose) 100%);
  padding: 80px 0; text-align: center;
}
.cta-band h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 64px); letter-spacing: 0.02em; color: var(--espresso); margin: 0 0 16px; text-transform: uppercase; line-height: 0.95; }
.cta-band h2 em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; text-transform: none; color: var(--rust); }
.cta-band p { color: var(--coffee); font-size: 17px; margin: 0 auto 32px; max-width: 600px; }

/* ============== FLOATING MESSENGER BUTTON ============== */
.fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  background: var(--rust); color: #fff;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(217,98,46,0.45);
  transition: transform 0.2s ease;
}
.fab:hover { transform: scale(1.08); text-decoration: none; }
.fab svg { width: 28px; height: 28px; }
@media (max-width: 600px) { .fab { width: 54px; height: 54px; bottom: 18px; right: 18px; } .fab svg { width: 24px; height: 24px; } }

/* ============== FOOTER ============== */
footer { background: var(--espresso); color: rgba(255,255,255,0.6); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase; color: #fff; margin: 0 0 18px; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); font-size: 13px; margin-bottom: 10px; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 0.18em; color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.6); margin: 0 0 14px; max-width: 320px; line-height: 1.6; }
.footer-bottom { margin-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ============== UTILITIES & REVEAL ============== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ============== SOFT EDGES OVERRIDE — Canva-style ============== */
.collection,
.collection-img,
.cake-card,
.cake-img,
.service-img,
.testimonial,
.price-card,
.steps,
.contact-grid,
.faq-list,
.timeline,
.yt-wrap,
.yt-frame,
.stat-box,
.hero-tag,
.goal-card,
.contact-direct,
.contact-card {
  border-radius: var(--r-md);
}

.collection,
.cake-card,
.testimonial,
.price-card,
.stat-box {
  border-radius: var(--r-lg);
  overflow: hidden;
}

.collection-img,
.cake-img,
.service-img {
  overflow: hidden;
  border-radius: var(--r-md);
}

.gallery-grid { gap: 22px; }
.collections-grid { gap: 26px; }
.services-grid { gap: 24px; }

.steps, .pricing-grid, .contact-grid, .faq-list, .timeline {
  overflow: hidden;
}

.hero-visual img.hero-photo,
.hero-visual svg {
  border-radius: 0;
}
.hero-visual { border-radius: 0; }

.menu-filter button { border-radius: 999px; }
.btn { border-radius: 999px; }
.field input, .field textarea, .field select { border-radius: 12px; }

/* Subtle drop shadow on cards for warmth */
.cake-card,
.collection,
.testimonial,
.stat-box {
  box-shadow: 0 6px 20px rgba(74, 46, 31, 0.06);
}

/* ============== CATEGORY MOOD TINTS ============== */

/* Cake gallery cards by category */
.cake-card[data-cat="birthday-kids"]   { background: var(--mood-pink-bg); }
.cake-card[data-cat="birthday-kids"]   .cake-tag { color: var(--mood-pink-acc); }
.cake-card[data-cat="birthday-adult"]  { background: var(--mood-blue-bg); }
.cake-card[data-cat="birthday-adult"]  .cake-tag { color: var(--mood-blue-acc); }
.cake-card[data-cat="wedding"]         { background: var(--mood-peach-bg); }
.cake-card[data-cat="wedding"]         .cake-tag { color: var(--mood-peach-acc); }
.cake-card[data-cat="anniversary"]     { background: var(--mood-cream-bg); }
.cake-card[data-cat="anniversary"]     .cake-tag { color: var(--mood-cream-acc); }
.cake-card[data-cat="themed"]          { background: var(--mood-lavender-bg); }
.cake-card[data-cat="themed"]          .cake-tag { color: var(--mood-lavender-acc); }
.cake-card[data-cat="bento"]           { background: var(--mood-mint-bg); }
.cake-card[data-cat="bento"]           .cake-tag { color: var(--mood-mint-acc); }
.cake-card[data-cat="seasonal"]        { background: var(--mood-peach-bg); }
.cake-card[data-cat="seasonal"]        .cake-tag { color: var(--mood-peach-acc); }

/* Service cards by mood */
.service[data-mood="pink"]     .service-name { color: var(--mood-pink-acc); }
.service[data-mood="blue"]     .service-name { color: var(--mood-blue-acc); }
.service[data-mood="peach"]    .service-name { color: var(--mood-peach-acc); }
.service[data-mood="mint"]     .service-name { color: var(--mood-mint-acc); }
.service[data-mood="lavender"] .service-name { color: var(--mood-lavender-acc); }
.service[data-mood="pink"]     .service-img { background: var(--mood-pink-bg); }
.service[data-mood="blue"]     .service-img { background: var(--mood-blue-bg); }
.service[data-mood="peach"]    .service-img { background: var(--mood-peach-bg); }
.service[data-mood="mint"]     .service-img { background: var(--mood-mint-bg); }
.service[data-mood="lavender"] .service-img { background: var(--mood-lavender-bg); }
.service-icon {
  display: inline-block; font-size: 22px; margin-right: 8px; vertical-align: -2px;
}

/* Collection cards by mood */
.collection[data-mood="pink"]     { background: var(--mood-pink-bg); }
.collection[data-mood="blue"]     { background: var(--mood-blue-bg); }
.collection[data-mood="peach"]    { background: var(--mood-peach-bg); }
.collection[data-mood="mint"]     { background: var(--mood-mint-bg); }
.collection[data-mood="lavender"] { background: var(--mood-lavender-bg); }
.collection[data-mood="cream"]    { background: var(--cream); }

/* Testimonials by mood */
.testimonial[data-mood="pink"]     { background: var(--mood-pink-bg); border-left-color: var(--mood-pink-acc); }
.testimonial[data-mood="blue"]     { background: var(--mood-blue-bg); border-left-color: var(--mood-blue-acc); }
.testimonial[data-mood="peach"]    { background: var(--mood-peach-bg); border-left-color: var(--mood-peach-acc); }
.testimonial[data-mood="mint"]     { background: var(--mood-mint-bg); border-left-color: var(--mood-mint-acc); }
.testimonial[data-mood="lavender"] { background: var(--mood-lavender-bg); border-left-color: var(--mood-lavender-acc); }

/* ============== ENHANCED GOAL / 10K CAMPAIGN ============== */
.goal {
  background:
    radial-gradient(circle at 80% 10%, rgba(244,125,63,0.35), transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(244,166,187,0.30), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(255,212,61,0.10), transparent 70%),
    var(--navy-dk);
}
.goal-text h2 em { animation: pulse 3s ease-in-out infinite; display: inline-block; }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
.goal-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--rust); color: #fff !important;
  padding: 14px 24px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  margin-top: 22px; transition: all 0.2s ease;
  box-shadow: 0 8px 24px rgba(217,98,46,0.4);
}
.goal-cta:hover { background: #fff; color: var(--espresso) !important; text-decoration: none; transform: translateY(-2px); }
.goal-started {
  display: inline-block; margin-top: 18px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-weight: 700;
}
.goal-started:before { content: "🎂  "; }

.goal-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.16);
  padding: 28px;
}

.goal-zero-msg {
  margin-top: 18px;
  padding: 16px 20px;
  background: rgba(217,98,46,0.12);
  border-left: 3px solid var(--rust);
  border-radius: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.goal-zero-msg strong { color: #fff; }
