/* ============================================================
   Pukka Beaut Events — Global Stylesheet
   ============================================================ */

:root {
  /* Brand colors */
  --primary: #FF3B00;
  --primary-dark: #E63000;
  --gold: #FFA500;
  --gold-2: #FF8C00;
  --dark: #1A1A1A;
  --dark-2: #2C2C2C;
  --bg-light: #FAFAFA;
  --bg-light-2: #F4F4F6;
  --white: #FFFFFF;

  --gradient-brand: linear-gradient(135deg, var(--gold-2) 0%, var(--primary) 55%, var(--primary-dark) 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(255,140,0,0.12), rgba(255,59,0,0.10));
  --gradient-text: linear-gradient(135deg, var(--gold-2), var(--primary-dark));

  --shadow-sm: 0 2px 8px rgba(26,26,26,0.06);
  --shadow-md: 0 8px 24px rgba(26,26,26,0.10);
  --shadow-lg: 0 20px 48px rgba(26,26,26,0.14);
  --shadow-glow: 0 12px 32px rgba(255,59,0,0.28);

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

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Poppins', 'Segoe UI', Arial, sans-serif;

  --container: 1220px;
  --header-h: 84px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark-2);
  background: var(--bg-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }

p { color: #55524f; }

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

.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255,59,0,0.08);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gradient-brand);
}

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
}
.btn-primary:hover::before { left: 130%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(255,59,0,0.36); }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(26,26,26,0.18);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }

.btn-light {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-light:hover { transform: translateY(-3px); }

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary);
  position: relative;
}
.link-arrow i { transition: transform 0.25s ease; }
.link-arrow:hover i { transform: translateX(5px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(26,26,26,0.06);
  transition: box-shadow 0.3s ease, height 0.3s ease;
}
/* Blur lives on a pseudo-layer (not the header itself) so that
   backdrop-filter never becomes a containing block for the fixed
   mobile .main-nav — that trapped it inside the header's own box. */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(250,250,250,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header.scrolled { box-shadow: var(--shadow-md); height: 70px; }

.header-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-full-logo { height: 46px; width: auto; display: block; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark-2);
  border-radius: var(--radius-pill);
  transition: color 0.25s ease, background 0.25s ease;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a:hover { color: var(--primary); background: rgba(255,59,0,0.06); }
.main-nav a.active { color: var(--primary); background: rgba(255,59,0,0.09); }

.brand-full-logo { transition: transform 0.3s ease; }
.brand:hover .brand-full-logo { transform: scale(1.04); }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 1200;
}
.nav-toggle span {
  height: 2.5px;
  width: 100%;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1100;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 8px; text-align: center; }
  .main-nav a { font-size: 1.3rem; padding: 12px 28px; }
  .header-actions .btn-primary { display: none; }
  .nav-toggle { display: flex; }
}
@media (min-width: 961px) {
  .header-actions .nav-cta-mobile { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 110px 0 90px;
  background: var(--dark);
  overflow: hidden;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,140,0,0.35), transparent 45%),
    radial-gradient(circle at 88% 82%, rgba(255,59,0,0.4), transparent 50%),
    linear-gradient(160deg, #1a1a1a 0%, #241708 100%);
  background-size: 140% 140%;
  animation: auroraShift 16s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 75%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}
.hero-orb-1 {
  top: 18%; left: 8%;
  width: 10px; height: 10px;
  background: var(--gold);
  animation: orbFloat 7s ease-in-out infinite;
  box-shadow: 0 0 18px 4px rgba(255,165,0,0.6);
}
.hero-orb-2 {
  top: 65%; left: 88%;
  width: 14px; height: 14px;
  background: var(--primary);
  animation: orbFloat 9s ease-in-out infinite reverse;
  box-shadow: 0 0 20px 6px rgba(255,59,0,0.55);
}
.hero-orb-3 {
  top: 32%; left: 82%;
  width: 7px; height: 7px;
  background: var(--gold-2);
  animation: orbFloat 5.5s ease-in-out infinite;
  animation-delay: -2s;
  box-shadow: 0 0 14px 3px rgba(255,140,0,0.6);
}
@keyframes auroraShift {
  0%   { background-position: 0% 20%; }
  100% { background-position: 100% 80%; }
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-16px, -22px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
  .hero-orb-1, .hero-orb-2, .hero-orb-3 { animation: none; }
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.hero-inner.center { max-width: 780px; margin: 0 auto; text-align: center; }
.hero .section-tag { background: rgba(255,255,255,0.1); color: var(--gold); }
.hero .section-tag::before { background: var(--gold); }
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero p.lead { color: rgba(255,255,255,0.78); font-size: 1.12rem; max-width: 620px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.hero-inner.center .hero-cta { justify-content: center; }
.hero-inner.center p.lead { margin-left: auto; margin-right: auto; }

.page-hero { padding: 150px 0 80px; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  margin-top: 18px; justify-content: center;
}
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Stats bar ---------- */
.stats-bar {
  position: relative;
  margin-top: -56px;
  z-index: 5;
}
.stats-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 40px 20px;
}
.stat-item { text-align: center; padding: 0 12px; position: relative; }
.stat-item + .stat-item::before {
  content: '';
  position: absolute; left: 0; top: 10%; bottom: 10%;
  width: 1px; background: rgba(26,26,26,0.08);
}
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--dark-2);
  font-weight: 500;
  margin-top: 6px;
}

@media (max-width: 760px) {
  .stats-card { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .stat-item:nth-child(2)::before { display: none; }
  .stats-bar { margin-top: -36px; }
}

/* ============================================================
   CARDS — services / features / values
   ============================================================ */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,26,26,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(255,59,0,0.15); }

.icon-badge {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-brand-soft);
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; }

/* Service card specific */
.service-card { display: flex; flex-direction: column; height: 100%; }
.service-card .service-foot {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed rgba(26,26,26,0.1);
  display: flex; justify-content: space-between; align-items: center;
}
.service-num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: rgba(26,26,26,0.28);
  font-weight: 700;
}

/* Value card */
.value-card { text-align: center; }
.value-card .icon-badge { margin-left: auto; margin-right: auto; }

/* ============================================================
   WHY CHOOSE US / SPLIT SECTIONS
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }

.media-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/4.6;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.media-panel.short { aspect-ratio: 4/3; }
.media-panel::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.22), transparent 40%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 2px, transparent 2px 26px);
}
.media-panel .glyph { position: relative; z-index: 1; color: rgba(255,255,255,0.92); font-size: 4.5rem; }
.media-panel .caption {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  color: var(--white); z-index: 2;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

/* Variant for a real photo instead of the icon/gradient placeholder */
.media-panel.photo { background: var(--dark); }
.media-panel.photo::before { content: none; }
.media-panel.photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.media-panel.photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent 55%);
  z-index: 1;
}

.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
  color: var(--dark-2);
  font-weight: 500;
}
.check-list i {
  color: var(--white);
  background: var(--gradient-brand);
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; flex-shrink: 0; margin-top: 2px;
}

/* ============================================================
   TESTIMONIAL SLIDER (home)
   ============================================================ */
.testi-slider { position: relative; max-width: 780px; margin: 0 auto; }
.testi-track { overflow: hidden; }
.testi-slides { display: flex; transition: transform 0.5s ease; }
.testi-slide { flex: 0 0 100%; padding: 8px; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.testi-card .quote-mark { font-size: 2.6rem; font-family: var(--font-heading); color: var(--primary); line-height: 1; }
.testi-card p { font-size: 1.1rem; color: var(--dark-2); font-style: italic; margin: 14px 0 22px; }
.testi-author { font-family: var(--font-heading); font-weight: 700; color: var(--dark); }
.testi-role { font-size: 0.82rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.testi-nav { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.testi-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(26,26,26,0.15); transition: all 0.25s ease; }
.testi-dot.active { background: var(--primary); width: 26px; border-radius: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); position: relative; overflow: hidden; }
.site-footer::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(255,59,0,0.16), transparent 45%);
}
.footer-top { position: relative; z-index: 1; padding: 80px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; margin-bottom: 18px; }
.footer-brand .brand-full-logo { height: 54px; width: auto; }
.footer-col p { color: rgba(255,255,255,0.6); font-size: 0.92rem; }
.footer-col h4 { color: var(--white); font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: rgba(255,255,255,0.65); font-size: 0.92rem; transition: color 0.25s ease, padding-left 0.25s ease; }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-contact i { color: var(--gold); margin-top: 3px; }
.footer-socials { display: flex; gap: 12px; margin-top: 22px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: all 0.25s ease;
}
.footer-socials a:hover { background: var(--gradient-brand); transform: translateY(-4px); }

/* ---------- Contextual social row (light backgrounds, within page sections) ---------- */
.section-socials { display: flex; gap: 12px; justify-content: center; align-items: center; margin-top: 22px; }
.section-socials span { font-size: 0.82rem; color: #7a7a7a; margin-right: 4px; }
.section-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(26,26,26,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark-2); transition: all 0.25s ease;
}
.section-socials a:hover { background: var(--gradient-brand); color: var(--white); border-color: transparent; transform: translateY(-4px); }

.footer-bottom {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.84rem; }
.dev-credit {
  display: inline-block;
  position: relative;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s ease;
}
.dev-credit::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.dev-credit:hover { color: var(--white); }
.dev-credit:hover::after { transform: scaleX(1); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.84rem; color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   MODAL — WhatsApp booking
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(26,26,26,0.55);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 440px; width: 100%;
  padding: 42px 36px;
  text-align: center;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-icon {
  width: 66px; height: 66px; border-radius: 50%;
  background: var(--gradient-brand-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.6rem;
}
.modal-box h3 { margin-bottom: 12px; }
.modal-box p { font-size: 0.95rem; margin-bottom: 28px; }
.modal-actions { display: flex; flex-direction: column; gap: 12px; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark-2); background: var(--bg-light-2);
  transition: all 0.2s ease;
}
.modal-close:hover { background: rgba(255,59,0,0.1); color: var(--primary); }

/* ============================================================
   ACCORDION — pricing
   ============================================================ */
.accordion-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(26,26,26,0.08);
  margin-bottom: 16px;
  overflow: hidden;
}
.accordion-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary .plus {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gradient-brand-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.3s ease;
}
.accordion-item[open] summary .plus { transform: rotate(45deg); }
.accordion-body { padding: 0 28px 28px; }
.accordion-body p.note { font-size: 0.88rem; color: var(--primary); margin-top: 16px; }

.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 760px) { .tier-grid { grid-template-columns: 1fr; } }
.tier {
  border: 1px solid rgba(26,26,26,0.08);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.tier.featured { border-color: var(--primary); background: rgba(255,59,0,0.03); position: relative; }
.tier .tier-name { font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.tier ul { margin-top: 12px; }
.tier ul li { font-size: 0.86rem; color: #55524f; margin-bottom: 8px; display: flex; gap: 8px; align-items: flex-start; }
.tier ul li i { color: var(--primary); margin-top: 3px; font-size: 0.75rem; }

/* Fee tables — real guest-count / price rows inside the pricing accordion */
.fee-table-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
  padding: 0 18px;
}
.fee-table-head .subtitle { font-size: 0.82rem; font-style: italic; color: #7a7a7a; }
.fee-table { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid rgba(26,26,26,0.08); }
.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 18px;
  font-size: 0.92rem;
}
.fee-row:nth-child(even) { background: rgba(255,140,0,0.06); }
.fee-row .fee-label { color: var(--dark-2); font-weight: 500; }
.fee-row .fee-price { color: var(--primary); font-weight: 700; white-space: nowrap; }
.fee-row .fee-price .from { color: #8a8a8a; font-weight: 500; font-size: 0.8rem; margin-right: 4px; }
.fee-group + .fee-group { margin-top: 22px; }

/* ============================================================
   PORTFOLIO / GALLERY
   ============================================================ */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(26,26,26,0.12);
  font-size: 0.88rem; font-weight: 600;
  color: var(--dark-2);
  transition: all 0.25s ease;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--gradient-brand); border-color: transparent; color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3.2;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gallery-item:nth-child(3n+2) { background: linear-gradient(135deg, #2c2c2c, #1a1a1a); }
.gallery-item:nth-child(3n+3) { background: linear-gradient(135deg, var(--gold-2), var(--gold)); }
.gallery-item::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 24px);
}
.gallery-item:hover { transform: translateY(-6px) scale(1.015); box-shadow: var(--shadow-lg); }
.gallery-glyph {
  position: absolute; top: 22px; left: 22px;
  color: rgba(255,255,255,0.85); font-size: 1.8rem;
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-glyph { transform: scale(1.15) rotate(-6deg); }

/* Variant for a real photo instead of the gradient/icon placeholder */
.gallery-item.has-photo { background: var(--dark); }
.gallery-item.has-photo::before { content: none; }
.gallery-item.has-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item.has-photo:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: var(--white);
}
.gallery-overlay .cat {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 6px;
}
.gallery-overlay h4 { color: var(--white); font-size: 1.05rem; }
.gallery-item.hide { display: none; }

/* ---------- Cakes & Bakes bento showcase (About page) ---------- */
.cake-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px;
  gap: 20px;
}
.cake-bento .gallery-item { aspect-ratio: auto; height: 100%; }
.cake-bento .gallery-item.hero { grid-column: span 2; grid-row: span 2; }
.cake-bento .gallery-item.small { grid-column: span 1; grid-row: span 1; }
.cake-bento .gallery-item.hero .gallery-overlay h4 { font-size: 1.3rem; }
@media (max-width: 860px) {
  .cake-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .cake-bento .gallery-item.hero { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 560px) {
  .cake-bento { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .cake-bento .gallery-item.hero { grid-column: 1; grid-row: span 1; }
}

/* ---------- Investment section — horizontal auto-scrolling photo strip ---------- */
.investment-scroller {
  overflow: hidden;
  margin: 40px 0 44px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
          mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.investment-scroller-track {
  display: flex;
  width: max-content;
  animation: investmentScroll 46s linear infinite;
}
.investment-scroller:hover .investment-scroller-track { animation-play-state: paused; }
.investment-scroller-set { display: flex; }
.investment-scroller-item {
  display: block;
  flex: 0 0 auto;
  width: 230px;
  aspect-ratio: 4/3;
  margin-right: 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.investment-scroller-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.investment-scroller-item:hover img { transform: scale(1.07); }
@keyframes investmentScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .investment-scroller-item { width: 170px; margin-right: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .investment-scroller { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .investment-scroller-track { animation: none; }
  .investment-scroller-set[aria-hidden="true"] { display: none; }
}

/* ============================================================
   BAKES — cake showcase
   ============================================================ */
.bake-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.bake-card {
  width: 172px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,26,26,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bake-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.bake-img-wrap { aspect-ratio: 1/1; overflow: hidden; background: var(--bg-light-2); }
.bake-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.bake-label {
  padding: 12px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
}

/* ============================================================
   TESTIMONIALS PAGE — grid
   ============================================================ */
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 760px) { .review-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,26,26,0.05);
  position: relative;
}
.review-card .quote-mark { font-size: 2.4rem; font-family: var(--font-heading); color: rgba(255,59,0,0.18); position: absolute; top: 20px; right: 26px; }
.review-card p { font-style: italic; color: var(--dark-2); margin-bottom: 20px; }
.review-foot { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-heading); font-weight: 700;
  flex-shrink: 0;
}
.review-author { font-weight: 700; color: var(--dark); font-size: 0.95rem; }
.review-role { font-size: 0.8rem; color: var(--primary); }

/* ============================================================
   ABOUT PAGE — founder + highlights
   ============================================================ */
.founder-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr;
}
.credential-list { margin-top: 16px; }
.credential-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 0.92rem; }
.credential-list i { color: var(--primary); margin-top: 4px; }

.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px; background: rgba(255,59,0,0.15); }
.timeline-item { position: relative; padding-bottom: 30px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute; left: -30px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gradient-brand);
  border: 3px solid var(--bg-light);
  box-shadow: 0 0 0 2px rgba(255,59,0,0.25);
}
.timeline-item h4 { margin-bottom: 4px; }
.timeline-item p { font-size: 0.9rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 70px; }
@media (max-width: 900px) { .contact-info-grid { grid-template-columns: 1fr; } }
.contact-card { text-align: center; }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 960px) { .contact-wrap { grid-template-columns: 1fr; } }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.field label .hint { font-weight: 400; color: #9a9a9a; font-size: 0.78rem; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(26,26,26,0.12);
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--dark-2);
  background: var(--bg-light-2);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }

.form-note { font-size: 0.82rem; color: #7a7a7a; margin-top: 6px; }
.form-success {
  display: none;
  align-items: center; gap: 12px;
  background: rgba(46,160,67,0.08);
  border: 1px solid rgba(46,160,67,0.25);
  color: #1c7a31;
  padding: 16px 18px;
  border-radius: 12px;
  margin-top: 18px;
  font-size: 0.9rem;
}
.form-success.show { display: flex; }
.form-error {
  display: none;
  align-items: center; gap: 12px;
  background: rgba(217,45,32,0.08);
  border: 1px solid rgba(217,45,32,0.25);
  color: #d92d20;
  padding: 16px 18px;
  border-radius: 12px;
  margin-top: 18px;
  font-size: 0.9rem;
}
.form-error.show { display: flex; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1/0.85;
}

/* ============================================================
   BENEFITS — alternating image/text rows
   ============================================================ */
.benefit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 88px;
}
.benefit-row:last-child { margin-bottom: 0; }
.benefit-row.reverse .benefit-media { order: 2; }
.benefit-row.reverse .benefit-text { order: 1; }
.benefit-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3.3;
  box-shadow: var(--shadow-lg);
}
.benefit-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.benefit-media:hover img { transform: scale(1.05); }
.benefit-num {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(26,26,26,0.14);
  margin-bottom: 10px;
}
.benefit-text h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 16px; }
.benefit-text p { font-size: 1.02rem; }

@media (max-width: 860px) {
  .benefit-row, .benefit-row.reverse { grid-template-columns: 1fr; gap: 28px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(26,26,26,0.08); }
  .benefit-row:last-child, .benefit-row.reverse:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
  .benefit-row.reverse .benefit-media, .benefit-row.reverse .benefit-text { order: 0; }
}

/* ---------- Numbered benefit/service list ---------- */
.numbered-card { padding: 30px 32px; }
.numbered-card .num {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem;
  color: var(--primary); margin-bottom: 12px;
}
.numbered-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.numbered-card p { font-size: 0.92rem; color: #6b6b6b; }
@media (max-width: 700px) {
  .numbered-list.grid-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,140,0,0.35), transparent 50%), radial-gradient(circle at 85% 85%, rgba(255,59,0,0.35), transparent 50%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   UTILITIES / ANIMATION
   ============================================================ */
/* .reveal only starts hidden once the "js" class confirms the animation
   script actually ran — if a script fails to load, content stays visible
   by default instead of being stuck at opacity:0 forever. */
.reveal {
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
  transition-delay: var(--reveal-delay, 0s);
}
.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal.in { opacity: 1; transform: translateY(0); }

.section-tag {
  animation: none;
}
.section-tag::before { animation: tagPulse 2.4s ease-in-out infinite; }
@keyframes tagPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { transition-delay: 0s !important; }
  .section-tag::before { animation: none; }
}

.bg-light2 { background: var(--bg-light-2); }
.bg-dark { background: var(--dark); color: var(--white); }

.mt-0 { margin-top: 0 !important; }
.center-text { text-align: center; }

::selection { background: var(--primary); color: var(--white); }

/* Scrollbar accent */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-light-2); }
::-webkit-scrollbar-thumb { background: var(--gradient-brand); border-radius: 10px; }

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 28px rgba(37,211,102,0.45);
  z-index: 900;
  transition: transform 0.25s ease;
}
.wa-float::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.4s ease-out infinite;
  z-index: -1;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .wa-float::before { animation: none; } }

@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}
