/* ============================================
   Bloomey Cakes — demo site
   Palette: cream base, deep cherry red + blush pink
   (colors sampled from the real Bloomey Cakes logo/highlights)
   Type: Fraunces (display, characterful serif) +
         Nunito Sans (body) + Caveat (handwritten accent)
   ============================================ */

:root{
  --cream:        #FBF3EA;
  --cream-deep:    #F5E6D8;
  --cherry:        #9E1B1B;
  --cherry-deep:   #7A1414;
  --blush:         #F3AAB4;
  --blush-light:   #FBE1E6;
  --ink:           #3A1B14;
  --ink-soft:      #6E4A3E;
  --paper:         #FFFDFB;
  --gold:          #D8A24B;

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;
  --font-script: 'Caveat', cursive;

  --radius-lg: 28px;
  --radius-md: 16px;
  --shadow-soft: 0 18px 40px -20px rgba(122, 20, 20, 0.35);
}

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

html{ scroll-behavior:smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}

body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height:1.6;
  overflow-x:hidden;
}

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

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

.wrap{
  max-width:1140px;
  margin:0 auto;
  padding:0 24px;
}

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight:600;
  color: var(--cherry-deep);
  line-height:1.15;
}

.eyebrow{
  font-family: var(--font-script);
  font-size:1.5rem;
  color: var(--blush);
  -webkit-text-stroke: 0.6px var(--cherry);
  color: var(--cherry);
  display:inline-block;
  margin-bottom:4px;
}

.section-head{
  text-align:center;
  max-width:640px;
  margin:0 auto 48px;
}
.section-head h2{ font-size:clamp(2rem,4vw,2.75rem); }
.section-head p{ color: var(--ink-soft); margin-top:12px; font-size:1.05rem; }

/* ---------- signature heart-bloom divider ---------- */
.bloom-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin: 8px 0 36px;
}
.bloom-divider::before,
.bloom-divider::after{
  content:"";
  height:1px;
  width:64px;
  background: linear-gradient(90deg, transparent, var(--blush));
}
.bloom-divider::after{ background: linear-gradient(90deg, var(--blush), transparent); }
.bloom-divider svg{ width:26px; height:26px; flex-shrink:0; }

/* ---------- header ---------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(251,243,234,0.92);
  backdrop-filter: blur(8px);
  border-bottom:1px solid rgba(158,27,27,0.08);
}
.site-header .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:14px;
  padding-bottom:14px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height:46px; width:auto; }
.brand-wordmark{
  font-family: var(--font-display);
  font-weight:700;
  font-size:1.3rem;
  color: var(--cherry);
  letter-spacing:0.2px;
}

.main-nav{ display:flex; gap:28px; }
.main-nav a{
  font-size:0.95rem;
  font-weight:700;
  color: var(--ink);
  position:relative;
  padding:6px 2px;
}
.main-nav a:hover, .main-nav a:focus-visible{ color: var(--cherry); }
.main-nav a::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:0; height:2px; background: var(--cherry);
  transition:width 0.25s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after{ width:100%; }

.header-cta{
  display:inline-flex; align-items:center; gap:8px;
  background: var(--cherry);
  color: var(--paper) !important;
  padding:10px 20px;
  border-radius:999px;
  font-weight:800;
  font-size:0.9rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, background 0.2s ease;
}
.header-cta:hover{ background: var(--cherry-deep); transform:translateY(-1px); }

.nav-toggle{
  display:none;
  background:none; border:none; cursor:pointer;
  width:40px; height:40px;
  flex-direction:column; align-items:center; justify-content:center; gap:5px;
}
.nav-toggle span{ width:22px; height:2px; background: var(--cherry); border-radius:2px; }

/* ---------- hero ---------- */
.hero{
  position:relative;
  padding: 64px 0 90px;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(600px 400px at 85% -10%, var(--blush-light), transparent 60%),
    radial-gradient(500px 350px at -10% 90%, var(--cream-deep), transparent 60%);
  z-index:0;
}
.hero .wrap{
  position:relative; z-index:1;
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:56px;
  align-items:center;
}
.hero-copy .eyebrow{ font-size:1.7rem; }
.hero-copy h1{
  font-size:clamp(2.6rem, 5vw, 3.8rem);
  margin:6px 0 20px;
}
.hero-copy h1 em{
  font-style:normal;
  color: var(--cherry);
  position:relative;
}
.hero-copy p.lead{
  font-size:1.15rem;
  color: var(--ink-soft);
  max-width:480px;
  margin-bottom:30px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; align-items:center; }

.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:15px 28px;
  border-radius:999px;
  font-weight:800;
  font-size:1rem;
  cursor:pointer;
  border:2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary{
  background: var(--cherry);
  color: var(--paper);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover{ transform:translateY(-2px); background: var(--cherry-deep); }
.btn-ghost{
  background:transparent;
  border-color: var(--cherry);
  color: var(--cherry);
}
.btn-ghost:hover{ background: var(--blush-light); }

.hero-stats{
  display:flex; gap:28px; margin-top:38px;
}
.hero-stats div{ text-align:left; }
.hero-stats strong{
  display:block; font-family:var(--font-display);
  font-size:1.6rem; color:var(--cherry);
}
.hero-stats span{ font-size:0.85rem; color:var(--ink-soft); }

.hero-art{
  position:relative;
}
.hero-art .frame{
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--paper);
  outline: 1px solid rgba(158,27,27,0.12);
  transform: rotate(2deg);
}
.hero-art .frame img{ width:100%; height:520px; object-fit:cover; object-position:center 30%; }
.hero-badge{
  position:absolute;
  bottom:-22px; left:-22px;
  background: var(--paper);
  border-radius: 999px;
  padding:14px 20px;
  box-shadow: var(--shadow-soft);
  display:flex; align-items:center; gap:10px;
  transform: rotate(-4deg);
}
.hero-badge svg{ width:28px; height:28px; }
.hero-badge strong{ display:block; font-family:var(--font-display); color:var(--cherry); font-size:1rem; }
.hero-badge span{ font-size:0.78rem; color:var(--ink-soft); }

/* ---------- pickup strip ---------- */
.pickup-strip{
  background: var(--cherry);
  color: var(--paper);
  padding:18px 0;
  overflow:hidden;
}
.pickup-strip .track{
  display:flex;
  gap:48px;
  white-space:nowrap;
  animation: scroll-left 26s linear infinite;
  width:max-content;
}
.pickup-strip span{
  font-family: var(--font-display);
  font-size:1.05rem;
  letter-spacing:0.4px;
  opacity:0.95;
}
.pickup-strip span::after{ content:"✦"; margin-left:48px; color: var(--blush); }
@keyframes scroll-left{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .pickup-strip .track{ animation:none; }
}

/* ---------- about ---------- */
.about{ padding:100px 0; }
.about .wrap{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap:60px;
  align-items:center;
}
.about-gallery{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.about-gallery img{
  border-radius: var(--radius-md);
  object-fit:cover;
  width:100%;
  height:100%;
  box-shadow: 0 14px 28px -16px rgba(122,20,20,0.3);
}
.about-gallery .tall{ grid-row: span 2; height:100%; aspect-ratio: 3/4; }
.about-gallery .short{ aspect-ratio: 4/3; }

.about-copy p{ color: var(--ink-soft); margin-bottom:18px; font-size:1.05rem; }
.about-copy .highlight-note{
  background: var(--paper);
  border-left:4px solid var(--cherry);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding:18px 22px;
  margin-top:22px;
  box-shadow: 0 10px 24px -18px rgba(122,20,20,0.4);
  font-family: var(--font-script);
  font-size:1.35rem;
  color: var(--cherry-deep);
  line-height:1.4;
}

/* ---------- menu ---------- */
.menu{
  padding:100px 0;
  background: var(--cream-deep);
  position:relative;
}
.menu-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:28px;
}
.menu-card{
  background: var(--paper);
  border-radius: var(--radius-md);
  padding:32px 28px;
  box-shadow: 0 16px 34px -22px rgba(122,20,20,0.35);
  border-top:4px solid var(--blush);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.menu-card:hover{ transform:translateY(-6px); box-shadow: 0 22px 40px -18px rgba(122,20,20,0.4); }
.menu-card h3{ font-size:1.4rem; margin-bottom:6px; }
.menu-card .tag{
  display:inline-block;
  font-family: var(--font-body);
  font-size:0.72rem;
  font-weight:800;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color: var(--cherry);
  background: var(--blush-light);
  padding:4px 10px;
  border-radius:999px;
  margin-bottom:14px;
}
.menu-card ul{ list-style:none; }
.menu-card li{
  padding:8px 0;
  border-bottom:1px dashed rgba(158,27,27,0.15);
  color: var(--ink-soft);
  font-weight:600;
}
.menu-card li:last-child{ border-bottom:none; }

.flavors-band{
  margin-top:56px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding:40px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  box-shadow: 0 16px 34px -24px rgba(122,20,20,0.3);
}
.flavors-band h4{
  font-size:1.15rem;
  margin-bottom:14px;
  color: var(--cherry);
}
.chip-row{ display:flex; flex-wrap:wrap; gap:10px; }
.chip{
  background: var(--blush-light);
  color: var(--cherry-deep);
  padding:8px 16px;
  border-radius:999px;
  font-size:0.88rem;
  font-weight:700;
}

.menu-note{
  text-align:center;
  margin-top:36px;
  color: var(--ink-soft);
  font-size:0.95rem;
}

/* ---------- gallery ---------- */
.gallery{ padding:100px 0; }
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows:180px;
  gap:16px;
}
.gallery-grid figure{
  overflow:hidden;
  border-radius: var(--radius-md);
  position:relative;
}
.gallery-grid img{
  width:100%; height:100%; object-fit:cover;
  transition: transform 0.5s ease;
}
.gallery-grid figure:hover img{ transform:scale(1.08); }
.gallery-grid .big{ grid-column: span 2; grid-row: span 2; }
.gallery-grid .wide{ grid-column: span 2; }

/* ---------- testimonial ---------- */
.testimonial{
  padding:90px 0;
  background: var(--cherry);
  color: var(--paper);
  position:relative;
  overflow:hidden;
}
.testimonial::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(500px 300px at 80% 20%, rgba(255,255,255,0.08), transparent 60%);
}
.testimonial .wrap{
  position:relative; z-index:1;
  display:grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap:48px;
  align-items:center;
}
.testimonial-photo img{
  border-radius: var(--radius-lg);
  border:6px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5);
}
.testimonial blockquote{
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height:1.4;
  margin-bottom:20px;
}
.testimonial blockquote::before{ content:"“"; color: var(--blush); }
.testimonial blockquote::after{ content:"”"; color: var(--blush); }
.testimonial cite{
  font-style:normal;
  font-weight:800;
  opacity:0.85;
  font-size:0.95rem;
  letter-spacing:0.03em;
  text-transform:uppercase;
}

/* ---------- ordering info ---------- */
.ordering{ padding:100px 0; }
.ordering-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:24px;
}
.ordering-card{
  background: var(--paper);
  border-radius: var(--radius-md);
  padding:28px 26px;
  box-shadow: 0 14px 30px -22px rgba(122,20,20,0.35);
}
.ordering-card .icon{
  width:44px; height:44px;
  border-radius:50%;
  background: var(--blush-light);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.ordering-card .icon svg{ width:22px; height:22px; }
.ordering-card h3{ font-size:1.1rem; margin-bottom:8px; }
.ordering-card p{ color: var(--ink-soft); font-size:0.95rem; }

/* ---------- contact ---------- */
.contact{
  padding:100px 0 120px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.contact-panel{
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding:56px;
  box-shadow: var(--shadow-soft);
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:48px;
  align-items:center;
}
.contact-copy h2{ font-size:clamp(1.9rem,3.4vw,2.5rem); margin-bottom:16px; }
.contact-copy p{ color: var(--ink-soft); margin-bottom:26px; font-size:1.05rem; }
.contact-actions{ display:flex; flex-direction:column; gap:14px; align-items:flex-start; }
.wa-btn{
  display:inline-flex; align-items:center; gap:12px;
  background:#25D366;
  color:#fff !important;
  padding:16px 30px;
  border-radius:999px;
  font-weight:800;
  font-size:1.05rem;
  box-shadow: 0 16px 30px -14px rgba(37,211,102,0.55);
  transition: transform 0.2s ease;
}
.wa-btn:hover{ transform:translateY(-2px); }
.wa-btn svg{ width:24px; height:24px; }
.contact-actions .fine{ font-size:0.85rem; color: var(--ink-soft); }

.contact-days{
  background: var(--blush-light);
  border-radius: var(--radius-md);
  padding:30px;
}
.contact-days h3{ font-size:1.1rem; margin-bottom:18px; color:var(--cherry-deep); }
.day-row{
  display:flex; justify-content:space-between;
  padding:10px 0;
  border-bottom:1px solid rgba(158,27,27,0.12);
  font-weight:700;
}
.day-row:last-child{ border-bottom:none; }
.day-row.active{ color: var(--cherry); }
.day-row .dot{
  width:8px; height:8px; border-radius:50%;
  background: var(--cherry);
  display:inline-block; margin-right:8px;
}
.day-row.off .dot{ background: rgba(158,27,27,0.25); }
.day-row.off{ color: var(--ink-soft); font-weight:600; }

/* ---------- footer ---------- */
.site-footer{
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding:44px 0;
}
.site-footer .wrap{
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:18px;
}
.site-footer .brand-wordmark{ color: var(--blush); }
.footer-links{ display:flex; gap:22px; }
.footer-links a{ font-size:0.9rem; opacity:0.85; }
.footer-links a:hover{ opacity:1; color: var(--blush); }
.site-footer .fine{ width:100%; font-size:0.78rem; opacity:0.55; margin-top:18px; text-align:center; }

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .hero .wrap{ grid-template-columns:1fr; }
  .hero-art{ order:-1; }
  .about .wrap{ grid-template-columns:1fr; }
  .menu-grid{ grid-template-columns:1fr; }
  .flavors-band{ grid-template-columns:1fr; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .gallery-grid .big{ grid-column: span 2; grid-row: span 1; aspect-ratio:4/3; height:auto; }
  .testimonial .wrap{ grid-template-columns:1fr; text-align:center; }
  .testimonial blockquote::before, .testimonial blockquote::after{ display:none; }
  .ordering-grid{ grid-template-columns:1fr; }
  .contact-panel{ grid-template-columns:1fr; padding:36px 24px; }
}

@media (max-width: 720px){
  .main-nav{
    position:absolute; top:100%; left:0; right:0;
    background: var(--paper);
    flex-direction:column;
    padding:20px 24px;
    gap:18px;
    box-shadow: 0 20px 30px -20px rgba(122,20,20,0.3);
    display:none;
  }
  .main-nav.open{ display:flex; }
  .nav-toggle{ display:flex; }
  .header-cta{ display:none; }
  .hero-stats{ flex-wrap:wrap; gap:20px; }
  .hero-art .frame img{ height:360px; }
}

:focus-visible{
  outline: 3px solid var(--gold);
  outline-offset:3px;
}
