    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      color: #8b5e3c;
      background: #FFFFFF;
      overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    :root {
      --lavender: #FFE6ED;
      --linen: #F5F1E6;
      --blush: #CF7486;
      --cherry: #F9A8BB;
      --brown: #8b5e3c;
      --white: #FFFFFF;
    }

    h1, h2, h3 { font-family: 'Cormorant Garamond', serif; }
    h1 { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; }
    h2 { font-weight: 400; font-size: 2.4rem; letter-spacing: 0.02em; }
    h3 { font-weight: 600; font-size: 1.4rem; }

    .btn {
      display: inline-block;
      font-family: 'Jost', sans-serif;
      font-weight: 500;
      font-size: 0.95rem;
      padding: 0.9rem 2.2rem;
      border-radius: 50px;
      cursor: pointer;
      transition: transform 0.25s, box-shadow 0.25s;
      border: none;
      letter-spacing: 0.03em;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(207,116,134,0.25); }
    .btn-blush { background: var(--blush); color: var(--white); }
    .btn-outline { background: transparent; color: var(--blush); border: 2px solid var(--blush); }
    .btn-outline:hover { background: var(--blush); color: var(--white); }
    .btn-white { background: var(--white); color: var(--blush); }

    .section { padding: 6rem 1.5rem; }
    .section-inner { max-width: 1100px; margin: 0 auto; }
    .section-heading { text-align: center; margin-bottom: 1rem; color: var(--blush); }
    .section-sub { text-align: center; color: var(--brown); font-size: 1.05rem; margin-bottom: 3rem; opacity: 0.8; }
    .bg-lavender { background: var(--lavender); }
    .bg-linen { background: var(--linen); }
    .bg-blush { background: var(--blush); color: var(--white); }

    .divider {
      display: block;
      width: 60px;
      height: 2px;
      background: var(--cherry);
      margin: 0 auto 3rem;
      border-radius: 2px;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    .pastry { animation: float 4s ease-in-out infinite; }

    .floral-bg { position: relative; }
    .floral-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.04;
      background-image:
        radial-gradient(circle at 20% 30%, var(--blush) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, var(--cherry) 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 10%, var(--blush) 1px, transparent 1px),
        radial-gradient(circle at 10% 80%, var(--cherry) 1px, transparent 1px),
        radial-gradient(circle at 90% 20%, var(--blush) 1.5px, transparent 1.5px);
      background-size: 120px 120px, 150px 150px, 100px 100px, 130px 130px, 110px 110px;
      pointer-events: none;
    }

    /* ANNOUNCEMENT BAR */
    .announce-bar {
      background: linear-gradient(135deg, #CF7486, #F9A8BB);
      color: #fff;
      text-align: center;
      padding: 0.65rem 1.5rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.88rem;
      font-weight: 400;
      letter-spacing: 0.01em;
      line-height: 1.5;
    }
    .announce-bar .announce-icon { margin-right: 4px; }
    .announce-bar strong { font-weight: 600; }
    .announce-bar a {
      color: #fff;
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
      margin-left: 6px;
      white-space: nowrap;
    }
    .announce-bar a:hover { opacity: 0.85; }
    @media (max-width: 768px) {
      .announce-bar { font-size: 0.8rem; padding: 0.55rem 1rem; }
    }

    /* NAV */
    .nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 0.8rem 1.5rem;
      box-shadow: 0 1px 8px rgba(139,94,60,0.06);
    }
    .nav-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo picture { display: block; width: 45px; height: 45px; border-radius: 50%; overflow: hidden; }
    .nav-logo img { height: 100%; width: 100%; border-radius: 50%; object-fit: cover; }
    .nav-links { display: flex; align-items: center; gap: 2rem; }
    .nav-links a {
      font-family: 'Jost', sans-serif;
      font-weight: 400;
      color: var(--brown);
      font-size: 0.95rem;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--blush); }
    .nav-cta {
      background: var(--blush) !important;
      color: var(--white) !important;
      padding: 0.5rem 1.3rem;
      border-radius: 50px;
      font-weight: 500 !important;
    }
    .nav-cta:hover { opacity: 0.9; }
    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
    }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--brown); transition: transform 0.3s, opacity 0.3s; }

    @media (max-width: 768px) {
      .hamburger { display: flex; }
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.2rem;
        box-shadow: 0 4px 12px rgba(139,94,60,0.08);
      }
      .nav-links.open { display: flex; }
      .section { padding: 3.5rem 1.2rem; }
      .section-heading { font-size: 1.8rem; }
      .section-sub { font-size: 0.95rem; margin-bottom: 2rem; }
      .divider { margin-bottom: 2rem; }
    }

    /* HERO */
    .hero { padding: 5rem 1.5rem; }
    .hero-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 3rem;
    }
    .hero-text { flex: 1; }
    .hero-text h1 { font-size: 2.8rem; line-height: 1.2; color: var(--blush); margin-bottom: 1rem; }
    .hero-text .subline { font-size: 1.15rem; margin-bottom: 1.5rem; font-weight: 400; }
    .hero-trust { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
    .hero-trust span {
      background: var(--white);
      border: 1px solid var(--cherry);
      color: var(--brown);
      font-size: 0.85rem;
      padding: 0.35rem 0.9rem;
      border-radius: 50px;
      font-weight: 400;
    }
    .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
    .hero-img { flex: 0 0 320px; text-align: center; }
    .hero-img img { max-width: 300px; margin: 0 auto; mix-blend-mode: multiply; filter: drop-shadow(0 8px 20px rgba(207,116,134,0.15)); }

    @media (max-width: 768px) {
      .hero { padding: 2.5rem 1.2rem 3rem; }
      .hero-inner { flex-direction: column-reverse; text-align: center; gap: 1.5rem; }
      .hero-text h1 { font-size: 1.8rem; line-height: 1.3; }
      .hero-text .subline { font-size: 1rem; margin-bottom: 1rem; }
      .hero-img { flex: none; }
      .hero-img img { max-width: 180px; }
      .hero-trust { justify-content: center; gap: 0.4rem; margin-bottom: 1.2rem; }
      .hero-trust span { font-size: 0.78rem; padding: 0.25rem 0.7rem; }
      .hero-ctas { justify-content: center; }
      .hero-ctas .btn { font-size: 0.9rem; padding: 0.75rem 1.8rem; }
    }

    /* CAKE SHOWCASE */
    .cake-showcase {
      position: relative;
      max-width: 600px;
      margin: 0 auto 1.5rem;
      aspect-ratio: 1;
      border-radius: 20px;
      overflow: hidden;
      background: var(--lavender);
      box-shadow: 0 12px 40px rgba(207,116,134,0.12);
    }
    .cake-showcase img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }
    .cake-showcase img.active { opacity: 1; }
    .cake-showcase-counter {
      position: absolute;
      bottom: 1.2rem;
      right: 1.2rem;
      background: rgba(255,255,255,0.85);
      color: var(--blush);
      font-family: 'Jost', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      padding: 0.35rem 0.9rem;
      border-radius: 50px;
      z-index: 2;
      backdrop-filter: blur(4px);
    }
    .cake-showcase-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 0;
      position: relative;
      z-index: 2;
    }
    .cake-showcase-dots span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--cherry);
      opacity: 0.3;
      transition: opacity 0.3s, transform 0.3s;
      cursor: pointer;
    }
    .cake-showcase-dots span.active { opacity: 1; transform: scale(1.3); }
    @media (max-width: 768px) {
      .cake-showcase { max-width: 100%; }
    }

    /* STORE EMBED */
    .store-container {
      background: var(--white);
      border-radius: 20px;
      box-shadow: 0 8px 35px rgba(139,94,60,0.08);
      overflow: hidden;
      border: 1px solid rgba(207,116,134,0.1);
    }
    .store-container iframe {
      width: 100%;
      min-height: 800px;
      border: none;
      display: block;
    }

    /* FLAGSHIP */
    .flagship-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
    .flagship-card {
      background: rgba(255,255,255,0.15);
      border-radius: 20px;
      overflow: hidden;
      padding: 2rem;
      text-align: center;
      transition: transform 0.3s;
      display: flex;
      flex-direction: column;
    }
    .flagship-card .btn { margin-top: auto; }
    .flagship-card:hover { transform: translateY(-4px); }
    .flagship-card .badge {
      display: inline-block;
      background: var(--cherry);
      color: var(--white);
      font-family: 'Jost', sans-serif;
      font-weight: 500;
      font-size: 0.85rem;
      padding: 0.3rem 1rem;
      border-radius: 50px;
      margin-bottom: 1rem;
    }
    .flagship-card .card-img {
      background: var(--lavender);
      border-radius: 14px;
      height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
      overflow: hidden;
    }
    .flagship-card .card-img img { width: 100%; height: 100%; object-fit: cover; }
    .flagship-card h3 { margin-bottom: 0.6rem; font-size: 1.5rem; }
    .flagship-card p { margin-bottom: 1rem; font-weight: 300; opacity: 0.9; }
    .filling-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 1.2rem; }
    .filling-badges span {
      background: rgba(255,255,255,0.2);
      font-size: 0.82rem;
      padding: 0.25rem 0.7rem;
      border-radius: 50px;
      font-weight: 400;
    }
    @media (max-width: 768px) {
      .flagship-grid { grid-template-columns: 1fr; gap: 1.2rem; }
      .flagship-card { padding: 1.2rem; }
      .flagship-card .card-img { height: 180px; }
      .flagship-card h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
      .flagship-card p { font-size: 0.9rem; margin-bottom: 0.6rem; }
      .filling-badges { margin-bottom: 0.8rem; }
    }

    /* MENU */
    .menu-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
    .menu-card {
      background: var(--white);
      border-radius: 16px;
      padding: 1rem;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 1rem;
      text-align: left;
      box-shadow: 0 4px 18px rgba(139,94,60,0.06);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .menu-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(139,94,60,0.1); }
    .menu-card .card-img {
      background: var(--lavender);
      border-radius: 12px;
      width: 110px;
      height: 110px;
      min-width: 110px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .menu-card .card-img img { width: 100%; height: 100%; object-fit: cover; }
    .menu-card .card-text { flex: 1; }
    .menu-card h3 { color: var(--blush); margin-bottom: 0.3rem; font-size: 1.2rem; }
    .menu-card p { font-size: 0.9rem; margin-bottom: 0.5rem; line-height: 1.4; }
    .menu-card .price { font-weight: 500; color: var(--blush); margin-bottom: 0.6rem; }
    .menu-card .btn { font-size: 0.82rem; padding: 0.55rem 1.4rem; }
    .menu-bottom { text-align: center; margin-top: 2.5rem; }
    .menu-bottom p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      margin-bottom: 1rem;
      color: var(--blush);
    }
    @media (min-width: 769px) {
      .menu-grid { grid-template-columns: repeat(3, 1fr); }
      .menu-card { flex-direction: column; text-align: center; padding: 1.5rem; }
      .menu-card .card-img { width: 100%; height: 180px; min-width: unset; margin-bottom: 1rem; }
      .menu-card .btn { font-size: 0.95rem; padding: 0.9rem 2.2rem; }
    }

    /* ORDER INFO */
    .order-info { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
    .order-box {
      background: var(--white);
      border-radius: 14px;
      padding: 1.8rem;
      text-align: center;
      box-shadow: 0 4px 18px rgba(139,94,60,0.06);
    }
    .order-box h3 { color: var(--blush); margin-bottom: 0.5rem; font-size: 1.2rem; }
    .order-box p { font-size: 0.95rem; }
    .order-note { text-align: center; margin-top: 1.5rem; font-style: italic; font-size: 0.95rem; }
    @media (max-width: 768px) { .order-info { grid-template-columns: 1fr; } }

    /* CUSTOM ORDERS */
    .custom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
    .custom-card {
      background: var(--white);
      border-radius: 16px;
      padding: 2.5rem 1.5rem;
      text-align: center;
      box-shadow: 0 4px 18px rgba(139,94,60,0.06);
      transition: transform 0.3s;
    }
    .custom-card:hover { transform: translateY(-4px); }
    .custom-card .icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
    .custom-card h3 { color: var(--blush); margin-bottom: 0.5rem; }
    .custom-note {
      text-align: center;
      font-size: 1rem;
      margin-bottom: 1.5rem;
      padding: 1rem 1.5rem;
      background: var(--white);
      border-radius: 12px;
      display: inline-block;
      box-shadow: 0 2px 10px rgba(139,94,60,0.04);
    }
    .custom-bottom { text-align: center; }
    .custom-bottom .advance-note { display: block; margin-top: 0.8rem; font-size: 0.9rem; font-style: italic; }
    @media (max-width: 768px) { .custom-grid { grid-template-columns: 1fr; } }

    /* ABOUT */
    .about-inner { display: flex; align-items: center; gap: 3rem; }
    .about-photo { flex: 0 0 260px; text-align: center; }
    .about-photo img {
      width: 220px;
      height: 220px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--blush);
      box-shadow: 0 8px 25px rgba(207,116,134,0.12);
    }
    .about-text { flex: 1; }
    .about-text p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; }
    @media (max-width: 768px) {
      .about-inner { flex-direction: column; text-align: center; gap: 1.5rem; }
      .about-photo { flex: none; }
      .about-photo img { width: 160px; height: 160px; }
      .about-text p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
    }

    /* INSTAGRAM */
    .insta-btn { text-align: center; margin-bottom: 2.5rem; }
    .insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .insta-placeholder {
      background: var(--white);
      border-radius: 14px;
      height: 180px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      color: var(--blush);
      font-size: 0.9rem;
      box-shadow: 0 2px 12px rgba(139,94,60,0.04);
    }
    .insta-placeholder svg { width: 32px; height: 32px; stroke: var(--blush); fill: none; }
    @media (max-width: 768px) { .insta-grid { grid-template-columns: 1fr; } }

    /* TESTIMONIALS */
    .testimonial-strip {
      max-width: 800px;
      margin: 3rem auto;
      text-align: center;
    }
    .testimonial-strip blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.15rem;
      color: var(--brown);
      margin-bottom: 0.8rem;
      line-height: 1.6;
    }
    .testimonial-strip cite {
      font-family: 'Jost', sans-serif;
      font-style: normal;
      font-size: 0.9rem;
      color: var(--blush);
      font-weight: 500;
    }

    /* FOOTER */
    .footer {
      background: var(--blush);
      color: #F5F1E6;
      text-align: center;
      padding: 3.5rem 1.5rem;
    }
    .footer-logo picture { display: block; width: 108px; height: 108px; border-radius: 50%; overflow: hidden; margin: 0 auto 1rem; }
    .footer-logo img { height: 100%; width: 100%; border-radius: 50%; object-fit: cover; }
    .footer p { font-size: 0.95rem; margin-bottom: 0.5rem; opacity: 0.9; }
    .footer-links { display: flex; justify-content: center; gap: 1.5rem; margin: 1.2rem 0; }
    .footer-links a { color: var(--white); font-weight: 400; transition: opacity 0.2s; }
    .footer-links a:hover { opacity: 0.7; }
    .footer-newsletter { margin: 1.8rem auto 0; max-width: 420px; }
    .footer-nl-heading { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 0.3rem; opacity: 1; }
    .footer-nl-sub { font-size: 0.88rem; opacity: 0.85; margin-bottom: 0.8rem; }
    .footer-nl-row { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
    .footer-nl-row input { width: 100%; border: 2px solid rgba(255,255,255,0.7); background: rgba(255,255,255,0.25); color: #fff; padding: 12px 18px; font-family: 'Jost', sans-serif; font-size: 0.95rem; outline: none; border-radius: 50px; text-align: center; }
    .footer-nl-row input:focus { border-color: #fff; background: rgba(255,255,255,0.35); }
    .footer-nl-row input::placeholder { color: rgba(255,255,255,0.75); }
    .footer-nl-row button { background: var(--white); color: var(--blush); border: none; padding: 12px 28px; font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 600; cursor: pointer; border-radius: 50px; transition: transform 0.2s, box-shadow 0.2s; letter-spacing: 0.03em; }
    .footer-nl-row button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(207,116,134,0.25); }
    .footer-nl-row button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
    #nl-msg { font-size: 0.85rem; margin-top: 0.5rem; min-height: 1.2em; opacity: 0.9; }
    #nl-msg.error { color: #FFD0D0; }
    #nl-msg.success { color: #D0FFD8; }
    .footer-bottom { margin-top: 1.5rem; font-size: 0.85rem; opacity: 0.7; }
    @media (max-width: 768px) {
      .footer { padding: 2.5rem 1.2rem; }
      .footer-links { gap: 1rem; flex-wrap: wrap; }
      .footer-links a { font-size: 0.9rem; }
      .testimonial-strip { margin: 2rem auto; }
      .testimonial-strip blockquote { font-size: 1.05rem; }
      .custom-card { padding: 1.8rem 1.2rem; }
      .custom-card .icon { font-size: 2rem; }
    }

    .img-placeholder {
      width: 100%;
      height: 100%;
      background: var(--lavender);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.82rem;
      color: var(--blush);
      font-family: 'Jost', sans-serif;
    }

    /* REVIEWS */
    .review-card {
      background: var(--white);
      border-radius: 16px;
      padding: 2rem 1.8rem;
      text-align: center;
      box-shadow: 0 4px 18px rgba(139,94,60,0.06);
    }
    .review-stars {
      color: #F9A8BB;
      font-size: 1.2rem;
      letter-spacing: 2px;
      margin-bottom: 0.8rem;
    }
    .review-text {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.1rem;
      line-height: 1.6;
      color: var(--brown);
      margin-bottom: 0.8rem;
    }
    .review-author {
      font-family: 'Jost', sans-serif;
      font-weight: 500;
      font-size: 0.9rem;
      color: var(--blush);
    }

    /* REVIEW FORM IN SUCCESS POPUP */
    #review-prompt { margin-top: 8px; }
    #review-star-picker {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-bottom: 12px;
    }
    #review-star-picker span {
      font-size: 28px;
      color: #ddd;
      cursor: pointer;
      transition: color 0.15s, transform 0.15s;
      user-select: none;
    }
    #review-star-picker span:hover { transform: scale(1.15); }
    #review-star-picker span.active { color: #F9A8BB; }
    #review-first-name, #review-last-initial, #review-comment {
      width: 100%;
      padding: 10px 14px;
      border: 2px solid #f0e8e4;
      border-radius: 10px;
      font-family: 'Jost', sans-serif;
      font-size: 14px;
      margin-bottom: 8px;
      outline: none;
      transition: border-color 0.2s;
    }
    #review-first-name:focus, #review-last-initial:focus, #review-comment:focus { border-color: #CF7486; }
    #review-last-initial { width: 120px; display: inline-block; margin-left: 0; }
    #review-first-name { width: calc(100% - 130px); display: inline-block; margin-right: 6px; }
    #review-comment { resize: vertical; min-height: 60px; }
    #review-submit-btn {
      background: linear-gradient(135deg, #CF7486, #F9A8BB);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 10px 24px;
      font-family: 'Jost', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.2s;
    }
    #review-submit-btn:hover { transform: scale(1.03); }
    #review-submit-btn:disabled { opacity: 0.5; cursor: default; transform: none; }
    @media (max-width: 520px) {
      #review-first-name, #review-last-initial { width: 100%; display: block; margin: 0 0 8px 0; }
    }
