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

  :root {
    --crimson: #D6386B;
    --crimson-dark: #A82555;
    --crimson-light: #E84E7E;
    --cream: #F5EDD6;
    --cream-dark: #EDE0C0;
    --gold: #D4A843;
    --gold-light: #F0C96A;
    --blush: #FDE8E8;
    --ink: #111111;
    --ink-soft: #333333;
    --white: #FFFDF8;
  }


.w-100 {
  width: 100%;
}

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Lato', sans-serif;
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 48px;
    background: rgba(255,253,248,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200,16,46,0.1);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 12px;
  }
  .nav-logo-circle {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--crimson);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    color: var(--cream);
    font-family: 'Playfair Display', serif;
    font-size: 7px; font-weight: 700;
    text-align: center; line-height: 1.15;
    letter-spacing: 0.03em;
    border: 1.5px solid var(--gold);
    box-shadow: 0 2px 8px rgba(200,16,46,0.25);
  }
  .nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 17px; font-weight: 600;
    color: var(--crimson-dark);
    letter-spacing: 0.02em;
  }
  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink-soft);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--crimson); }
  .nav-cta {
    background: var(--crimson);
    color: var(--cream) !important;
    padding: 10px 22px;
    border-radius: 24px;
    font-size: 12px !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--crimson-dark) !important; color: var(--cream) !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 48px 60px;
    background: var(--cream);
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: -120px; right: -120px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(200,16,46,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute; bottom: -80px; left: -80px;
    width: 350px; height: 350px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,67,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-text { position: relative; z-index: 2; padding-right: 40px; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 20px;
  }
  .hero-eyebrow::before {
    content: ''; display: block;
    width: 30px; height: 1.5px; background: var(--gold);
  }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 10px;
  }
  .hero-title em {
    font-style: italic; color: var(--crimson);
  }
  .hero-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 28px; color: var(--crimson);
    margin-bottom: 24px;
    opacity: 0.85;
  }
  .hero-desc {
    font-size: 16px; line-height: 1.75;
    color: var(--ink-soft); max-width: 440px;
    margin-bottom: 36px;
    font-weight: 300;
  }
  .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--crimson);
    color: var(--cream);
    padding: 15px 34px; border-radius: 32px;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(200,16,46,0.35);
    transition: all 0.25s;
    display: inline-block;
  }
  .btn-primary:hover {
    background: var(--crimson-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200,16,46,0.45);
  }
  .btn-outline {
    border: 2px solid var(--crimson);
    color: var(--crimson);
    padding: 13px 30px; border-radius: 32px;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
  }
  .btn-outline:hover {
    background: var(--crimson);
    color: var(--cream);
    transform: translateY(-2px);
  }
  .hero-visual {
    position: relative; z-index: 2;
    display: flex; justify-content: center; align-items: center;
  }
  .hero-circle-outer {
    width: 420px; height: 420px; border-radius: 50%;
    background: var(--crimson);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 20px 60px rgba(200,16,46,0.35), 0 0 0 20px rgba(200,16,46,0.06);
    position: relative;
  }
  .hero-circle-inner {
    width: 340px; height: 340px; border-radius: 50%;
    border: 2px solid rgba(245,237,214,0.4);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; text-align: center;
    padding: 40px;
  }
  .hero-logo-text {
    font-family: 'Playfair Display', serif;
    color: var(--cream);
    font-size: 52px; font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
  }
  .hero-logo-text span { color: var(--gold-light); }
  .hero-logo-sub {
    margin-top: 12px;
    border-top: 1px solid rgba(245,237,214,0.35);
    padding-top: 12px;
    width: 100%;
  }
  .hero-logo-sub p:first-child {
    font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(245,237,214,0.7);
  }
  .hero-logo-sub .love-script {
    font-family: 'Dancing Script', cursive;
    font-size: 32px; color: var(--gold-light);
  }
  /* Orbit dots */
  .orbit {
    position: absolute; top: 50%; left: 50%;
    width: 500px; height: 500px; border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(200,16,46,0.15);
    animation: spin 30s linear infinite;
    pointer-events: none;
  }
  .orbit-dot {
    position: absolute; top: 0; left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--gold);
    opacity: 0.7;
  }
  .orbit-dot:nth-child(2) { transform: translateX(-50%) translateY(-50%) rotate(120deg) translateY(-250px) rotate(-120deg); }
  .orbit-dot:nth-child(3) { transform: translateX(-50%) translateY(-50%) rotate(240deg) translateY(-250px) rotate(-240deg); }
  @keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

  /* ── TRUST BAR ── */
  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--crimson);
    padding: 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  /* fade edges */
  .trust-bar::before,
  .trust-bar::after {
    content: '';
    position: absolute; top: 0; bottom: 0; width: 80px;
    z-index: 2; pointer-events: none;
  }
  .trust-bar::before {
    left: 0;
    background: linear-gradient(to right, var(--crimson), transparent);
  }
  .trust-bar::after {
    right: 0;
    background: linear-gradient(to left, var(--crimson), transparent);
  }
  .trust-marquee-track {
    overflow: hidden; padding: 20px 0;
  }
  .trust-marquee-inner {
    display: flex; align-items: center;
    width: max-content;
    animation: marquee 28s linear infinite;
  }
  .trust-marquee-track:hover .trust-marquee-inner {
    animation-play-state: paused;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .trust-item {
    display: flex; align-items: center; gap: 10px;
    color: white; padding: 0 28px; white-space: nowrap;
  }
  .trust-icon { font-size: 22px; }
  .trust-text {
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
  }
  .trust-divider {
    color: rgba(255,255,255,0.35);
    font-size: 12px; flex-shrink: 0;
  }

  /* ── SECTION DEFAULTS ── */
  section { padding: 90px 48px; }
  .section-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold);
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px;
  }
  .section-eyebrow::after { content: ''; display: block; width: 30px; height: 1.5px; background: var(--gold); }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3.5vw, 48px);
    line-height: 1.2; margin-bottom: 18px;
    color: var(--ink);
  }
  .section-title em { font-style: italic; color: var(--crimson); }

  /* ── SPECIALTIES ── */
  .specialties { background: var(--white); }
  .specialties-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
  .specialties-desc { color: var(--ink-soft); font-size: 16px; line-height: 1.7; font-weight: 300; }
  .specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px; margin: 0 auto;
  }
  .cake-card {
    background: var(--cream);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
  }
  .cake-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(200,16,46,0.12); }
  .cake-img {
    width: 100%; height: 220px;
    display: flex; align-items: center; justify-content: center;
    font-size: 64px;
    position: relative; overflow: hidden;
  }
  .cake-img-1 { background: linear-gradient(135deg, #F9E4E8, #F5C6CF); }
  .cake-img-2 { background: linear-gradient(135deg, #FFF3C4, #FFE080); }
  .cake-img-3 { background: linear-gradient(135deg, #D4E8FF, #B8D4FF); }
  .cake-img-4 { background: linear-gradient(135deg, #E8D5FF, #C9A8FF); }
  .cake-img-5 { background: linear-gradient(135deg, #D4F5E4, #A8E8C4); }
  .cake-img-6 { background: linear-gradient(135deg, #FFE4C9, #FFD0A0); }
  .cake-badge {
    position: absolute; top: 14px; right: 14px;
    background: var(--crimson); color: var(--cream);
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 4px 10px; border-radius: 12px;
  }
  .cake-body { padding: 22px 24px 26px; }
  .cake-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 600;
    color: var(--ink); margin-bottom: 6px;
  }
  .cake-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.6; font-weight: 300; margin-bottom: 14px; }
  .cake-footer { display: flex; align-items: center; justify-content: space-between; }
  .cake-price {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700; color: var(--crimson);
  }
  .cake-price span { font-size: 13px; font-weight: 400; color: var(--ink-soft); font-family: 'Lato', sans-serif; }
  .cake-order {
    background: var(--crimson); color: var(--cream);
    border: none; padding: 8px 18px; border-radius: 20px;
    font-size: 12px; font-weight: 700; cursor: pointer;
    text-transform: uppercase; letter-spacing: 0.08em;
    transition: background 0.2s;
  }
  .cake-order:hover { background: var(--crimson-dark); }

  /* ── STORY ── */
  .story {
    background: var(--cream);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .story-visual {
    position: relative; display: flex;
    align-items: center; justify-content: center;
  }
  .story-circle-bg {
    width: 340px; height: 340px; border-radius: 50%;
    background: var(--crimson);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; text-align: center;
    box-shadow: 0 16px 48px rgba(200,16,46,0.3);
  }
  .story-emoji { font-size: 80px; }
  .story-circle-label {
    font-family: 'Dancing Script', cursive;
    font-size: 22px; color: var(--cream); margin-top: 8px;
  }
  .story-floating {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    font-size: 13px;
  }
  .story-floating-1 { top: 20px; right: -20px; }
  .story-floating-2 { bottom: 30px; left: -30px; }
  .story-floating strong {
    display: block; font-family: 'Playfair Display', serif;
    font-size: 22px; color: var(--crimson);
  }
  .story-floating span { color: var(--ink-soft); }
  .story-text .section-title { margin-bottom: 20px; }
  .story-para {
    font-size: 16px; line-height: 1.8;
    color: var(--ink-soft); font-weight: 300;
    margin-bottom: 16px;
  }
  .story-values {
    display: flex; gap: 24px; margin-top: 32px; flex-wrap: wrap;
  }
  .story-value {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 700;
    color: var(--ink-soft); text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .story-value::before {
    content: '';
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--crimson); flex-shrink: 0;
  }

  /* ── PROCESS ── */
  .process { background: var(--ink); }
  .process .section-title { color: var(--cream); }
  .process-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
  .process-sub { color: rgba(245,237,214,0.6); font-size: 16px; font-weight: 300; line-height: 1.7; }
  .process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 32px; max-width: 1000px; margin: 0 auto;
  }
  .process-step { text-align: center; }
  .process-icon-wrap {
    width: 80px; height: 80px; border-radius: 50%;
    border: 2px solid rgba(212,168,67,0.4);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    background: rgba(212,168,67,0.05);
    transition: border-color 0.2s;
  }
  .process-step:hover .process-icon-wrap { border-color: var(--gold); }
  .process-step-num {
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); font-weight: 700; margin-bottom: 8px;
  }
  .process-step-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px; color: var(--cream);
    margin-bottom: 8px;
  }
  .process-step-desc {
    font-size: 13px; color: rgba(245,237,214,0.55);
    line-height: 1.65; font-weight: 300;
  }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--blush); }
  .testimonials-header { text-align: center; max-width: 600px; margin: 0 auto 36px; }

  /* ── INSTAGRAM ── */
  .instagram { background: var(--white); text-align: center; }
  .instagram .section-title { margin-bottom: 8px; }
  .instagram-handle {
    font-family: 'Dancing Script', cursive;
    font-size: 26px; color: var(--crimson);
    margin-bottom: 40px; display: block;
    text-decoration: none;
  }
  .insta-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px; max-width: 900px; margin: 0 auto 40px;
  }
  .insta-tile {
    aspect-ratio: 1;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
    overflow: hidden;
    position: relative; cursor: pointer;
    transition: transform 0.25s;
  }
  .insta-tile:hover { transform: scale(1.04); }
  .insta-tile:hover .insta-overlay { opacity: 1; }
  .insta-overlay {
    position: absolute; inset: 0;
    background: rgba(200,16,46,0.75);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.25s;
    border-radius: 16px;
  }
  .insta-overlay span { color: white; font-size: 28px; }
  .insta-t1 { background: linear-gradient(135deg, #FFD6DC, #FFB3BE); }
  .insta-t2 { background: linear-gradient(135deg, #FFF0C0, #FFE08A); }
  .insta-t3 { background: linear-gradient(135deg, #D8F0FF, #B0D8FF); }
  .insta-t4 { background: linear-gradient(135deg, #E8D8FF, #C8A8FF); }
  .insta-t5 { background: linear-gradient(135deg, #D0F5E4, #A8E8C4); }
  .insta-t6 { background: linear-gradient(135deg, #FFDEC8, #FFC090); }
  .insta-t7 { background: linear-gradient(135deg, #FFE0E0, #FFC0C0); }
  .insta-t8 { background: linear-gradient(135deg, #F0FFD8, #D8F0A8); }
  .insta-follow {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--crimson); color: var(--cream);
    padding: 14px 32px; border-radius: 32px;
    text-decoration: none; font-weight: 700;
    font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(200,16,46,0.3);
    transition: all 0.25s;
  }
  .insta-follow:hover { background: var(--crimson-dark); transform: translateY(-2px); }

  /* ── ORDER ── */
  .order-section {
    background: var(--crimson);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .order-text .section-eyebrow { color: var(--gold-light); }
  .order-text .section-eyebrow::after { background: var(--gold-light); }
  .order-text .section-title { color: var(--cream); }
  .order-text p { color: rgba(245,237,214,0.8); font-size: 16px; font-weight: 300; line-height: 1.7; margin-bottom: 30px; }
  .order-form-wrap {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 24px; padding: 36px;
  }
  .order-form-wrap h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px; color: var(--cream);
    margin-bottom: 24px;
  }
  .form-group { margin-bottom: 16px; }
  .form-group label {
    display: block; font-size: 11px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(245,237,214,0.7); margin-bottom: 6px;
  }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px; padding: 12px 16px;
    font-size: 14px; color: var(--cream);
    font-family: 'Lato', sans-serif;
    outline: none; transition: border-color 0.2s;
  }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(245,237,214,0.4); }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold-light);
  }
  .form-group select option { background: var(--crimson-dark); color: var(--cream); }
  .form-group textarea { resize: vertical; min-height: 80px; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .btn-submit {
    width: 100%; background: var(--cream); color: var(--crimson);
    border: none; padding: 15px; border-radius: 12px;
    font-size: 14px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; cursor: pointer;
    margin-top: 8px; transition: all 0.25s;
  }
  .btn-submit:hover { background: var(--gold-light); }

  /* ── FAQ ── */
  .faq { background: var(--cream); }
  .faq-header { text-align: center; max-width: 600px; margin: 0 auto 50px; }
  .faq-list { max-width: 700px; margin: 0 auto; }
  .faq-item {
    border-bottom: 1px solid rgba(200,16,46,0.15);
    padding: 22px 0;
  }
  .faq-q {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 600;
    color: var(--ink); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
  }
  .faq-toggle {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--crimson); color: var(--cream);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0; margin-left: 16px;
    transition: transform 0.25s;
  }
  .faq-a {
    font-size: 14px; color: var(--ink-soft); line-height: 1.7;
    font-weight: 300; margin-top: 14px;
    display: none;
  }
  .faq-item.open .faq-a { display: block; }
  .faq-item.open .faq-toggle { transform: rotate(45deg); }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    padding: 60px 48px 32px;
    color: rgba(245,237,214,0.5);
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 48px;
  }
  .footer-brand { }
  .footer-logo {
    display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
  }
  .footer-logo-circle {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--crimson);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    color: var(--cream); font-family: 'Playfair Display', serif;
    font-size: 8px; font-weight: 700; text-align: center;
    border: 1.5px solid var(--gold);
  }
  .footer-logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 600; color: var(--cream);
  }
  .footer-desc { font-size: 13px; line-height: 1.7; max-width: 260px; }
  .footer-col-title {
    font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--cream);
    margin-bottom: 18px;
  }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a {
    text-decoration: none; font-size: 13px;
    color: rgba(245,237,214,0.5);
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid rgba(245,237,214,0.1);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-bottom p { font-size: 12px; }
  .footer-love {
    font-family: 'Dancing Script', cursive;
    font-size: 18px; color: var(--crimson);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none; }
    .nav-logo-img { width: 38px; height: 38px; }
    .nav-brand { font-size: 15px; }
    .nav-cta { padding: 8px 16px; font-size: 11px !important; }

    /* Hero */
    .hero { grid-template-columns: 1fr; padding: 88px 20px 48px; text-align: center; }
    .hero-text { padding-right: 0; }
    .hero-title { font-size: 32px; }
    .hero-tagline { font-size: 22px; }
    .hero-desc { margin: 0 auto 28px; font-size: 14px; }
    .hero-buttons { justify-content: center; flex-direction: column; align-items: center; }
    .hero-visual { margin-top: 32px; }
    .hero-cake-img { border-radius: 20px; }

    /* General sections */
    section { padding: 52px 20px; }
    .section-title { font-size: 26px; }

    /* Specialties */
    .specialties-header { margin-bottom: 36px; }
    .specialties-desc { font-size: 14px; }

    /* Story */
    .story { grid-template-columns: 1fr; gap: 36px; padding: 52px 20px; }
    .story-photo { width: 260px; }
    .story-floating-1 { right: 0; top: 10px; }
    .story-floating-2 { left: 0; bottom: 10px; }

    /* Process */
    .process-steps { grid-template-columns: 1fr 1fr; gap: 20px; }
    .process-icon-wrap { width: 64px; height: 64px; font-size: 26px; }
    .process-step-title { font-size: 15px; }
    .process-step-desc { font-size: 12px; }

    /* Reviews */
    .reviews-grid { grid-template-columns: 1fr; }

    /* Instagram */
    .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    /* Order */
    .order-section { grid-template-columns: 1fr; gap: 32px; padding: 52px 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .order-form-wrap { padding: 26px 20px; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

    /* Custom banner */
    .custom-banner-wrap { padding: 0 20px 40px; }
    .custom-banner { padding: 28px 22px; border-radius: 18px; }
    .custom-banner-title { font-size: 20px; }
    .custom-banner-cta { width: 100%; justify-content: center; }

    /* View all CTA */
    .btn-view-all { font-size: 12px; padding: 12px 24px; }
  }

  /* ── REAL LOGO ── */
  .nav-logo-img {
    width: 46px; height: 46px; border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(214,56,107,0.3);
    border: 2px solid #D6386B;
  }
  .footer-logo-img {
    width: 52px; height: 52px; border-radius: 50%;
    object-fit: cover;
    border: 2px solid #D6386B;
  }

  /* ── HERO CAKE ── */
  .hero-cake-wrap {
    position: relative;
    display: inline-block;
  }
  .hero-cake-img {
    width: 480px; max-width: 100%;
    border-radius: 32px;
    object-fit: cover;
    aspect-ratio: 3/4;
    box-shadow: 0 24px 72px rgba(214,56,107,0.25), 0 0 0 12px rgba(214,56,107,0.06);
    display: block;
  }
  .hero-cake-badge {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    background: rgba(17,17,17,0.85);
    backdrop-filter: blur(8px);
    color: #F5EDD6;
    padding: 10px 22px; border-radius: 24px;
    font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
    white-space: nowrap;
    border: 1px solid rgba(245,237,214,0.15);
  }

  /* ── STORY PHOTO ── */
  .story-photo-wrap {
    position: relative; display: inline-block;
  }
  .story-photo {
    width: 340px; max-width: 100%;
    border-radius: 50%;
    object-fit: cover; object-position: top center;
    aspect-ratio: 1;
    box-shadow: 0 16px 56px rgba(214,56,107,0.3);
    border: 6px solid #D6386B;
    display: block;
  }
  .story-photo-badge {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    background: #D6386B;
    color: white;
    padding: 8px 20px; border-radius: 20px;
    text-align: center; white-space: nowrap;
  }
  .story-badge-script {
    font-family: 'Dancing Script', cursive;
    font-size: 18px; display: block;
  }
  .story-badge-sub {
    font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
    opacity: 0.85;
  }


  /* ── CAROUSEL ── */
  .carousel-wrap {
    position: relative;
    max-width: 980px; margin: 0 auto;
    display: flex; align-items: center; gap: 16px;
  }
  .carousel-track-outer {
    overflow: hidden; flex: 1; border-radius: 28px;
  }
  .carousel-track {
    display: flex; transition: transform 0.45s cubic-bezier(.4,0,.2,1);
  }
  .carousel-slide {
    min-width: 100%;
    display: grid; grid-template-columns: 3fr 2fr;
    background: var(--cream);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(214,56,107,0.1);
    height: 520px;
  }
  .carousel-img-wrap {
    position: relative; overflow: hidden;
    height: 100%;
  }
  .carousel-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    transition: transform 0.6s ease;
  }
  .carousel-slide:hover .carousel-img { transform: scale(1.04); }
  .carousel-badge {
    position: absolute; top: 18px; left: 18px;
    color: white; font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 20px;
  }
  .carousel-info {
    padding: 36px 36px;
    display: flex; flex-direction: column; justify-content: center;
    background: var(--cream);
  }
  .carousel-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700;
    color: var(--ink); margin-bottom: 12px; line-height: 1.3;
  }
  .carousel-desc {
    font-size: 13px; line-height: 1.7;
    color: var(--ink-soft); font-weight: 300;
    margin-bottom: 28px; flex: 1;
  }
  .carousel-footer {
    display: flex; align-items: center;
    justify-content: space-between; gap: 16px;
    flex-wrap: wrap;
  }
  .carousel-price {
    font-family: 'Playfair Display', serif;
    font-size: 24px; font-weight: 700; color: var(--crimson);
  }
  .carousel-price span {
    font-size: 12px; font-weight: 400;
    color: var(--ink-soft); font-family: 'Lato', sans-serif;
  }
  .carousel-order {
    background: var(--crimson); color: white;
    border: none; padding: 11px 22px; border-radius: 24px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; transition: all 0.25s;
    white-space: nowrap;
  }
  .carousel-order:hover {
    background: var(--crimson-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(214,56,107,0.35);
  }
  .carousel-arrow {
    width: 50px; height: 50px; border-radius: 50%;
    background: white; border: 2px solid var(--crimson);
    color: var(--crimson); font-size: 20px;
    cursor: pointer; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(214,56,107,0.15);
  }
  .carousel-arrow:hover {
    background: var(--crimson); color: white;
    transform: scale(1.08);
  }
  .carousel-dots {
    display: flex; justify-content: center; gap: 10px; margin-top: 28px;
  }
  .carousel-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(214,56,107,0.25); border: none;
    cursor: pointer; transition: all 0.25s;
    padding: 0;
  }
  .carousel-dot.dot-active {
    background: var(--crimson); width: 28px; border-radius: 5px;
  }
  @media (max-width: 900px) {
    /* ── Carousel ── */
    .carousel-wrap { gap: 0; position: relative; }
    .carousel-slide {
      grid-template-columns: 1fr;
      height: auto;
      border-radius: 20px;
    }
    .carousel-img-wrap { height: 360px; }
    .carousel-img { object-position: center center; }
    .carousel-info { padding: 22px 20px 26px; }
    .carousel-name { font-size: 18px; margin-bottom: 8px; }
    .carousel-desc { font-size: 13px; margin-bottom: 18px; line-height: 1.6; }
    .carousel-price { font-size: 20px; }
    .carousel-order { padding: 10px 18px; font-size: 11px; }
    /* Arrows float over the image */
    .carousel-arrow {
      position: absolute;
      top: 160px; z-index: 10;
      width: 36px; height: 36px; font-size: 15px;
      background: rgba(255,255,255,0.92);
      box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    }
    .carousel-prev { left: 10px; }
    .carousel-next { right: 10px; }
    .carousel-dots { margin-top: 16px; }
  }


  .btn-view-all {
    display: inline-flex; align-items: center;
    border: 2px solid var(--crimson);
    color: var(--crimson);
    padding: 14px 36px; border-radius: 32px;
    font-size: 14px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    background: transparent;
  }
  .btn-view-all:hover {
    background: var(--crimson);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(214,56,107,0.3);
  }


  /* ── CUSTOM CAKE BANNER ── */
  .custom-banner-wrap {
    background: var(--white);
    padding: 0 48px 60px;
  }
  .custom-banner {
    max-width: 980px; margin: 0 auto;
    background: var(--crimson);
    border-radius: 24px;
    padding: 40px 52px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 32px;
    flex-wrap: wrap;
    position: relative; overflow: hidden;
  }
  .custom-banner::before {
    content: '';
    position: absolute; top: -60px; right: 200px;
    width: 220px; height: 220px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
  }
  .custom-banner::after {
    content: '';
    position: absolute; bottom: -80px; right: 60px;
    width: 280px; height: 280px; border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
  }
  .custom-banner-left { flex: 1; min-width: 260px; position: relative; z-index: 1; }
  .custom-banner-eyebrow {
    display: inline-block;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 20px; padding: 4px 14px;
    margin-bottom: 14px;
  }
  .custom-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 700; color: white;
    line-height: 1.25; margin-bottom: 10px;
  }
  .custom-banner-sub {
    font-size: 14px; color: rgba(255,255,255,0.75);
    font-weight: 300; line-height: 1.6; max-width: 440px;
  }
  .custom-banner-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: white;
    color: var(--crimson);
    padding: 15px 30px; border-radius: 32px;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; white-space: nowrap;
    flex-shrink: 0; position: relative; z-index: 1;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: all 0.25s;
  }
  .custom-banner-cta:hover {
    background: #111;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  }
  @media (max-width: 900px) {
    .custom-banner-wrap { padding: 0 24px 48px; }
    .custom-banner { padding: 32px 28px; }
    .custom-banner-cta { width: 100%; justify-content: center; }
  }


  /* ── WHATSAPP REVIEWS WALL ── */
  .testimonials-sub { color: var(--ink-soft); font-size: 16px; font-weight: 300; line-height: 1.7; }

  .wa-upload-bar {
    max-width: 800px; margin: 0 auto 48px;
    background: #f0fdf4;
    border: 1.5px dashed #25D366;
    border-radius: 16px;
    padding: 18px 24px;
    display: flex; align-items: center; gap: 16px;
    flex-wrap: wrap;
  }
  .wa-upload-icon { font-size: 28px; flex-shrink: 0; }
  .wa-upload-bar div { flex: 1; min-width: 180px; }
  .wa-upload-bar strong { display: block; font-size: 14px; color: var(--ink); margin-bottom: 2px; }
  .wa-upload-bar span { font-size: 13px; color: var(--ink-soft); font-weight: 300; }
  .wa-upload-btn {
    background: #25D366; color: white;
    padding: 10px 20px; border-radius: 24px;
    font-size: 13px; font-weight: 700;
    cursor: pointer; white-space: nowrap;
    transition: background 0.2s; flex-shrink: 0;
  }
  .wa-upload-btn:hover { background: #1ebe5a; }

  /* Masonry wall */
  .wa-wall {
    columns: 3; column-gap: 20px;
    max-width: 1100px; margin: 0 auto;
  }
  .wa-card {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background: white;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .wa-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  }
  /* Real screenshot images */
  .wa-card img {
    width: 100%; display: block;
    border-radius: 16px;
  }

  /* Simulated WA chat UI for placeholders */
  .wa-phone-chrome {
    background: #ECE5DD;
    padding: 0 0 12px;
  }
  .wa-header {
    background: #075E54;
    padding: 10px 14px;
    display: flex; align-items: center; gap: 10px;
  }
  .wa-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--crimson);
    color: white; font-weight: 700; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .wa-contact { font-size: 13px; font-weight: 700; color: white; }
  .wa-status { font-size: 10px; color: rgba(255,255,255,0.65); margin-top: 1px; }
  .wa-bubble {
    margin: 10px 12px 0;
    padding: 8px 12px;
    border-radius: 10px 10px 10px 0;
    background: white;
    font-size: 13px; line-height: 1.55;
    color: #111; position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  }
  .wa-time {
    font-size: 10px; color: #999;
    text-align: right; margin-top: 4px;
  }
  .wa-verified {
    padding: 8px 14px;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--crimson);
    background: white;
    text-align: center;
    border-top: 1px solid rgba(214,56,107,0.1);
  }

  /* Uploaded screenshot cards */
  .wa-card.wa-screenshot { background: #ECE5DD; }
  .wa-card.wa-screenshot img { border-radius: 0; }

  /* Send review CTA */
  .wa-send-review-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366; color: white;
    padding: 15px 32px; border-radius: 32px;
    font-size: 14px; font-weight: 700;
    text-decoration: none; letter-spacing: 0.06em;
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
    transition: all 0.25s;
  }
  .wa-send-review-btn:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37,211,102,0.45);
  }

  @media (max-width: 900px) {
    .wa-wall { columns: 1; }
    .wa-upload-bar { flex-direction: column; text-align: center; }
    .wa-upload-btn { width: 100%; text-align: center; }
    .wa-send-review-btn { width: 100%; justify-content: center; }
  }
  @media (min-width: 600px) and (max-width: 900px) {
    .wa-wall { columns: 2; }
  }


  /* ── CATEGORIES ── */
  .categories { background: var(--white); }
  .categories-header { text-align: center; max-width: 600px; margin: 0 auto 50px; }
  .categories-sub { color: var(--ink-soft); font-size: 16px; font-weight: 300; line-height: 1.7; }
  .categories-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; max-width: 1100px; margin: 0 auto;
  }
  .category-card {
    border-radius: 22px;
    overflow: hidden;
    background: var(--cream);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: block;
    cursor: pointer;
  }
  .category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(214,56,107,0.14);
  }
  .category-img {
    height: 160px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .category-emoji { font-size: 52px; }
  .cat-img-1 { background: linear-gradient(135deg, #FDE0E8, #F8B8CC); }
  .cat-img-2 { background: linear-gradient(135deg, #F3E4D0, #E8C9A0); }
  .cat-img-3 { background: linear-gradient(135deg, #E0CFC4, #B8927E); }
  .cat-img-4 { background: linear-gradient(135deg, #DCF0DC, #B0DEC0); }
  .category-body { padding: 20px 22px 24px; text-align: center; }
  .category-name {
    font-family: 'Playfair Display', serif;
    font-size: 19px; font-weight: 700;
    color: var(--ink); margin-bottom: 8px;
  }
  .category-desc {
    font-size: 16px; line-height: 1.6;
    color: var(--ink-soft); font-weight: 300;
  }
  @media (max-width: 900px) {
    .categories-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .category-img { height: 130px; }
    .category-emoji { font-size: 42px; }
    .category-name { font-size: 16px; }
    .category-desc { font-size: 12px; }
    .category-body { padding: 16px 16px 20px; }
  }


  /* ── BEHIND THE SCENES / VIDEO SECTION ── */
  .bts-section {
    background: var(--ink);
    padding: 90px 48px;
  }
  .bts-header {
    text-align: center; max-width: 700px; margin: 0 auto 56px;
  }
  .bts-header .section-title { color: var(--cream); }
  .bts-sub {
    font-size: 16px; color: rgba(245,237,214,0.65);
    font-weight: 300; line-height: 1.7; margin-bottom: 32px;
  }

  /* Trust pills */
  .bts-pills {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  }
  .bts-pill {
    background: rgba(214,56,107,0.15);
    border: 1px solid rgba(214,56,107,0.35);
    color: rgba(245,237,214,0.85);
    padding: 7px 16px; border-radius: 24px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.08em;
  }

  /* Video grid */
  .bts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px; margin: 0 auto;
  }
  .bts-card {
    border-radius: 20px; overflow: hidden;
    background: #1C1C1C;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .bts-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  }

  /* Upload placeholder */
  .bts-upload-area {
    height: 220px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    cursor: pointer;
    background: linear-gradient(135deg, #222, #1a1a1a);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s;
    position: relative;
  }
  .bts-upload-area:hover { background: linear-gradient(135deg, #2a2a2a, #222); }
  .bts-upload-area:hover .bts-upload-icon {
    background: var(--crimson);
    transform: scale(1.1);
  }
  .bts-upload-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(214,56,107,0.2);
    border: 2px solid rgba(214,56,107,0.5);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--crimson);
    margin-bottom: 12px;
    transition: all 0.25s;
  }
  .bts-upload-label {
    font-size: 13px; font-weight: 700;
    color: rgba(245,237,214,0.7); margin-bottom: 4px;
    letter-spacing: 0.05em;
  }
  .bts-upload-hint {
    font-size: 11px; color: rgba(245,237,214,0.3);
    letter-spacing: 0.05em;
  }

  /* Loaded video */
  .bts-video {
    width: 100%; height: auto;
    object-fit: cover;
    background: #000;
    display: block;
  }

  /* Card label strip */
  .bts-card-label {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 16px 18px 18px;
  }
  .bts-card-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
  .bts-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 15px; font-weight: 600;
    color: var(--cream); margin-bottom: 3px;
  }
  .bts-card-sub {
    font-size: 12px; color: rgba(245,237,214,0.45);
    line-height: 1.55; font-weight: 300;
  }

  /* Instagram CTA */
  .bts-insta-cta {
    text-align: center; margin-top: 52px;
  }
  .bts-insta-cta p {
    font-size: 14px; color: rgba(245,237,214,0.5);
    margin-bottom: 12px; letter-spacing: 0.05em;
  }
  .bts-insta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid rgba(214,56,107,0.5);
    color: var(--crimson);
    padding: 12px 28px; border-radius: 28px;
    font-size: 13px; font-weight: 700;
    text-decoration: none; letter-spacing: 0.06em;
    transition: all 0.25s;
  }
  .bts-insta-btn:hover {
    background: var(--crimson); color: white; border-color: var(--crimson);
    transform: translateY(-2px);
  }

  @media (max-width: 900px) {
    .bts-section { padding: 60px 20px; }
    .bts-grid { grid-template-columns: 1fr; }
    .bts-upload-area { height: 200px; }
    .bts-video { height: 200px; }
  }
  @media (min-width: 600px) and (max-width: 900px) {
    .bts-grid { grid-template-columns: 1fr 1fr; }
  }

