  :root {
    --blue: #1b88c6;
    --blue-mid: #166b9d;
    --blue-deep: #0e4870;
    --blue-darker: #082d4a;
    --blue-darkest: #051d33;
    --cream: #f1eaca;
    --cream-soft: #f7f0d8;
    --cream-bright: #fcf7e7;
    --cream-dim: rgba(241, 234, 202, 0.72);
    --cream-faint: rgba(241, 234, 202, 0.5);
    --cream-whisper: rgba(241, 234, 202, 0.3);
    --hairline: rgba(241, 234, 202, 0.22);
    --hairline-strong: rgba(241, 234, 202, 0.45);
    --display: "Fraunces", "Cormorant Garamond", Georgia, serif;
    --sans: "Jost", "Helvetica Neue", sans-serif;
    --shadow-card: 0 30px 80px -25px rgba(5, 29, 51, 0.55);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--blue-darker);
    color: var(--cream);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  /* Subtle paper grain texture on blue — adds depth */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.92  0 0 0 0 0.82  0 0 0 0.12 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  }

  ::selection { background: var(--cream); color: var(--blue-darker); }

  /* === TYPOGRAPHY === */
  h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; letter-spacing: -0.018em; line-height: 1.05; color: var(--cream-soft); }
  em, .ital { font-style: italic; font-variation-settings: "SOFT" 100; }
  .eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cream-dim);
  }
  .num {
    font-family: var(--display);
    font-feature-settings: "tnum", "lnum";
    font-variant-numeric: tabular-nums;
  }

  /* === LAYOUT === */
  .wrap { max-width: 1320px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; }
  .wrap-narrow { max-width: 1100px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; }

  /* === NAV === */
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 45, 74, 0.92);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--hairline);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 40px;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
  }
  .logo-link { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
  .logo-img { height: 30px; width: auto; display: block; }
  .nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .nav-menu-btn {
    display: none;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream);
    cursor: pointer;
    padding: 8px 0;
    margin-left: auto;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-menu-icon {
    width: 22px;
    height: 14px;
    position: relative;
    display: block;
  }
  .nav-menu-icon::before,
  .nav-menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--cream);
    transition: transform 0.35s ease, top 0.35s ease, opacity 0.25s ease;
  }
  .nav-menu-icon::before { top: 0; }
  .nav-menu-icon::after { top: 12px; }
  .nav-menu-icon span {
    position: absolute;
    left: 0;
    top: 6px;
    width: 100%;
    height: 1px;
    background: var(--cream);
    transition: opacity 0.25s ease;
  }
  .nav-toggle:checked + .nav-menu-btn .nav-menu-icon::before {
    top: 6px;
    transform: rotate(45deg);
  }
  .nav-toggle:checked + .nav-menu-btn .nav-menu-icon span { opacity: 0; }
  .nav-toggle:checked + .nav-menu-btn .nav-menu-icon::after {
    top: 6px;
    transform: rotate(-45deg);
  }
  .nav-links { display: flex; gap: 38px; list-style: none; }
  .nav-links a {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    font-weight: 400;
    position: relative;
    padding: 4px 0;
    transition: opacity 0.3s ease;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -3px;
    width: 0; height: 1px;
    background: var(--cream);
    transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .nav-links a:hover::after { width: 100%; }
  .nav-open {
    display: none;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream-dim);
  }
  .nav-open .dot {
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--cream);
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    animation: pulse 2.4s ease-in-out infinite;
    box-shadow: 0 0 8px var(--cream);
  }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
  @media (min-width: 900px) { .nav-open { display: inline-block; } }

  /* === HERO === */
  .hero {
    padding: 52px 0 72px;
    position: relative;
    overflow: visible;
  }

  /* Sun motif in the corner — vintage Italian poster touch */
  .sun-ornament {
    position: absolute;
    top: 90px;
    right: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1px solid var(--hairline);
    z-index: 0;
    opacity: 0.6;
  }
  .sun-ornament::before {
    content: "";
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 1px solid var(--hairline);
  }
  .sun-ornament::after {
    content: "";
    position: absolute;
    inset: 64px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--cream-faint) 0%, transparent 70%);
  }

  .hero-meta {
    margin-bottom: 36px;
    max-width: 340px;
  }
  .hero-meta p {
    font-size: 13.5px;
    color: var(--cream-dim);
    line-height: 1.6;
  }
  .hero-meta-right p {
    font-size: 11px;
    color: var(--cream-dim);
    line-height: 1.65;
  }
  .hero-meta-right {
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(48px, 7.5vw, 112px);
    letter-spacing: -0.045em;
    line-height: 0.93;
    font-weight: 350;
    font-variation-settings: "opsz" 144, "SOFT" 30;
    color: var(--cream-bright);
    position: relative;
    z-index: 2;
  }
  .hero h1 .line { display: block; }
  .hero h1 em {
    font-weight: 300;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    color: var(--cream-bright);
  }
  .hero h1 .line:nth-child(2) { padding-left: clamp(40px, 12vw, 200px); }
  .hero h1 .line:nth-child(3) { padding-left: clamp(20px, 6vw, 100px); }

  .hero-foot {
    margin-top: 44px;
    position: relative;
    z-index: 2;
  }
  .hero-foot p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--cream-dim);
    max-width: 380px;
  }

  /* Decorative spoon ornament */
  .spoon-mark {
    width: 64px;
    height: 64px;
    border: 1px solid var(--hairline-strong);
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
  }
  .spoon-mark::before {
    content: "";
    width: 36px;
    height: 36px;
    background: var(--cream);
    border-radius: 50% 50% 50% 50% / 65% 65% 35% 35%;
    opacity: 0.95;
  }

  /* === MANIFESTO === */
  .manifesto {
    padding: 130px 0;
    background: var(--blue-deep);
    border-top: 1px solid var(--hairline);
    position: relative;
  }
  .manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
  }
  .manifesto h2 {
    font-size: clamp(38px, 4.4vw, 68px);
    line-height: 1.02;
    font-variation-settings: "opsz" 96, "SOFT" 50;
  }
  .manifesto-body p {
    font-size: 18px;
    line-height: 1.78;
    margin-bottom: 24px;
    color: var(--cream);
    max-width: 60ch;
  }
  .manifesto-body p:first-of-type:first-letter {
    font-family: var(--display);
    font-size: 68px;
    line-height: 0.85;
    float: left;
    padding: 6px 12px 0 0;
    color: var(--cream-bright);
    font-weight: 300;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-style: italic;
  }
  .pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 72px;
    padding-top: 52px;
    border-top: 1px solid var(--hairline);
  }
  .pillar .roman {
    font-family: var(--display);
    font-size: 14px;
    color: var(--cream-dim);
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
  }
  .pillar h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-variation-settings: "opsz" 36;
  }
  .pillar p {
    font-size: 13.5px;
    color: var(--cream-dim);
    line-height: 1.65;
  }

  /* === SIGNATURE === */
  .signature {
    padding: 140px 0;
    background: var(--blue-mid);
    position: relative;
  }
  .signature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .signature-card {
    aspect-ratio: 4 / 5;
    background: linear-gradient(150deg, var(--blue-deep) 0%, var(--blue-darker) 55%, var(--blue-darkest) 100%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 44px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--hairline);
  }
  .signature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 18%, rgba(241, 234, 202, 0.18), transparent 60%);
  }
  /* Decorative corner mark inside card */
  .signature-card .corner-mark {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--hairline-strong);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-size: 11px;
    font-style: italic;
    color: var(--cream-dim);
  }
  .signature-card-content {
    position: relative;
    z-index: 2;
    color: var(--cream-bright);
  }
  .signature-card-content .label {
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--cream-dim);
    margin-bottom: 18px;
  }
  .signature-card-content h3 {
    font-family: var(--display);
    font-size: clamp(44px, 5vw, 60px);
    line-height: 0.95;
    font-weight: 350;
    font-variation-settings: "opsz" 144, "SOFT" 80;
    color: var(--cream-bright);
  }

  .signature-text .eyebrow { margin-bottom: 24px; display: block; }
  .signature-text h2 {
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.02;
    margin-bottom: 32px;
    font-variation-settings: "opsz" 96, "SOFT" 60;
  }
  .signature-text p {
    font-size: 17px;
    line-height: 1.72;
    margin-bottom: 24px;
    color: var(--cream-dim);
    max-width: 50ch;
  }
  .quote {
    border-left: 1px solid var(--hairline-strong);
    padding: 4px 0 4px 24px;
    margin-top: 36px;
    font-family: var(--display);
    font-style: italic;
    font-size: 21px;
    line-height: 1.45;
    color: var(--cream-soft);
    max-width: 44ch;
    font-variation-settings: "SOFT" 100;
  }
  .quote-cite {
    display: block;
    font-family: var(--sans);
    font-style: normal;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream-faint);
    margin-top: 16px;
  }

  /* === MENU === */
  .menu {
    padding: 140px 0;
    background: var(--blue-mid);
    border-top: 1px solid var(--hairline);
    position: relative;
  }
  .menu-head {
    text-align: center;
    margin-bottom: 90px;
  }
  .menu-head .eyebrow { display: block; margin-bottom: 24px; }
  .menu-head h2 {
    font-size: clamp(60px, 8.5vw, 136px);
    line-height: 0.94;
    font-weight: 350;
    font-variation-settings: "opsz" 144, "SOFT" 60;
  }
  .menu-head p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--cream-dim);
    max-width: 54ch;
    margin: 32px auto 0;
  }
  .menu-head .fleuron {
    font-family: var(--display);
    font-style: italic;
    font-size: 22px;
    color: var(--cream-faint);
    margin: 24px auto;
    display: block;
    letter-spacing: 0.3em;
  }

  .section-label {
    display: flex;
    align-items: baseline;
    gap: 24px;
    margin: 80px 0 56px;
  }
  .section-label .hairline {
    flex: 1;
    height: 1px;
    background: var(--hairline);
  }
  .section-label h3 {
    font-family: var(--display);
    font-size: 32px;
    font-weight: 400;
    color: var(--cream-soft);
    font-variation-settings: "opsz" 72, "SOFT" 60;
    font-style: italic;
  }
  .section-label .tag {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cream-dim);
  }

  .flavour-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--hairline);
  }
  .flavour {
    padding: 30px 32px;
    border-bottom: 1px solid var(--hairline);
    display: grid;
    grid-template-columns: 36px 1fr auto;
    gap: 20px;
    align-items: start;
    position: relative;
    transition: background 0.4s ease;
    cursor: default;
  }
  .flavour:nth-child(odd) { border-right: 1px solid var(--hairline); }
  .flavour:hover { background: rgba(241, 234, 202, 0.06); }
  .flavour:hover .f-name { color: var(--cream-bright); }
  .flavour:hover .f-desc { opacity: 1; }

  .f-num {
    font-family: var(--display);
    font-feature-settings: "tnum";
    font-size: 13px;
    color: var(--cream-faint);
    padding-top: 5px;
    font-variant-numeric: tabular-nums;
    font-style: italic;
  }
  .f-body { min-width: 0; }
  .f-name {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -0.012em;
    font-variation-settings: "opsz" 36, "SOFT" 60;
    margin-bottom: 8px;
    color: var(--cream-soft);
    transition: color 0.35s ease;
  }
  .f-name em { font-style: italic; }
  .f-desc {
    font-size: 13.5px;
    line-height: 1.62;
    color: var(--cream-dim);
    max-width: 52ch;
    opacity: 0.82;
    transition: opacity 0.35s ease;
  }
  .f-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    flex-wrap: wrap;
    width: fit-content;
    max-width: 100%;
  }
  .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    align-self: auto;
    width: auto;
    min-height: 0;
    white-space: nowrap;
    line-height: 1.2;
    font-size: 9.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 9px;
    border: 1px solid var(--hairline-strong);
    border-radius: 100px;
    color: var(--cream-dim);
    background: transparent;
  }
  .badge.df { color: var(--cream); border-color: var(--cream-faint); }
  .badge.hot {
    color: var(--cream-bright);
    border-color: var(--cream);
    background: rgba(241, 234, 202, 0.14);
  }
  .badge.signature {
    background: var(--cream);
    color: var(--blue-darker);
    border-color: var(--cream);
    font-weight: 500;
  }

  .f-price {
    text-align: right;
    font-family: var(--display);
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    min-width: 110px;
  }
  .f-price .small {
    display: block;
    font-size: 10.5px;
    color: var(--cream-faint);
    letter-spacing: 0.08em;
    margin-bottom: 3px;
    font-family: var(--sans);
    font-weight: 400;
    text-transform: uppercase;
  }
  .f-price .amt {
    font-size: 17px;
    line-height: 1.3;
    color: var(--cream-soft);
  }
  .f-price .pipe { color: var(--cream-faint); margin: 0 8px; }

  /* === PHOTO STRIP === */
  .photo-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    overflow: hidden;
    line-height: 0;
  }
  .photo-strip-item { overflow: hidden; }
  .photo-strip-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .photo-strip-item:hover img { transform: scale(1.04); }

  /* === SIGNATURE CARD WITH IMAGE === */
  .signature-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s ease;
  }
  .signature-card:hover .signature-card-img { transform: scale(1.03); }
  .signature-card.has-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 29, 51, 0.95) 25%, rgba(5, 29, 51, 0.5) 70%, rgba(5, 29, 51, 0.25) 100%);
    z-index: 2;
  }
  .signature-card.has-image .corner-mark,
  .signature-card.has-image .signature-card-content { z-index: 3; }

  /* === PLACE GALLERY (about page) === */
  .place-gallery {
    line-height: 0;
    overflow: hidden;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3px;
  }
  .gallery-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
  }
  .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .gallery-main { overflow: hidden; height: 440px; }
  .gallery-main:hover .gallery-img { transform: scale(1.03); }
  .gallery-side-item { overflow: hidden; height: 218px; }
  .gallery-side-item:hover .gallery-img { transform: scale(1.04); }

  /* === VIDEO PLACEHOLDER === */
  .video-placeholder-wrap {
    margin: 48px 0 0;
  }
  .video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--blue-darkest);
    border: 1px solid var(--hairline);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
  }
  .video-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(27, 136, 198, 0.1), transparent 65%);
    pointer-events: none;
  }
  .video-play-icon {
    width: 64px;
    height: 64px;
    border: 1px solid var(--hairline-strong);
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;
  }
  .video-play-icon::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent var(--cream-dim);
    margin-left: 5px;
  }
  .video-placeholder p {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cream-faint);
    position: relative;
    z-index: 1;
  }

  /* === VISIT === */
  .visit {
    padding: 140px 0 110px;
    background: var(--blue-darker);
    color: var(--cream);
    position: relative;
  }
  .visit::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 15% 20%, rgba(241, 234, 202, 0.08), transparent 50%),
      radial-gradient(circle at 85% 80%, rgba(27, 136, 198, 0.25), transparent 50%);
    pointer-events: none;
  }
  .visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
  }
  .visit h2 {
    font-size: clamp(50px, 6.8vw, 100px);
    line-height: 0.98;
    margin: 24px 0 32px;
    color: var(--cream-bright);
    font-variation-settings: "opsz" 144, "SOFT" 50;
  }
  .visit p {
    font-size: 16px;
    line-height: 1.72;
    color: var(--cream-dim);
    max-width: 44ch;
  }
  .info-block { margin-bottom: 36px; }
  .info-block .label {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cream-faint);
    margin-bottom: 10px;
  }
  .info-block .value {
    font-family: var(--display);
    font-size: 24px;
    line-height: 1.35;
    color: var(--cream-soft);
    font-variation-settings: "opsz" 36;
  }
  .info-block .value a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid var(--cream-whisper);
    transition: border-color 0.3s ease;
  }
  .info-block .value a:hover { border-color: var(--cream); }
  .hours-list { list-style: none; }
  .hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid var(--hairline);
    font-size: 14px;
  }
  .hours-list li:last-child { border-bottom: none; }
  .hours-list .day {
    letter-spacing: 0.08em;
    color: var(--cream-dim);
    text-transform: uppercase;
    font-size: 11.5px;
  }
  .hours-list .time {
    font-family: var(--display);
    font-variant-numeric: tabular-nums;
    color: var(--cream-soft);
  }

  .reserve-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    padding: 18px 30px;
    border: 1px solid var(--cream);
    background: transparent;
    color: var(--cream);
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
  }
  .reserve-btn:hover {
    background: var(--cream);
    color: var(--blue-darker);
  }
  .reserve-btn .arrow {
    transition: transform 0.4s ease;
  }
  .reserve-btn:hover .arrow {
    transform: translateX(5px);
  }

  /* === FOOTER === */
  footer {
    background: var(--blue-darkest);
    color: var(--cream-dim);
    padding: 70px 0 36px;
    border-top: 1px solid var(--hairline);
  }
  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
  footer .footer-logo { height: 28px; width: auto; margin-bottom: 20px; display: block; }
  footer .footer-tag {
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
    font-family: var(--display);
    color: var(--cream-dim);
    max-width: 32ch;
    font-variation-settings: "SOFT" 100;
  }
  footer h5 {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cream-faint);
    margin-bottom: 18px;
    font-weight: 500;
  }
  footer ul { list-style: none; }
  footer ul li { margin-bottom: 9px; font-size: 13px; }
  footer ul li a {
    color: var(--cream-dim);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  footer ul li a:hover { color: var(--cream); }
  .footer-bottom {
    border-top: 1px solid var(--hairline);
    margin-top: 60px;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cream-faint);
  }

  /* === RESPONSIVE === */
  @media (max-width: 900px) {
    .wrap, .wrap-narrow, .nav-inner {
      padding-left: max(22px, env(safe-area-inset-left));
      padding-right: max(22px, env(safe-area-inset-right));
    }
    .nav-links { gap: 18px; }
    .nav-links a { font-size: 10.5px; }
    .logo-img { height: 26px; }
    .hero { padding: 36px 0 56px; }
    .hero-meta { margin-bottom: 20px; }
    .hero-meta-right { text-align: left; }
    .hero h1 { font-size: clamp(40px, 11vw, 80px); }
    .hero h1 .line:nth-child(2),
    .hero h1 .line:nth-child(3) { padding-left: 0; }
    .hero-foot { margin-top: 24px; }
    .sun-ornament { width: 220px; height: 220px; top: 40px; right: -100px; }
    .hero-layout { grid-template-columns: 1fr; }
    .hero-cards { height: 300px; margin-top: 40px; }
    .card-pack-item { width: 180px; height: 260px; left: calc(50% - 90px); top: 20px; }
    .manifesto-grid, .signature-grid, .visit-grid { grid-template-columns: 1fr; gap: 40px; }
    .pillars { grid-template-columns: 1fr 1fr; gap: 24px; }
    .flavour-grid { grid-template-columns: 1fr; }
    .flavour:nth-child(odd) { border-right: none; }
    .flavour { padding: 22px 0; }
    .menu-head { margin-bottom: 56px; }
    .menu-head h2 { font-size: clamp(44px, 12vw, 100px); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; }
    .menu, .signature, .visit, .manifesto { padding: 80px 0; }
    .signature-card { padding: 28px; min-height: 280px; }
    .visit h2 { font-size: clamp(40px, 10vw, 80px); }
  }

  @media (max-width: 720px) {
    .nav-menu-btn { display: flex; }
    .nav-menu-text { display: none; }
    .nav-links {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 0 max(22px, env(safe-area-inset-right)) 20px max(22px, env(safe-area-inset-left));
      background: rgba(14, 72, 112, 0.97);
      border-bottom: 1px solid var(--hairline);
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
      transition: max-height 0.4s ease, opacity 0.3s ease;
    }
    .nav-links li { border-top: 1px solid var(--hairline); }
    .nav-links a {
      display: block;
      padding: 16px 0;
      font-size: 12px;
      letter-spacing: 0.2em;
    }
    .nav-links a::after { display: none; }
    .nav-toggle:checked ~ .nav-links {
      max-height: 320px;
      opacity: 1;
      pointer-events: auto;
    }
    .nav-inner { flex-wrap: wrap; padding-top: 14px; padding-bottom: 14px; }
  }

  @media (max-width: 600px) {
    .wrap, .wrap-narrow, .nav-inner {
      padding-left: max(18px, env(safe-area-inset-left));
      padding-right: max(18px, env(safe-area-inset-right));
    }
    .hero { padding: 28px 0 48px; }
    .hero-meta { margin-bottom: 24px; }
    .hero-meta p { font-size: 13px; }
    .hero h1 { font-size: clamp(36px, 11vw, 60px); line-height: 0.96; }
    .hero-foot { margin-top: 24px; }
    .hero-foot p { font-size: 13.5px; }
    .manifesto { padding: 64px 0; }
    .manifesto-body p { font-size: 16px; }
    .manifesto-body p:first-of-type:first-letter { font-size: 48px; padding-right: 8px; }
    .pillars { grid-template-columns: 1fr; gap: 28px; margin-top: 48px; padding-top: 40px; }
    .signature, .menu, .visit { padding: 64px 0; }
    .signature-card { aspect-ratio: auto; min-height: 240px; }
    .signature-text h2 { font-size: clamp(32px, 9vw, 48px); }
    .quote { font-size: 18px; padding-left: 18px; }
    .menu-head p { font-size: 14px; }
    .section-label {
      flex-wrap: wrap;
      gap: 10px 16px;
      margin: 56px 0 28px;
    }
    .section-label h3 { font-size: 26px; width: 100%; }
    .section-label .tag { font-size: 10px; }
    .section-label .hairline { flex-basis: 100%; order: 3; }
    .flavour {
      grid-template-columns: 28px 1fr;
      grid-template-areas:
        "num body"
        ". price";
      gap: 10px 14px;
      padding: 18px 0;
      align-items: start;
    }
    .f-num { grid-area: num; align-self: start; }
    .f-body {
      grid-area: body;
      align-self: start;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .f-meta { margin-top: 12px; }
    .f-price {
      grid-area: price;
      align-self: start;
      text-align: left;
      min-width: 0;
      white-space: normal;
    }
    .f-name { font-size: 20px; }
    .f-desc { font-size: 13px; }
    .f-price .amt { font-size: 16px; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    footer { padding-bottom: max(36px, env(safe-area-inset-bottom)); }
    .reserve-btn { width: 100%; justify-content: center; }
    .hours-list li { flex-wrap: wrap; gap: 4px 12px; }
    .info-block .value { font-size: 20px; }
  }

  @media (max-width: 380px) {
    .hero h1 { font-size: 38px; }
    .menu-head h2 { font-size: 40px; }
    .f-price .pipe { margin: 0 4px; }
    .badge { font-size: 9px; padding: 3px 7px; }
  }

  /* === ANIMATIONS === */
  @keyframes riseUp {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .reveal { animation: riseUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
  .reveal-delay-1 { animation-delay: 0.12s; }
  .reveal-delay-2 { animation-delay: 0.28s; }
  .reveal-delay-3 { animation-delay: 0.44s; }
  .reveal-delay-4 { animation-delay: 0.6s; }
  @media (prefers-reduced-motion: reduce) {
    .reveal { animation: none; }
    html { scroll-behavior: auto; }
  }

  /* === MENU SUBNAV (sub-pages) === */
  .menu-subnav {
    position: sticky;
    top: 57px;
    z-index: 90;
    background: rgba(14, 72, 112, 0.95);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border-bottom: 1px solid var(--hairline);
  }
  .menu-subnav-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 28px;
    padding: 14px 0 16px;
  }
  .menu-subnav a {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream-dim);
    text-decoration: none;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
  }
  .menu-subnav a:hover { color: var(--cream); }
  .menu-subnav a[aria-current="page"] {
    color: var(--cream);
    border-bottom-color: var(--cream);
  }
  .menu-subnav .is-disabled {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream-faint);
    opacity: 0.45;
  }
  .page-menu { padding-top: 72px; }
  .page-menu .menu-head { margin-bottom: 64px; }
  .page-menu .menu-head h2 { font-size: clamp(52px, 10vw, 120px); }

  .f-variants {
    list-style: none;
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    font-size: 13px;
    color: var(--cream-dim);
  }
  .f-variants li {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }
  .f-variants .num { color: var(--cream-soft); font-size: 15px; }
  .f-note {
    margin-top: 10px;
    font-size: 12.5px;
    font-style: italic;
    color: var(--cream-faint);
    line-height: 1.5;
  }
  .badge.cold {
    color: var(--cream-bright);
    border-color: rgba(241, 234, 202, 0.55);
    background: rgba(241, 234, 202, 0.08);
  }

  @media (max-width: 720px) {
    .menu-subnav { top: 52px; }
    .menu-subnav-inner { gap: 8px 16px; justify-content: flex-start; }
    .menu-subnav a { font-size: 10px; letter-spacing: 0.14em; }
  }

  .badge.veg { color: var(--cream); border-color: var(--cream-faint); }
  .badge.egg { color: var(--cream-bright); border-color: var(--cream); background: rgba(241, 234, 202, 0.1); }

  /* === AMBIENT MOTION (per-page themes) === */
  .page-ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .ambient-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    will-change: transform, opacity;
  }
  .ambient-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--hairline);
    opacity: 0;
  }
  .ambient-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cream-faint), transparent);
    opacity: 0;
  }

  @keyframes ambientDrift {
    0% { opacity: 0; transform: translateY(20px) translateX(0) scale(0.6); }
    15% { opacity: 0.55; }
    85% { opacity: 0.35; }
    100% { opacity: 0; transform: translateY(-120vh) translateX(40px) scale(1); }
  }
  @keyframes ambientSteam {
    0% { opacity: 0; transform: translateY(0) scaleX(0.8); }
    20% { opacity: 0.4; }
    100% { opacity: 0; transform: translateY(-80px) scaleX(1.2); }
  }
  @keyframes ambientPulse {
    0%, 100% { opacity: 0; transform: scale(0.85); }
    50% { opacity: 0.25; transform: scale(1.15); }
  }
  @keyframes ambientOrbit {
    0% { transform: rotate(0deg) translateX(0); opacity: 0.15; }
    50% { opacity: 0.35; }
    100% { transform: rotate(360deg) translateX(8px); opacity: 0.15; }
  }
  @keyframes ambientShimmer {
    0%, 100% { opacity: 0; transform: translateX(-30%) skewX(-8deg); }
    50% { opacity: 0.2; transform: translateX(30%) skewX(-8deg); }
  }

  .theme-gelato .ambient-particle {
    width: 8px; height: 8px;
    background: var(--cream-faint);
    animation: ambientDrift 18s linear infinite;
  }
  .theme-gelato .ambient-ring {
    width: 280px; height: 280px;
    top: 12%; right: -80px;
    animation: ambientPulse 9s ease-in-out infinite;
  }

  .theme-beverages .ambient-particle {
    width: 40px; height: 14px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: rgba(241, 234, 202, 0.12);
    filter: blur(1px);
    animation: ambientSteam 6s ease-in-out infinite;
  }
  .theme-beverages .ambient-ring {
    width: 120px; height: 120px;
    bottom: 20%; left: 8%;
    animation: ambientPulse 7s ease-in-out infinite 1s;
  }

  .theme-pastry .ambient-particle {
    width: 5px; height: 5px;
    background: rgba(252, 247, 231, 0.45);
    animation: ambientDrift 14s linear infinite;
  }
  .theme-pastry .ambient-line {
    width: 120px; top: 30%; left: 10%;
    animation: ambientShimmer 8s ease-in-out infinite;
  }

  .theme-savoury .ambient-particle {
    width: 4px; height: 4px;
    background: rgba(255, 200, 120, 0.55);
    box-shadow: 0 0 6px rgba(255, 180, 80, 0.4);
    animation: ambientDrift 10s linear infinite;
  }
  .theme-savoury .ambient-ring {
    width: 200px; height: 200px;
    bottom: 15%; right: 5%;
    border-color: rgba(255, 200, 120, 0.15);
    animation: ambientOrbit 24s linear infinite;
  }

  .theme-breakfast .ambient-particle {
    width: 6px; height: 6px;
    background: rgba(255, 220, 140, 0.5);
    animation: ambientDrift 16s linear infinite;
  }
  .theme-breakfast .ambient-line {
    width: 200px; top: 18%; right: 12%;
    animation: ambientShimmer 10s ease-in-out infinite 2s;
  }
  .theme-breakfast .ambient-ring {
    width: 320px; height: 320px;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    border-color: rgba(255, 220, 140, 0.12);
    animation: ambientPulse 11s ease-in-out infinite;
  }

  .theme-about .ambient-ring {
    width: 360px; height: 360px;
    top: 20%; left: -120px;
    animation: ambientOrbit 30s linear infinite;
  }
  .theme-about .ambient-particle {
    width: 10px; height: 10px;
    background: radial-gradient(circle, var(--cream-faint), transparent 70%);
    animation: ambientDrift 20s linear infinite;
  }

  .theme-visit .ambient-ring {
    width: 48px; height: 48px;
    border-color: var(--cream);
    animation: ambientPulse 3s ease-in-out infinite;
  }
  .theme-visit .ambient-line {
    width: 60%;
    max-width: 400px;
    bottom: 35%;
    left: 20%;
    animation: ambientShimmer 6s ease-in-out infinite;
  }

  .ambient-particle:nth-child(1) { left: 8%; animation-delay: 0s; }
  .ambient-particle:nth-child(2) { left: 22%; animation-delay: 2.5s; }
  .ambient-particle:nth-child(3) { left: 45%; animation-delay: 5s; }
  .ambient-particle:nth-child(4) { left: 68%; animation-delay: 1.2s; }
  .ambient-particle:nth-child(5) { left: 82%; animation-delay: 3.8s; }
  .ambient-particle:nth-child(6) { left: 55%; animation-delay: 7s; }
  .ambient-particle:nth-child(7) { left: 35%; animation-delay: 4.2s; }
  .ambient-particle:nth-child(8) { left: 92%; animation-delay: 6.5s; }

  .theme-visit .ambient-ring:nth-child(1) { top: 28%; left: 18%; animation-delay: 0s; }
  .theme-visit .ambient-ring:nth-child(2) { top: 45%; left: 72%; width: 32px; height: 32px; animation-delay: 1.2s; }
  .theme-visit .ambient-ring:nth-child(3) { top: 62%; left: 42%; width: 64px; height: 64px; animation-delay: 0.6s; }

  /* === CONTENT PAGES === */
  .content-page { position: relative; z-index: 2; }
  .content-hero {
    padding: 88px 0 72px;
    position: relative;
    overflow: hidden;
  }
  .content-hero h1 {
    font-size: clamp(42px, 8vw, 96px);
    line-height: 0.98;
    font-variation-settings: "opsz" 144, "SOFT" 50;
    color: var(--cream-bright);
    max-width: 16ch;
  }
  .content-hero .lead {
    font-size: clamp(17px, 2.2vw, 21px);
    line-height: 1.75;
    color: var(--cream-dim);
    max-width: 52ch;
    margin-top: 28px;
  }
  .content-hero .lead em {
    font-family: var(--display);
    font-style: italic;
    color: var(--cream-soft);
    font-variation-settings: "SOFT" 100;
  }

  .story-block {
    padding: 100px 0;
    border-top: 1px solid var(--hairline);
    background: var(--blue-deep);
  }
  .story-block.alt { background: var(--blue-mid); }
  .story-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
  }
  .story-grid h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-variation-settings: "opsz" 96, "SOFT" 60;
  }
  .story-grid p {
    font-size: 17px;
    line-height: 1.78;
    color: var(--cream-dim);
    margin-bottom: 20px;
  }
  .story-grid p:last-child { margin-bottom: 0; }

  .team-section { padding: 100px 0 120px; background: var(--blue-darker); }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
  }
  .team-card {
    border: 1px solid var(--hairline);
    padding: 36px 28px;
    text-align: center;
    background: rgba(8, 45, 74, 0.4);
    transition: transform 0.45s ease, border-color 0.45s ease;
  }
  .team-card:hover {
    transform: translateY(-6px);
    border-color: var(--hairline-strong);
  }
  .team-avatar {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    border-radius: 50%;
    border: 1px solid var(--hairline-strong);
    overflow: hidden;
    background: radial-gradient(circle at 30% 25%, rgba(241, 234, 202, 0.2), var(--blue-darkest));
  }
  .team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .team-card h3 {
    font-family: var(--display);
    font-size: 22px;
    color: var(--cream-soft);
    margin-bottom: 6px;
  }
  .team-card p { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-faint); }

  .visit-page { padding: 80px 0 120px; }
  .visit-callout {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
  }
  .visit-callout h2 {
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: 24px;
    font-variation-settings: "opsz" 96, "SOFT" 70;
  }
  .hours-panel {
    max-width: 520px;
    margin: 0 auto;
    border: 1px solid var(--hairline);
    padding: 40px 36px;
    background: rgba(8, 45, 74, 0.35);
  }
  .hours-panel h3 {
    font-family: var(--display);
    font-size: 28px;
    font-style: italic;
    margin-bottom: 24px;
    text-align: center;
    color: var(--cream-soft);
  }
  .hours-panel p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--cream-dim);
    text-align: center;
    margin-bottom: 28px;
  }
  .hours-block {
    padding: 20px 0;
    border-top: 1px solid var(--hairline);
    text-align: center;
  }
  .hours-block .days {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream-faint);
    margin-bottom: 8px;
  }
  .hours-block .times {
    font-family: var(--display);
    font-size: 26px;
    color: var(--cream-bright);
    font-variant-numeric: tabular-nums;
  }

  .breakfast-intro {
    padding: 72px 0 48px;
    border-bottom: 1px solid var(--hairline);
  }
  .breakfast-intro p {
    font-size: 16px;
    line-height: 1.72;
    color: var(--cream-dim);
    max-width: 58ch;
    margin-bottom: 16px;
  }
  .tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0 0;
  }
  .tier-card {
    border: 1px solid var(--hairline);
    padding: 32px 28px;
    background: rgba(8, 45, 74, 0.25);
    transition: border-color 0.4s ease, transform 0.4s ease;
  }
  .tier-card:hover {
    border-color: var(--hairline-strong);
    transform: translateY(-4px);
  }
  .tier-card .tier-label {
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cream-faint);
    margin-bottom: 12px;
  }
  .tier-card h3 {
    font-family: var(--display);
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--cream-soft);
  }
  .tier-card .tier-price {
    font-family: var(--display);
    font-size: 32px;
    color: var(--cream-bright);
    margin-bottom: 20px;
  }
  .tier-card ul {
    list-style: none;
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--cream-dim);
  }
  .tier-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--hairline);
  }
  .tier-card ul li:last-child { border-bottom: none; }
  .tier-card .tier-note {
    margin-top: 16px;
    font-size: 12.5px;
    font-style: italic;
    color: var(--cream-faint);
    line-height: 1.55;
  }

  @media (max-width: 900px) {
    .story-grid { grid-template-columns: 1fr; gap: 32px; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .tier-grid { grid-template-columns: 1fr; }
    .content-hero { padding: 64px 0 48px; }
    .gallery-main { height: 320px; }
    .gallery-side-item { height: 158px; }
    .photo-strip-item img { height: 220px; }
  }

  @media (max-width: 720px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-main { height: 280px; }
    .gallery-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-side-item { height: 180px; }
    .photo-strip { grid-template-columns: 1fr; }
    .photo-strip-item img { height: 260px; }
    .team-grid { grid-template-columns: 1fr; max-width: 300px; margin-left: auto; margin-right: auto; }
  }

  @media (max-width: 600px) {
    .gallery-main { height: 220px; }
    .gallery-side { grid-template-columns: 1fr 1fr; }
    .gallery-side-item { height: 140px; }
    .photo-strip-item img { height: 200px; }
    .video-placeholder-wrap { margin-top: 32px; }
  }

  /* ── HERO LAYOUT: text left, cards right ── */
  .hero-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: center;
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero-cards {
    position: relative;
    height: 480px;
    z-index: 2;
  }

  /* ── GELATO CARDS ── */
  .card-pack-item {
    position: absolute;
    width: 240px;
    height: 340px;
    left: calc(50% - 120px);
    top: 10px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 80px -12px rgba(5, 29, 51, 0.8);
    transform-origin: 50% 100%;
  }

  .card-pack-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .card-cup {
    animation:
      cardFanLeft 1.1s cubic-bezier(0.34, 1.4, 0.64, 1) 0.4s both,
      cardFloat1 5s ease-in-out 1.6s infinite;
    z-index: 1;
  }

  .card-cone {
    animation:
      cardFanRight 1.1s cubic-bezier(0.34, 1.4, 0.64, 1) 0.6s both,
      cardFloat2 6s ease-in-out 1.9s infinite;
    z-index: 2;
  }

  @keyframes cardFanLeft {
    from { transform: rotate(0deg); opacity: 0.5; }
    to { transform: rotate(-14deg); opacity: 1; }
  }

  @keyframes cardFanRight {
    from { transform: rotate(0deg); opacity: 0.5; }
    to { transform: rotate(8deg); opacity: 1; }
  }

  @keyframes cardFloat1 {
    0%, 100% { transform: rotate(-14deg) translateY(0px); }
    50% { transform: rotate(-12deg) translateY(-18px); }
  }

  @keyframes cardFloat2 {
    0%, 100% { transform: rotate(8deg) translateY(0px); }
    50% { transform: rotate(10deg) translateY(-22px); }
  }

  /* ── HERO TEXT DROP FROM ABOVE ── */
  @keyframes dropFromAbove {
    from { transform: translateY(-56px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .hero .hero-meta { animation: dropFromAbove 0.7s cubic-bezier(0.2, 0.9, 0.3, 1) 0.1s both; }
  .hero h1 { animation: dropFromAbove 0.85s cubic-bezier(0.2, 0.9, 0.3, 1) 0.28s both; }
  .hero .hero-foot { animation: dropFromAbove 0.7s cubic-bezier(0.2, 0.9, 0.3, 1) 0.5s both; }

  @media (prefers-reduced-motion: reduce) {
    .ambient-particle, .ambient-ring, .ambient-line, .team-avatar {
      animation: none !important;
      opacity: 0.12 !important;
    }
    .reveal-on-scroll { opacity: 1; transform: none; }
    .card-cup { animation: none !important; transform: rotate(-14deg); opacity: 1; }
    .card-cone { animation: none !important; transform: rotate(8deg); opacity: 1; }
    .hero .hero-meta, .hero h1, .hero .hero-foot { animation: none !important; opacity: 1; transform: none; }
  }

  @keyframes fadeInView {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
  }
  .reveal-on-scroll.in-view {
    animation: fadeInView 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }
  .flavour.reveal-on-scroll:nth-child(odd) { animation-delay: 0.05s; }
  .flavour.reveal-on-scroll:nth-child(even) { animation-delay: 0.12s; }
