:root {
    --cream: #F5F0E8;
    --dark: #1A1612;
    --brown: #3E2C23;
    --warm: #8B6914;
    --accent: #C4953A;
    --light-brown: #D4C4A8;
    --sage: #7A8B6F;
    --blush: #E8D5C4;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* Grain overlay */
  body::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
  }
  nav .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    color: var(--cream);
    text-transform: uppercase;
  }
  nav a {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    transition: opacity 0.3s;
  }
  nav a:hover { opacity: 0.6; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    background: var(--brown);
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 20% 50%, rgba(196, 149, 58, 0.15) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 30%, rgba(139, 105, 20, 0.1) 0%, transparent 50%),
      radial-gradient(ellipse at 50% 80%, rgba(62, 44, 35, 0.4) 0%, transparent 60%);
  }

  /* Floating coffee steam lines */
  .steam-line {
    position: absolute;
    width: 2px;
    background: linear-gradient(to top, transparent, rgba(245, 240, 232, 0.08), transparent);
    animation: steam 8s ease-in-out infinite;
  }
  .steam-line:nth-child(1) { left: 15%; height: 200px; animation-delay: 0s; }
  .steam-line:nth-child(2) { left: 35%; height: 150px; animation-delay: 2s; }
  .steam-line:nth-child(3) { left: 55%; height: 180px; animation-delay: 4s; }
  .steam-line:nth-child(4) { left: 75%; height: 160px; animation-delay: 1s; }
  .steam-line:nth-child(5) { left: 90%; height: 140px; animation-delay: 3s; }

  @keyframes steam {
    0%, 100% { transform: translateY(100vh) scaleX(1); opacity: 0; }
    20% { opacity: 1; }
    50% { transform: translateY(20vh) scaleX(1.5); opacity: 0.5; }
    80% { opacity: 0; }
    100% { transform: translateY(-10vh) scaleX(0.5); opacity: 0; }
  }

  .hero-badge {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease 0.2s both;
  }
  .hero-badge span {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(196, 149, 58, 0.3);
    border-radius: 50px;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.05;
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease 0.4s both;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--accent);
  }

  .hero-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: var(--light-brown);
    margin-top: 1.5rem;
    font-weight: 300;
    max-width: 500px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease 0.6s both;
  }

  .hero-cta {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease 0.8s both;
  }

  .hero-cta a {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent);
    color: var(--dark);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.4s ease;
  }
  .hero-cta a:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  }

  .scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeUp 1s ease 1.2s both;
  }
  .scroll-hint span {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.3; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── ILLUSTRATION ── */
  .illustration-section {
    background: var(--cream);
    padding: clamp(2rem, 4vw, 4rem) 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .illustration-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--brown), transparent);
    opacity: 0.08;
  }
  .illustration-section svg {
    max-width: 750px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 30px rgba(26, 22, 18, 0.1));
    border-radius: 8px;
  }
  .illustration-caption {
    margin-top: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--brown);
    opacity: 0.6;
  }

  /* ── ABOUT STRIP ── */
  .about-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 50vh;
  }
  .about-strip .col {
    padding: clamp(3rem, 6vw, 6rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .about-strip .col-dark {
    background: var(--dark);
    color: var(--cream);
  }
  .about-strip .col-warm {
    background: var(--blush);
  }

  .section-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
  }

  .about-strip h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }
  .about-strip p {
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
    color: inherit;
    opacity: 0.85;
  }

  /* Teardrop SVG decoration */
  .teardrop-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 2rem;
    opacity: 0.6;
  }

  /* ── PACKAGES ── */
  .packages {
    padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 5vw, 5rem);
    background: var(--cream);
  }
  .packages .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  .packages .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
  }
  .packages .section-header p {
    margin-top: 1rem;
    font-weight: 300;
    color: var(--brown);
    opacity: 0.7;
    font-size: 0.95rem;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .pricing-card {
    padding: 2.5rem;
    background: white;
    border: 1px solid rgba(62, 44, 35, 0.08);
    position: relative;
    transition: all 0.4s ease;
  }
  .pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(26, 22, 18, 0.08);
  }
  .pricing-card.featured {
    background: var(--brown);
    color: var(--cream);
    border-color: transparent;
  }
  .pricing-card.featured .card-label { color: var(--accent); }
  .pricing-card.featured .card-price { color: var(--cream); }
  .pricing-card.featured .card-features li { color: var(--light-brown); }
  .pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 2.5rem;
    background: var(--accent);
    color: var(--dark);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    font-weight: 600;
  }

  .card-label {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--warm);
    margin-bottom: 1rem;
  }
  .card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
  }
  .card-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
  }
  .card-price span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    opacity: 0.6;
  }
  .card-desc {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 2rem;
    font-weight: 300;
  }

  .card-features {
    list-style: none;
    padding: 0;
  }
  .card-features li {
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(62, 44, 35, 0.06);
    font-weight: 300;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .pricing-card.featured .card-features li {
    border-top-color: rgba(245, 240, 232, 0.08);
  }
  .card-features li::before {
    content: '·';
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
  }

  /* ── ADD-ONS ── */
  .addons {
    max-width: 1100px;
    margin: 3rem auto 0;
    padding: 2.5rem;
    background: var(--dark);
    color: var(--cream);
  }
  .addons h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
  }
  .addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 3rem;
  }
  .addon-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 300;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(245, 240, 232, 0.06);
  }
  .addon-item .price {
    color: var(--accent);
    font-weight: 500;
  }

  /* ── WAITLIST ── */
  .waitlist {
    padding: clamp(4rem, 8vw, 8rem) 2rem;
    background: var(--brown);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .waitlist::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(196, 149, 58, 0.08) 0%, transparent 60%);
  }
  .waitlist > * { position: relative; z-index: 2; }

  .waitlist h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 1rem;
  }
  .waitlist p {
    color: var(--light-brown);
    font-weight: 300;
    font-size: 0.95rem;
    max-width: 450px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
  }

  .waitlist-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
  }
  .waitlist-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(245, 240, 232, 0.08);
    border: 1px solid rgba(245, 240, 232, 0.15);
    border-right: none;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s;
  }
  .waitlist-form input::placeholder {
    color: rgba(245, 240, 232, 0.35);
  }
  .waitlist-form input:focus {
    border-color: var(--accent);
  }
  .waitlist-form button {
    padding: 1rem 2rem;
    background: var(--accent);
    border: 1px solid var(--accent);
    color: var(--dark);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
  }
  .waitlist-form button:hover {
    background: var(--cream);
    border-color: var(--cream);
  }

  .waitlist-note {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: rgba(212, 196, 168, 0.5);
  }

  .form-success {
    display: none;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
  }

  /* ── FOOTER ── */
  footer {
    padding: 3rem;
    background: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  footer .footer-logo {
    font-family: 'Playfair Display', serif;
    color: var(--cream);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }
  footer .footer-info {
    font-size: 0.75rem;
    color: rgba(245, 240, 232, 0.3);
    font-weight: 300;
    text-align: right;
  }
  footer .footer-info a {
    color: rgba(245, 240, 232, 0.5);
    text-decoration: none;
  }

  /* ── FAQ ── */
  .faq {
    padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 5vw, 5rem);
    background: var(--dark);
  }
  .faq-inner {
    max-width: 800px;
    margin: 0 auto;
  }
  .faq .section-label {
    color: var(--accent);
  }
  .faq h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 3rem;
  }

  .faq-grid {
    display: flex;
    flex-direction: column;
  }

  .faq-item {
    border-bottom: 1px solid rgba(245, 240, 232, 0.07);
  }

  .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--cream);
    transition: color 0.3s;
    gap: 1.5rem;
  }
  .faq-question:hover {
    color: var(--accent);
  }

  .faq-icon {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
  }
  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  .faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
  }

  .faq-answer p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--light-brown);
    font-weight: 300;
    opacity: 0.8;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .about-strip { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .addons-grid { grid-template-columns: 1fr; }
    .waitlist-form { flex-direction: column; }
    .waitlist-form input { border-right: 1px solid rgba(245, 240, 232, 0.15); border-bottom: none; }
    footer { flex-direction: column; text-align: center; }
    footer .footer-info { text-align: center; }
  }