:root {
    --bg: #fff7ea;
    --card: #fffdf8;
    --brown: #5c3a2c;
    --pink: #f7b6c8;
    --yellow: #f4c96a;
    --accent: #f38181;
    --shadow: 0 14px 35px rgba(0,0,0,0.06);
    --radius-lg: 22px;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--brown);
    line-height: 1.6;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  .container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
  }
  
  /* NAVBAR */
  header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 247, 234, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(92,58,44,0.06);
  }
  
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  
  .brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #fbe0e8;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  
  .brand-logo img {
    width: 34px;
    height: auto;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  
  .nav-links a {
    position: relative;
    font-weight: 500;
  }
  
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.2s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .nav-cta {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: none;
    background: var(--brown);
    color: #fffdf8;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  }
  
  .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    background: #4a2e23;
  }
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }
  
  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--brown);
    border-radius: 999px;
  }
  
  /* HERO */
  .hero {
    padding: 3rem 0 3.5rem;
  }
  
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 2.5rem;
  }
  
  .eyebrow {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    color: rgba(92,58,44,0.7);
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .hero h1 {
    font-size: clamp(2.4rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 0.75rem;
  }
  
  .hero h1 span {
    color: var(--accent);
  }
  
  .hero-sub {
    font-size: 1rem;
    max-width: 29rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
  }
  
  .badge {
    font-size: 0.78rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(92,58,44,0.08);
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
  }
  
  .btn-primary {
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    border: none;
    background: var(--accent);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  }
  
  .btn-primary:hover {
    background: #f16969;
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  }
  
  .btn-secondary {
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(92,58,44,0.15);
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(255,255,255,0.8);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  
  .hero-note {
    font-size: 0.8rem;
    opacity: 0.8;
  }
  
  .hero-visual {
    background: radial-gradient(circle at top, #ffe3ef, #ffe9bb);
    border-radius: 35px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
  }
  
  .hero-visual::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 30px;
    border: 1px dashed rgba(92,58,44,0.12);
    pointer-events: none;
  }
  
  .popsicle-spot {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .popsicle-spot img {
    width: 150px;
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 1rem;
    font-size: 0.8rem;
  }
  
  .stat-card {
    background: rgba(255,255,255,0.9);
    border-radius: 18px;
    padding: 0.9rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  }
  
  .stat-label {
    font-size: 0.78rem;
    opacity: 0.8;
    margin-bottom: 0.2rem;
  }
  
  .stat-value {
    font-weight: 700;
    font-size: 1.1rem;
  }
  
  .stat-note {
    font-size: 0.7rem;
    opacity: 0.85;
  }
  
  /* SECTION SHARED STYLES */
  section {
    padding: 2.75rem 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 0.2rem;
  }
  
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
    max-width: 30rem;
    margin: 0.2rem auto 0;
    opacity: 0.85;
  }
  
  /* ABOUT */
  .about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: center;
  }
  
  .about-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.6rem 1.2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(92,58,44,0.06);
  }
  
  .pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(243,129,129,0.12);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
  }
  
  .about-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
  }
  
  .about-card p {
    font-size: 0.95rem;
    margin-bottom: 0.55rem;
  }
  
  .about-list {
    list-style: none;
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  
  .about-list li {
    display: flex;
    gap: 0.4rem;
    align-items: flex-start;
    margin-bottom: 0.3rem;
  }
  
  .about-list span {
    font-size: 0.8rem;
    margin-top: 0.15rem;
  }
  
  .about-highlight {
    background: linear-gradient(90deg, rgba(247,182,200,0.2), rgba(244,201,106,0.2));
    border-radius: 16px;
    padding: 1.2rem 1.3rem;
    font-size: 0.88rem;
    box-shadow: 0 12px 25px rgba(0,0,0,0.04);
  }
  
  /* MENU */
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 1.4rem;
  }
  
  .menu-card {
    background: var(--card);
    border-radius: 18px;
    padding: 1.2rem 1.2rem 1rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(92,58,44,0.06);
  }
  
  .menu-card h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
  }
  
  .menu-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.45rem;
    font-size: 0.8rem;
  }
  
  .pill-soft {
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(92,58,44,0.05);
  }
  
  /* SERVICES */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 1.3rem;
  }
  
  .service-card {
    background: var(--card);
    border-radius: 18px;
    padding: 1.3rem 1.2rem 1.1rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(92,58,44,0.06);
    position: relative;
    overflow: hidden;
  }
  
  .service-tag {
    position: absolute;
    top: 0.8rem;
    right: 0.9rem;
    font-size: 0.7rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(247,182,200,0.3);
  }
  
  .service-card h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }
  
  .service-meta {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-bottom: 0.35rem;
  }
  
  /* GALLERY (placeholder) */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 1rem;
  }
  
  .gallery-tile {
    border-radius: 18px;
    padding: 1.3rem;
    min-height: 150px;
    background: repeating-linear-gradient(
      45deg,
      rgba(247,182,200,0.25),
      rgba(247,182,200,0.25) 7px,
      rgba(244,201,106,0.25) 7px,
      rgba(244,201,106,0.25) 14px
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(92,58,44,0.9);
  }
  
  /* FAQ */
  .faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
  }
  
  .faq-item {
    margin-bottom: 0.9rem;
  }
  
  .faq-q {
    font-weight: 600;
    font-size: 0.95rem;
  }
  
  .faq-a {
    font-size: 0.9rem;
    opacity: 0.9;
  }
  
  /* CONTACT */
  .contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
  }
  
  form {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.6rem 1.4rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(92,58,44,0.06);
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 0.9rem 0.9rem;
    margin-bottom: 1rem;
  }
  
  .field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.82rem;
  }
  
  .field-full {
    grid-column: 1 / -1;
  }
  
  label span {
    color: var(--accent);
    margin-left: 0.12rem;
  }
  
  input, select, textarea {
    border-radius: 999px;
    border: 1px solid rgba(92,58,44,0.16);
    padding: 0.6rem 0.85rem;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    background: #fff;
  }
  
  textarea {
    border-radius: 18px;
    min-height: 100px;
    resize: vertical;
    padding-top: 0.7rem;
  }
  
  input:focus, select:focus, textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(243,129,129,0.4);
  }
  
  .contact-note {
    font-size: 0.78rem;
    opacity: 0.8;
    margin-top: 0.5rem;
  }
  
  .contact-side {
    font-size: 0.9rem;
  }
  
  .contact-side-card {
    background: linear-gradient(135deg, #ffe4ef, #ffe3b5);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
  }
  
  .contact-side-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
  }
  
  .contact-list {
    list-style: none;
    font-size: 0.88rem;
  }
  
  .contact-list li {
    margin-bottom: 0.3rem;
  }
  
  /* FOOTER */
  footer {
    padding: 1.5rem 0 2rem;
    border-top: 1px solid rgba(92,58,44,0.08);
    font-size: 0.8rem;
  }
  
  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
  }
  
  .footer-links {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
  }
  
  .heart {
    color: var(--accent);
    font-size: 1.1rem;
  }
  
  /* RESPONSIVE */
  @media (max-width: 840px) {
    .hero-inner,
    .about-grid,
    .contact-layout,
    .faq-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .hero {
      padding-top: 2rem;
    }
  
    .hero-inner {
      gap: 2rem;
    }
  }
  
  @media (max-width: 720px) {
    .nav {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .nav-links {
      position: absolute;
      inset: 52px 1rem auto 1rem;
      background: rgba(255,247,234,0.98);
      border-radius: 18px;
      padding: 0.75rem 1rem;
      flex-direction: column;
      align-items: flex-start;
      box-shadow: var(--shadow);
      display: none;
    }
  
    .nav-links.open {
      display: flex;
    }
  
    .nav-toggle {
      display: flex;
    }
  
    .hero-visual {
      order: -1;
    }
  
    .form-grid {
      grid-template-columns: minmax(0,1fr);
    }
  }
  