    /* ============================================
       SORA BREAD HOUSE — sky palette, refined minimal
       Matches logo system: Fraunces + Sora + 空
       ============================================ */
    :root {
      /* Sky palette (sora = 空) — same as logo */
      --cream:        #FAF5EC;
      --cream-warm:   #F4ECDC;
      --sky-mist:     #EAF1F6;
      --sky-soft:     #C7D9E6;
      --sky-mid:      #92B4CC;
      --sky-deep:     #4A6680;
      --night:        #2A3A4D;

      /* Bread accents */
      --butter:       #E8C56A;
      --crust:        #C99765;
      --crust-deep:   #9B6E40;

      /* Text */
      --ink:          #1F2937;
      --ink-soft:     #4B5563;
      --ink-muted:    #8B95A1;

      /* Type */
      --display: 'Fraunces', Georgia, serif;
      --body:    'Sora', system-ui, sans-serif;
      --jp:      'Noto Serif JP', serif;

      /* Layout */
      --max:     1240px;
      --pad:     clamp(1.25rem, 4vw, 2.5rem);
      --radius:  6px;
    }

    [hidden] {
      display: none !important;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--body);
      font-weight: 300;
      color: var(--ink);
      background: var(--cream);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* Subtle grain overlay */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 100;
      opacity: 0.025;
      mix-blend-mode: multiply;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    h1, h2, h3, h4 {
      font-family: var(--display);
      font-weight: 400;
      letter-spacing: -0.02em;
      line-height: 1.05;
      color: var(--night);
      font-variation-settings: "SOFT" 50, "WONK" 0;
    }

    p { color: var(--ink-soft); }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible {
      outline: 2px solid var(--sky-deep);
      outline-offset: 3px;
      border-radius: 4px;
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .fade-up {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
      }
      .pulse { animation: none; }
    }

    /* ============================================
       Navigation — mark + single Order action, overlay menu
       ============================================ */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 50;
      padding: 1rem var(--pad);
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: transparent;
      transition: background 0.3s ease;
    }

    .nav.scrolled {
      background: var(--cream);
      border-bottom: 1px solid rgba(146, 180, 204, 0.15);
    }

    .nav-brand {
      text-decoration: none;
      line-height: 1;
    }

    .nav-brand .wordmark {
      font-family: var(--display);
      font-size: 1.35rem;
      font-weight: 500;
      letter-spacing: -0.005em;
      color: var(--night);
      display: flex;
      align-items: baseline;
      gap: 0.45rem;
    }

    .nav-brand .wordmark .kanji {
      font-family: var(--jp);
      font-size: 1.1rem;
      color: var(--sky-mid);
      font-weight: 300;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .nav-cta {
      padding: 0.55rem 1.1rem;
      background: var(--night);
      color: var(--cream) !important;
      border-radius: var(--radius);
      text-decoration: none;
      font-size: 0.82rem;
      letter-spacing: 0.04em;
      transition: transform 0.2s, background 0.2s;
    }

    .nav-cta:hover {
      background: var(--sky-deep);
      transform: translateY(-1px);
    }

    .nav-cta[aria-disabled="true"] {
      opacity: 0.55;
      cursor: default;
      pointer-events: none;
    }

    .nav-toggle {
      display: inline-flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 32px;
      height: 32px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
    }

    .nav-toggle .bar {
      width: 21px;
      height: 1.5px;
      background: var(--night);
      transition: transform 0.3s ease, opacity 0.2s ease;
    }

    .nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .nav-overlay {
      position: fixed;
      inset: 0;
      z-index: 60;
      background: var(--night);
      display: flex;
      flex-direction: column;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-8px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-overlay.open {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .nav-overlay-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem var(--pad);
    }

    .nav-overlay-head .wordmark {
      font-family: var(--display);
      font-size: 1.35rem;
      color: var(--cream);
      display: flex;
      align-items: baseline;
      gap: 0.45rem;
    }

    .nav-overlay-head .wordmark .kanji {
      font-family: var(--jp);
      color: var(--sky-mid);
      font-weight: 300;
    }

    .nav-close {
      background: none;
      border: none;
      color: var(--cream);
      font-size: 1.2rem;
      cursor: pointer;
      padding: 0.5rem;
    }

    .nav-overlay-links {
      list-style: none;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 var(--pad) 4rem;
      gap: 1rem;
    }

    .nav-overlay-links a {
      font-family: var(--display);
      font-size: clamp(1.75rem, 6vw, 2.75rem);
      font-weight: 400;
      color: var(--cream);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-overlay-links a:hover { color: var(--sky-mid); }
    .nav-overlay-links a.accent { color: var(--butter); }
    .nav-overlay-links a[aria-disabled="true"] { opacity: 0.5; pointer-events: none; }

    /* ============================================
       Hero
       ============================================ */
    .hero {
      padding: 9rem var(--pad) 5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(ellipse 80% 60% at 80% 20%, rgba(232, 197, 106, 0.15), transparent 60%),
        linear-gradient(180deg, var(--sky-mist) 0%, var(--cream) 70%);
    }

    .hero-kanji {
      position: absolute;
      font-family: var(--jp);
      font-size: clamp(20rem, 50vw, 42rem);
      color: rgba(146, 180, 204, 0.07);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-weight: 300;
      user-select: none;
      pointer-events: none;
      line-height: 1;
    }

    .hero-inner {
      max-width: var(--max);
      width: 100%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    }

    .hero-text { max-width: 640px; }

    .hero h1 {
      font-size: clamp(3.25rem, 8vw, 6.5rem);
      font-weight: 350;
      margin: 1.5rem 0 1.75rem;
      font-variation-settings: "SOFT" 70, "WONK" 0, "opsz" 96;
    }

    .hero-tagline {
      font-size: clamp(1.05rem, 1.5vw, 1.2rem);
      color: var(--ink-soft);
      font-weight: 300;
      margin-bottom: 2.5rem;
      max-width: 480px;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.95rem 1.75rem;
      font-family: var(--body);
      font-size: 0.85rem;
      font-weight: 400;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border-radius: var(--radius);
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease,
        box-shadow 0.25s ease;
    }

    .btn-primary {
      background: var(--night);
      color: var(--cream);
    }

    .btn-primary:hover {
      background: var(--sky-deep);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px -8px rgba(42, 58, 77, 0.4);
    }

    .btn-ghost {
      background: transparent;
      color: var(--night);
      border: 1px solid rgba(42, 58, 77, 0.2);
    }

    .btn-ghost:hover {
      border-color: var(--night);
      background: rgba(42, 58, 77, 0.04);
    }

    .btn .arrow {
      transition: transform 0.25s;
    }

    .btn:hover .arrow {
      transform: translateX(3px);
    }

    .btn[aria-disabled="true"] {
      opacity: 0.55;
      cursor: default;
      pointer-events: none;
    }

    .hero-status {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.78rem;
      color: var(--crust-deep);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 400;
    }

    .pulse {
      width: 8px;
      height: 8px;
      background: var(--butter);
      border-radius: 50%;
      position: relative;
      animation: pulse 2.4s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(232, 197, 106, 0.6); }
      50%      { box-shadow: 0 0 0 8px rgba(232, 197, 106, 0); }
    }

    /* Hero schedule strip */
    .hero-schedule {
      margin-top: 2.5rem;
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      padding-top: 2rem;
      border-top: 1px solid rgba(74, 102, 128, 0.15);
    }

    .hero-schedule div {
      display: flex;
      flex-direction: column;
    }

    .hero-schedule .label {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ink-muted);
      margin-bottom: 0.35rem;
    }

    .hero-schedule .value {
      font-family: var(--display);
      font-size: 1.1rem;
      color: var(--night);
      font-weight: 500;
    }

    /* Hero illustration */
    .hero-art {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .hero-photo-placeholder {
      border: 1.5px dashed var(--sky-mid);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.4);
      width: 100%;
      max-width: 420px;
      min-height: 260px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      text-align: center;
      position: relative;
    }

    .hero-photo-placeholder-text {
      font-size: 0.85rem;
      color: var(--ink-muted);
      max-width: 200px;
    }

    .hero-sparrow-badge {
      position: absolute;
      bottom: 14px;
      right: 14px;
      width: 44px;
      height: auto;
      opacity: 0.9;
    }

    @media (max-width: 900px) {
      .hero-photo-placeholder { max-width: 280px; min-height: 200px; }
    }

    .fade-up {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 1s ease forwards;
    }
    .fade-up.d1 { animation-delay: 0.1s; }
    .fade-up.d2 { animation-delay: 0.25s; }
    .fade-up.d3 { animation-delay: 0.4s; }
    .fade-up.d4 { animation-delay: 0.55s; }
    .fade-up.d5 { animation-delay: 0.7s; }

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

    /* ============================================
       Section base
       ============================================ */
    section {
      padding: clamp(4rem, 8vw, 6rem) var(--pad);
      position: relative;
    }

    .hero {
      padding-top: clamp(6rem, 12vw, 9rem);
      padding-bottom: clamp(4rem, 10vw, 7rem);
    }

    .faq {
      padding-top: clamp(3rem, 6vw, 5rem);
      padding-bottom: clamp(3rem, 6vw, 5rem);
    }

    .container {
      max-width: var(--max);
      margin: 0 auto;
    }

    .section-head {
      max-width: 720px;
      margin-bottom: 4rem;
    }

    .section-head h2 {
      font-size: clamp(2.25rem, 5vw, 3.75rem);
      font-weight: 350;
      margin: 1rem 0 1.25rem;
      font-variation-settings: "SOFT" 60;
    }

    .section-head p {
      font-size: 1.1rem;
      max-width: 580px;
      line-height: 1.7;
    }

    /* ============================================
       About
       ============================================ */
    .about { background: var(--cream); }

    .about-text {
      max-width: 620px;
      margin: 0 auto;
      position: relative;
    }

    .about-kanji-accent {
      float: right;
      font-family: var(--jp);
      font-size: 3.5rem;
      font-weight: 300;
      color: var(--sky-mid);
      line-height: 1;
      margin: 0 0 0.5rem 1rem;
    }

    .about-text h2 {
      font-size: clamp(2rem, 4vw, 3.25rem);
      margin: 1rem 0 1.5rem;
    }

    .about-text p {
      font-size: 1.05rem;
      margin-bottom: 1.25rem;
      line-height: 1.8;
    }

    /* ============================================
       What is Shio Pan?
       ============================================ */
    .shio-pan {
      background: linear-gradient(180deg, var(--cream) 0%, var(--sky-mist) 100%);
    }

    .shio-pan-list {
      margin-top: 3.5rem;
      max-width: 640px;
    }

    .feature-row {
      padding: 1.5rem 0;
      border-top: 1px solid rgba(74, 102, 128, 0.15);
    }

    .feature-row:last-child {
      border-bottom: 1px solid rgba(74, 102, 128, 0.15);
    }

    .feature-row-offset {
      margin-left: clamp(0px, 8vw, 64px);
    }

    .feature-row h3 {
      font-size: 1.3rem;
      font-weight: 400;
      margin-bottom: 0.5rem;
    }

    .feature-row p {
      font-size: 0.95rem;
      line-height: 1.7;
    }

    /* ============================================
       Menu / Flavors + Boxes
       ============================================ */
    .menu {
      background: var(--cream-warm);
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .flavor {
      background: var(--cream);
      padding: 2.25rem 1.75rem;
      border-radius: 8px;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid rgba(74, 102, 128, 0.08);
      overflow: hidden;
    }

    .flavor:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px -20px rgba(74, 102, 128, 0.25);
    }

    .flavor-tag {
      position: absolute;
      top: 1.25rem;
      right: 1.25rem;
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--crust-deep);
      font-weight: 400;
    }

    .flavor-jp {
      font-family: var(--jp);
      font-size: 1rem;
      color: var(--sky-mid);
      font-weight: 300;
      margin-bottom: 0.5rem;
      display: block;
    }

    .flavor h3 {
      font-size: 1.5rem;
      font-weight: 400;
      margin-bottom: 0.75rem;
      font-variation-settings: "SOFT" 80;
    }

    .flavor p {
      font-size: 0.9rem;
      line-height: 1.65;
      margin-bottom: 1.25rem;
      min-height: 3.5em;
    }

    .flavor-price {
      font-family: var(--display);
      font-size: 1.15rem;
      color: var(--night);
      font-weight: 500;
      font-variant-numeric: tabular-nums;
    }

    .flavor-price small {
      font-family: var(--body);
      color: var(--ink-muted);
      font-size: 0.75rem;
      margin-left: 0.25rem;
      font-weight: 300;
    }

    /* Box packs */
    .box-packs {
      margin-top: 4rem;
      padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
      background: var(--cream);
      border-radius: 12px;
      border: 1px solid rgba(74, 102, 128, 0.1);
    }

    .box-packs-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .box-packs-head h3 {
      font-family: var(--display);
      font-size: 1.75rem;
      font-weight: 400;
      color: var(--night);
    }

    .box-packs-head p {
      font-size: 0.9rem;
      max-width: 300px;
    }

    .pack-options {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    @media (max-width: 700px) {
      .pack-options { grid-template-columns: 1fr; }
    }

    .pack {
      padding: 1.75rem 1.5rem;
      border: 1px solid rgba(74, 102, 128, 0.15);
      border-radius: 8px;
      text-align: center;
      transition: border-color 0.25s ease, transform 0.25s ease;
      background: var(--cream);
    }

    .pack:hover {
      border-color: var(--sky-mid);
      transform: translateY(-2px);
    }

    .pack .count {
      font-family: var(--display);
      font-size: 3rem;
      font-weight: 400;
      color: var(--night);
      font-variation-settings: "SOFT" 80;
      line-height: 1;
    }

    .pack .count em {
      font-style: italic;
      color: var(--sky-deep);
      font-variation-settings: "WONK" 1;
    }

    .pack .label {
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--crust-deep);
      margin: 0.5rem 0 0.75rem;
    }

    .pack .desc {
      font-size: 0.88rem;
      color: var(--ink-soft);
    }

    .menu-cta {
      margin-top: 3rem;
      text-align: center;
    }

    .menu-note {
      margin-top: 2rem;
      padding: 1.5rem;
      background: rgba(146, 180, 204, 0.12);
      border-left: 3px solid var(--sky-mid);
      border-radius: 4px;
      font-size: 0.9rem;
      color: var(--ink-soft);
      max-width: 720px;
    }

    /* ============================================
       Ordering CTA section
       ============================================ */
    .order {
      background: var(--night);
      color: var(--cream);
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .order::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 50% 60% at 20% 30%, rgba(146, 180, 204, 0.12), transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 70%, rgba(232, 197, 106, 0.1), transparent 60%);
    }

    .order .container {
      position: relative;
      z-index: 1;
      max-width: 760px;
    }

    .order h2 {
      color: var(--cream);
      font-size: clamp(2.5rem, 5.5vw, 4rem);
      margin: 1rem auto 1.5rem;
      font-weight: 350;
    }

    .order > .container > p {
      color: rgba(250, 245, 236, 0.75);
      margin: 0 auto 2rem;
      font-size: 1.1rem;
      max-width: 560px;
      line-height: 1.75;
    }

    .order-schedule {
      display: grid;
      grid-template-columns: 1fr 1px 1fr;
      gap: 2rem;
      max-width: 520px;
      margin: 2.5rem auto 3rem;
      padding: 2rem 0;
      border-top: 1px solid rgba(250, 245, 236, 0.15);
      border-bottom: 1px solid rgba(250, 245, 236, 0.15);
    }

    @media (max-width: 600px) {
      .order-schedule {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .order-schedule .divider { display: none; }
    }

    .order-schedule .divider {
      background: rgba(250, 245, 236, 0.15);
    }

    .order-schedule .item {
      text-align: center;
    }

    .order-schedule .item .label {
      font-size: 0.72rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--butter);
      margin-bottom: 0.5rem;
      display: block;
    }

    .order-schedule .item .value {
      font-family: var(--display);
      font-size: 1.4rem;
      color: var(--cream);
      font-weight: 400;
    }

    .order .btn-square {
      background: var(--butter);
      color: var(--night);
      font-size: 0.95rem;
      padding: 1.1rem 2.5rem;
      letter-spacing: 0.08em;
    }

    .order .btn-square:hover {
      background: var(--cream);
      transform: translateY(-2px);
    }

    .order-note {
      margin-top: 1.5rem;
      font-size: 0.82rem;
      color: rgba(250, 245, 236, 0.55);
      letter-spacing: 0.04em;
    }

    /* ============================================
       Order builder (Phase 2 — embedded Square checkout)
       ============================================ */
    .order-builder {
      max-width: 480px;
      margin: 0 auto;
      text-align: left;
    }

    .box-size-picker {
      display: flex;
      gap: 0.75rem;
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    .box-size-option {
      padding: 0.6rem 1.25rem;
      border-radius: var(--radius);
      border: 1px solid rgba(250, 245, 236, 0.3);
      background: transparent;
      color: var(--cream);
      cursor: pointer;
      font-family: var(--body);
      font-size: 0.9rem;
    }

    .box-size-option.selected {
      background: var(--butter);
      color: var(--night);
      border-color: var(--butter);
    }

    .flavor-picker-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(250, 245, 236, 0.12);
      color: var(--cream);
    }

    .stepper-btn {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1px solid rgba(250, 245, 236, 0.3);
      background: transparent;
      color: var(--cream);
      cursor: pointer;
      font-size: 1rem;
      line-height: 1;
    }

    .stepper-btn:hover {
      background: rgba(250, 245, 236, 0.1);
    }

    .stepper-qty {
      display: inline-block;
      min-width: 2rem;
      text-align: center;
      font-family: var(--display);
      color: var(--cream);
    }

    .order-total {
      margin: 1.5rem 0;
      font-family: var(--display);
      font-size: 1.3rem;
      color: var(--butter);
      text-align: center;
      font-variant-numeric: tabular-nums;
    }

    .buyer-form {
      display: flex;
      flex-direction: column;
      margin-bottom: 1.5rem;
    }

    .buyer-form label {
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(250, 245, 236, 0.7);
      margin-bottom: 0.25rem;
    }

    .buyer-form input {
      padding: 0.65rem 0.85rem;
      border-radius: var(--radius);
      border: 1px solid rgba(250, 245, 236, 0.3);
      background: rgba(250, 245, 236, 0.06);
      color: var(--cream);
      font-family: var(--body);
      font-size: 0.95rem;
      margin-bottom: 0.75rem;
    }

    .wallet-buttons {
      display: flex;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    #apple-pay-button,
    #google-pay-button {
      flex: 1;
      min-height: 44px;
    }

    #card-container {
      margin-bottom: 1.25rem;
      padding: 0.5rem;
      background: rgba(250, 245, 236, 0.06);
      border-radius: var(--radius);
    }

    .checkout-message {
      margin-top: 1rem;
      font-size: 0.88rem;
      color: #E8A6A6;
      min-height: 1.2em;
    }

    .checkout-confirmation {
      margin-top: 1.5rem;
      padding: 1.5rem;
      background: rgba(250, 245, 236, 0.08);
      border-radius: 8px;
      color: var(--cream);
      line-height: 1.7;
    }

    /* ============================================
       Where to Find Us
       ============================================ */
    .find-us {
      background: linear-gradient(180deg, var(--sky-mist) 0%, var(--sky-soft) 100%);
      position: relative;
      overflow: hidden;
    }

    .find-us::before {
      content: '';
      position: absolute;
      top: 10%; left: -10%;
      width: 300px; height: 80px;
      background: rgba(255, 255, 255, 0.4);
      border-radius: 100px;
      filter: blur(20px);
    }

    .find-us::after {
      content: '';
      position: absolute;
      top: 25%; right: -5%;
      width: 200px; height: 60px;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 100px;
      filter: blur(15px);
    }

    .find-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
      position: relative;
      z-index: 1;
    }

    .find-card {
      background: rgba(250, 245, 236, 0.9);
      backdrop-filter: blur(8px);
      padding: 2rem;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.6);
    }

    .find-card-icon {
      width: 36px;
      height: 36px;
      color: var(--sky-deep);
      margin-bottom: 1.25rem;
    }

    .find-card h3 {
      font-size: 1.25rem;
      font-weight: 400;
      margin-bottom: 0.75rem;
    }

    .find-card p {
      font-size: 0.92rem;
      line-height: 1.65;
      margin-bottom: 0.4rem;
    }

    .find-card .detail {
      color: var(--night);
      font-weight: 400;
    }

    .find-card .tba {
      display: inline-block;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--crust-deep);
      padding: 0.25rem 0.65rem;
      border: 1px solid rgba(155, 110, 64, 0.3);
      border-radius: 100px;
      margin-bottom: 0.75rem;
    }

    /* ============================================
       FAQ
       ============================================ */
    .faq { background: var(--cream); }

    .faq .section-head { margin-left: auto; margin-right: auto; text-align: center; }

    .faq-list { margin: 3rem auto 0; max-width: 820px; }

    .faq-item {
      border-top: 1px solid rgba(74, 102, 128, 0.18);
      padding: 1.5rem 0;
    }

    .faq-item:last-child {
      border-bottom: 1px solid rgba(74, 102, 128, 0.18);
    }

    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      font-family: var(--display);
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--night);
      padding: 0.25rem 0;
    }

    .faq-q .plus {
      font-family: var(--body);
      font-weight: 200;
      font-size: 1.5rem;
      color: var(--sky-deep);
      transition: transform 0.3s;
      flex-shrink: 0;
      margin-left: 1rem;
    }

    .faq-item.open .plus { transform: rotate(45deg); }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      color: var(--ink-soft);
      font-size: 0.96rem;
      line-height: 1.75;
    }

    .faq-item.open .faq-a {
      max-height: 500px;
      padding-top: 1rem;
    }

    /* ============================================
       Waitlist capture (hero variant — light background)
       ============================================ */
    .waitlist-form {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      gap: 0.75rem;
    }

    .waitlist-fields {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 280px;
    }

    .waitlist-fields label {
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--crust-deep);
      margin-bottom: 0.35rem;
    }

    .waitlist-fields input {
      padding: 0.65rem 0.85rem;
      border-radius: var(--radius);
      border: 1px solid rgba(74, 102, 128, 0.35);
      background: var(--cream);
      color: var(--night);
      font-family: var(--body);
      font-size: 0.95rem;
    }

    .waitlist-success {
      font-family: var(--body);
      font-size: 0.95rem;
      color: var(--night);
      max-width: 320px;
    }

    /* ============================================
       Footer — compact, conversion-focused
       ============================================ */
    footer {
      background: var(--night);
      color: rgba(250, 245, 236, 0.7);
      padding: 3rem var(--pad) 2rem;
    }

    .footer-close {
      max-width: var(--max);
      margin: 0 auto;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-brand-line {
      font-family: var(--display);
      font-size: 1.15rem;
      color: var(--cream);
      display: flex;
      align-items: baseline;
      gap: 0.4rem;
    }

    .footer-brand-line .kanji {
      font-family: var(--jp);
      color: var(--sky-mid);
      font-weight: 300;
    }

    .footer-status-line {
      font-size: 0.78rem;
      color: var(--sky-mid);
      margin-top: 0.3rem;
    }

    .footer-contact {
      display: flex;
      gap: 1.25rem;
      flex-wrap: wrap;
      margin-top: 1.25rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(250, 245, 236, 0.15);
      font-size: 0.82rem;
    }

    .footer-contact a {
      color: rgba(250, 245, 236, 0.75);
      text-decoration: none;
    }

    .footer-contact a:hover { color: var(--cream); }

    .footer-legal {
      font-size: 0.72rem;
      color: rgba(250, 245, 236, 0.5);
      margin-top: 1rem;
      max-width: 560px;
      line-height: 1.6;
    }

    .footer-copyright {
      font-size: 0.72rem;
      color: rgba(250, 245, 236, 0.4);
      margin-top: 0.5rem;
    }

    .footer-close .btn-square {
      background: var(--butter);
      color: var(--night);
      font-size: 0.9rem;
      padding: 0.7rem 1.5rem;
    }

    .footer-close .btn-square:hover {
      background: var(--cream);
    }

    .footer-close .btn-square[aria-disabled="true"] {
      opacity: 0.55;
      pointer-events: none;
    }

    .sticky-order-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 40;
      background: var(--night);
      color: var(--cream);
      padding: 0.85rem var(--pad);
      display: none;
      justify-content: space-between;
      align-items: center;
      font-family: var(--display);
      font-size: 0.85rem;
      box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    }

    .sticky-order-bar.visible {
      display: flex;
    }

    .btn-sticky-order {
      background: var(--butter);
      color: var(--night) !important;
      padding: 0.5rem 1.1rem;
      border-radius: var(--radius);
      text-decoration: none;
      font-family: var(--body);
      font-size: 0.78rem;
      letter-spacing: 0.04em;
    }

    .btn-sticky-order[aria-disabled="true"] {
      opacity: 0.55;
      pointer-events: none;
    }

    @media (min-width: 900px) {
      .sticky-order-bar { display: none !important; }
    }
