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

  :root {
    --cream: #F0E8D9;
    --cream-light: #FDFAF5;
    --cream-deep: #E5D9C2;
    --ink: #2A2520;
    --ink-soft: #5A4F44;
    --rose: #BC7B85;
    --rose-dark: #985F69;
    --rose-soft: #E8C9CE;
    --sage: #8A9A7B;
    --line: rgba(42, 37, 32, 0.14);
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; background: var(--cream-light); color: var(--ink); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  h1, h2, h3, h4 { font-family: 'Fraunces', serif; font-weight: 600; line-height: 1.15; }
  h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
  h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
  h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
  em { font-style: italic; color: var(--rose); }
  .container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
  .container-narrow { max-width: 780px; margin: 0 auto; padding: 0 2rem; }

  /* NAV */
  .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 2.5rem; transition: background 0.35s, box-shadow 0.35s, padding 0.35s; }
  .nav.dark-mode { color: var(--cream-light); }
  .nav.dark-mode .nav-links a { color: var(--cream-light); opacity: 0.85; }
  .nav.dark-mode .nav-cta { border-color: var(--cream-light); color: var(--cream-light); }
  .nav.dark-mode .nav-cta:hover { background: var(--cream-light); color: var(--ink); }
  .nav.scrolled { background: var(--cream-light); box-shadow: 0 1px 0 var(--line); padding: 0.8rem 2.5rem; color: var(--ink); }
  .nav.scrolled .nav-links a { color: var(--ink); opacity: 1; }
  .nav.scrolled .nav-cta { border-color: var(--ink); color: var(--ink); }
  .nav.scrolled .nav-cta:hover { background: var(--ink); color: var(--cream-light); }
  .nav-logo { display: flex; align-items: center; gap: 0.6rem; font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.05rem; }
  .nav-logo img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
  .nav-links { display: flex; list-style: none; gap: 2.2rem; }
  .nav-links a { font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em; opacity: 0.75; transition: opacity 0.2s; }
  .nav-links a:hover { opacity: 1; }
  .nav-cta { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; border: 1.5px solid currentColor; padding: 0.5rem 1.2rem; border-radius: 2rem; transition: background 0.2s, color 0.2s; }
  .nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.3rem; }
  .nav-toggle span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }

  /* BUTTONS */
  .btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; padding: 0.85rem 1.8rem; border-radius: 2rem; border: 2px solid transparent; transition: all 0.2s; cursor: pointer; text-decoration: none; }
  .btn-primary { background: var(--rose); color: #fff; border-color: var(--rose); }
  .btn-primary:hover { background: var(--rose-dark); border-color: var(--rose-dark); }
  .btn-outline { background: transparent; color: var(--cream-light); border-color: rgba(248,241,226,0.5); }
  .btn-outline:hover { border-color: var(--cream-light); }
  .btn-outline-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
  .btn-outline-dark:hover { background: var(--ink); color: var(--cream-light); }
  .btn-ink { background: var(--ink); color: var(--cream-light); border-color: var(--ink); }
  .btn-ink:hover { background: #3d3530; }
  .btn-ghost { background: transparent; color: var(--ink-soft); border-color: var(--line); }
  .btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
  .btn-arrow { transition: transform 0.2s; }
  .btn:hover .btn-arrow { transform: translateX(4px); }

  /* SECTION LABEL */
  .section-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.9rem; }

  /* HERO */
  .hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; color: var(--cream-light); }
  .hero-bg { position: absolute; inset: 0; background: var(--ink); }
  .hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.62; animation: slowzoom 18s ease-in-out infinite alternate; }
  @keyframes slowzoom { from { transform: scale(1); } to { transform: scale(1.07); } }
  .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(42,37,32,0.78) 0%, rgba(42,37,32,0.12) 55%, transparent 100%); }
  .hero-inner { position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; padding: 0 2.5rem 5rem; width: 100%; }
  .hero-eyebrow { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose-soft); margin-bottom: 1rem; }
  .hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 700; color: var(--cream-light); max-width: 14ch; margin-bottom: 1.2rem; line-height: 1.08; }
  .hero h1 em { color: var(--rose-soft); }
  .hero-sub { font-size: 1.1rem; color: rgba(248,241,226,0.8); max-width: 38ch; margin-bottom: 2rem; line-height: 1.65; }
  .hero-meta { display: flex; gap: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
  .hero-meta-item .label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(248,241,226,0.5); margin-bottom: 0.2rem; }
  .hero-meta-item .value { font-size: 0.95rem; font-weight: 500; color: var(--cream-light); }
  .hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

  /* TICKER */
  .ticker { background: var(--rose); color: #fff; padding: 0.7rem 0; overflow: hidden; white-space: nowrap; }
  .ticker-inner { display: inline-block; animation: ticker 32s linear infinite; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .ticker-dot { margin: 0 1.2rem; opacity: 0.6; }

  /* INTRO */
  .intro { padding: 7rem 0; }
  .intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .intro h2 { margin-bottom: 1.4rem; }
  .intro-text { color: var(--ink-soft); line-height: 1.75; margin-bottom: 1rem; font-size: 1.05rem; }
  .intro-text:last-of-type { margin-bottom: 1.8rem; }
  .intro-image { position: relative; }
  .intro-image img { border-radius: 1rem; width: 100%; aspect-ratio: 4/5; object-fit: cover; }
  .intro-badge { position: absolute; bottom: -1.5rem; left: -1.5rem; background: var(--ink); color: var(--cream-light); border-radius: 1rem; padding: 1.2rem 1.5rem; display: flex; align-items: center; gap: 1rem; box-shadow: 0 8px 32px rgba(42,37,32,0.2); }
  .intro-badge .num { font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 700; color: var(--rose-soft); line-height: 1; }
  .intro-badge p { font-size: 0.82rem; line-height: 1.4; max-width: 10ch; opacity: 0.8; }

  /* CHEESES */
  .cheeses { background: var(--ink); color: var(--cream-light); padding: 7rem 0; }
  .cheeses-header { text-align: center; margin-bottom: 4rem; }
  .cheeses-header h2 { color: var(--cream-light); margin-bottom: 0.8rem; }
  .cheeses-header .section-label { color: var(--rose-soft); }
  .cheese-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; border: 1px solid rgba(248,241,226,0.1); border-radius: 1rem; overflow: hidden; }
  .cheese-item { padding: 2rem 1.8rem; border-right: 1px solid rgba(248,241,226,0.1); border-bottom: 1px solid rgba(248,241,226,0.1); transition: background 0.2s; }
  .cheese-item:hover { background: rgba(248,241,226,0.04); }
  .cheese-num { font-family: 'Fraunces', serif; font-size: 1.8rem; font-weight: 700; color: var(--rose); opacity: 0.4; line-height: 1; margin-bottom: 0.5rem; }
  .cheese-name { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 600; color: var(--cream-light); margin-bottom: 0.4rem; }
  .cheese-desc { font-size: 0.82rem; color: rgba(248,241,226,0.55); line-height: 1.5; }

  /* WORKSHOPS */
  .workshops { padding: 7rem 0; background: var(--cream-light); }
  .workshops-header { text-align: center; margin-bottom: 3.5rem; }
  .workshops-header h2 { margin-bottom: 0.8rem; }
  .workshops-sub { color: var(--ink-soft); max-width: 44ch; margin: 0 auto; font-size: 1.05rem; }
  .workshop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .workshop-card { background: #fff; border-radius: 1rem; overflow: hidden; border: 1px solid var(--line); transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
  .workshop-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(42,37,32,0.1); }
  .workshop-card-img { aspect-ratio: 16/10; overflow: hidden; }
  .workshop-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .workshop-card:hover .workshop-card-img img { transform: scale(1.04); }
  .workshop-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
  .workshop-card-tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.5rem; }
  .workshop-card-body h3 { font-size: 1.2rem; margin-bottom: 0.6rem; line-height: 1.25; }
  .workshop-card-body p { font-size: 0.87rem; color: var(--ink-soft); line-height: 1.6; flex: 1; margin-bottom: 1.2rem; }
  .workshop-card-link { font-size: 0.82rem; font-weight: 600; color: var(--rose); display: flex; align-items: center; gap: 0.3rem; margin-top: auto; }

  /* EXPERIENCE */
  .experience { padding: 7rem 0; background: var(--cream); }
  .experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .experience h2 { margin-bottom: 1rem; }
  .experience-intro { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 2rem; }
  .experience-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2.5rem; }
  .experience-list li { display: flex; align-items: flex-start; gap: 0.9rem; font-size: 0.95rem; color: var(--ink-soft); line-height: 1.5; }
  .experience-list li::before { content: ''; flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--rose); margin-top: 0.55rem; }
  .experience-images { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .exp-img-1 { grid-column: 1 / -1; }
  .experience-images img { border-radius: 0.75rem; width: 100%; object-fit: cover; aspect-ratio: 4/3; }
  .exp-img-1 img { aspect-ratio: 16/9; }

  /* TESTIMONIAL */
  .testimonial { background: var(--rose); color: #fff; padding: 6rem 0; text-align: center; }
  .testimonial-quote { font-family: 'Fraunces', serif; font-size: clamp(1.3rem, 2.5vw, 1.85rem); font-weight: 500; font-style: italic; line-height: 1.5; max-width: 36ch; margin: 0 auto 1.5rem; }
  .testimonial-author { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; }

  /* PRESS */
  .press { padding: 3.5rem 0; background: var(--cream-deep); text-align: center; }
  .press-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); opacity: 0.5; margin-bottom: 1.5rem; }
  .press-logos { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
  .press-logos span { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; color: var(--ink); opacity: 0.45; }

  /* BOOK / DATES */
  .book-section { padding: 7rem 0; background: var(--cream-light); }
  .book-header { margin-bottom: 2rem; }
  .book-header h2 { margin-bottom: 0.8rem; }
  .book-intro { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 0.5rem; }
  .booking-banner { display: inline-block; background: var(--rose-soft); color: var(--rose-dark); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 2rem; margin-bottom: 1.5rem; }

  /* Date tabs */
  .course-tabs { display: flex; gap: 0.5rem; margin-bottom: 3rem; flex-wrap: wrap; }
  .course-tab { font-size: 0.82rem; font-weight: 600; padding: 0.5rem 1.2rem; border-radius: 2rem; border: 1.5px solid var(--line); background: #fff; color: var(--ink-soft); cursor: pointer; transition: all 0.2s; }
  .course-tab.active, .course-tab:hover { background: var(--ink); color: var(--cream-light); border-color: var(--ink); }

  .course-panel { display: none; }
  .course-panel.active { display: block; }

  .dates-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
  .date-card { background: #fff; border: 1px solid var(--line); border-radius: 0.75rem; padding: 1.4rem 1.6rem; display: flex; flex-direction: column; gap: 0.8rem; }
  .date-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
  .date-card-date { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 600; }
  .date-card-spaces { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 2rem; }
  .spaces-available { background: #edf7f0; color: #2d6a4a; }
  .spaces-low { background: #fff4e5; color: #9a5c00; }
  .spaces-soldout { background: #f5f5f5; color: #888; }
  .date-card-price { font-size: 0.85rem; color: var(--ink-soft); }
  .date-card .btn { width: 100%; justify-content: center; font-size: 0.82rem; padding: 0.7rem 1rem; }

  /* Full widget embed */
  .all-dates-widget { margin-top: 1.5rem; }
  .tt-widget iframe { border-radius: 0.75rem; }

  /* PRIVATE LESSONS */
  .private-section { padding: 5rem 0; background: var(--cream-deep); }
  .private-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .private-grid h2 { margin-bottom: 1rem; }
  .private-text { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 1.5rem; }
  .private-detail { font-size: 0.85rem; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 1.2rem; margin-top: 1.2rem; }

  /* GIFT */
  .gift { background: var(--ink); color: var(--cream-light); padding: 7rem 0; }
  .gift-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .gift h2 { color: var(--cream-light); margin-bottom: 1rem; }
  .gift h2 em { color: var(--rose-soft); }
  .gift-text { font-size: 1.05rem; color: rgba(248,241,226,0.7); line-height: 1.75; margin-bottom: 2rem; }
  .gift-image img { border-radius: 1rem; width: 100%; aspect-ratio: 4/3; object-fit: cover; opacity: 0.85; }

  /* ABOUT */
  .about-section { padding: 7rem 0; background: var(--cream-light); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .about-grid h2 { margin-bottom: 1.4rem; }
  .about-text { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 1.2rem; }
  .about-pull { font-family: 'Fraunces', serif; font-size: 1.15rem; font-style: italic; color: var(--rose); border-left: 3px solid var(--rose); padding-left: 1.5rem; margin: 2rem 0; line-height: 1.6; }
  .about-image img { border-radius: 1rem; width: 100%; aspect-ratio: 3/4; object-fit: cover; }

  /* CONTACT */
  .contact-section { padding: 5rem 0; background: var(--cream); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
  .contact-block { margin-bottom: 1.5rem; }
  .contact-block .label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); opacity: 0.5; margin-bottom: 0.3rem; }
  .contact-block .value { font-size: 1.05rem; font-weight: 500; }
  .contact-block .value a { color: var(--rose); }
  .contact-block .value a:hover { text-decoration: underline; }
  .contact-image img { border-radius: 1rem; width: 100%; aspect-ratio: 4/3; object-fit: cover; }

  /* FOOTER */
  .footer { background: var(--ink); color: var(--cream-light); padding: 4rem 0 2rem; border-top: 1px solid rgba(248,241,226,0.08); }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-brand h3 { font-size: 1.1rem; margin-bottom: 0.8rem; }
  .footer-brand p { font-size: 0.85rem; color: rgba(248,241,226,0.5); line-height: 1.7; max-width: 28ch; }
  .footer-col h4 { font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(248,241,226,0.4); margin-bottom: 1.2rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col ul li a { font-size: 0.87rem; color: rgba(248,241,226,0.65); transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--cream-light); }
  .footer-bottom { border-top: 1px solid rgba(248,241,226,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(248,241,226,0.3); }

  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: none; }

  /* ── MOBILE ── */
  @media (max-width: 900px) {

    /* Nav base */
    .nav { padding: 1rem 1.5rem; }
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    /* Mobile menu — expand the nav itself, no position:fixed tricks */
    .nav.mobile-open {
      background: var(--cream-light) !important;
      color: var(--ink) !important;
      flex-wrap: wrap;
      align-items: flex-start;
      box-shadow: 0 4px 24px rgba(42,37,32,0.12);
    }
    .nav.mobile-open .nav-logo { color: var(--ink); }
    .nav.mobile-open .nav-toggle { color: var(--ink); }
    .nav.mobile-open .nav-links {
      display: flex;
      flex-direction: column;
      width: 100%;
      list-style: none;
      gap: 0;
      padding: 0.5rem 0 1.2rem;
      order: 3;
    }
    .nav.mobile-open .nav-links li { border-top: 1px solid var(--line); }
    .nav.mobile-open .nav-links a {
      display: block;
      padding: 0.85rem 0;
      color: var(--ink) !important;
      opacity: 1 !important;
      font-size: 1rem;
      font-weight: 500;
    }

    /* Section spacing */
    .intro, .cheeses, .workshops, .experience, .gift, .about-section, .book-section { padding: 4rem 0; }
    .testimonial { padding: 4rem 0; }
    .contact-section { padding: 3rem 0; }

    /* Hero */
    .hero-inner { padding: 0 1.5rem 3.5rem; }
    .hero-sub { max-width: 100%; }
    .hero-meta { gap: 1.2rem; }

    /* Grids → single column */
    .intro-grid, .experience-grid, .gift-inner, .about-grid, .private-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    /* Intro badge — hide on mobile (overflows left edge) */
    .intro-badge { display: none; }

    /* Workshop grid */
    .workshop-grid { grid-template-columns: 1fr 1fr; }

    /* Cheese grid */
    .cheese-list { grid-template-columns: repeat(2, 1fr); }
    .cheese-item { border-right: 1px solid rgba(248,241,226,0.1); }
    .cheese-item:nth-child(2n) { border-right: none; }

    /* Course tabs — scroll horizontally if needed */
    .course-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 0.5rem; -webkit-overflow-scrolling: touch; }
    .course-tab { white-space: nowrap; flex-shrink: 0; }

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

  @media (max-width: 600px) {
    .nav { padding: 0.9rem 1.2rem; }
    .workshop-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.4rem; }
    .dates-grid { grid-template-columns: 1fr; }

    /* Gift buttons stack */
    #gifts .gift-inner > div:first-child > div[style*="flex"] { flex-direction: column; }

    /* Press logos wrap tighter */
    .press-logos { gap: 1.5rem; }
    .press-logos span { font-size: 0.95rem; }
  }
