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

  :root {
    --cream: #FAF5EC;
    --warm-white: #FDF9F3;
    --honey: #C8853A;
    --honey-light: #E0A85A;
    --honey-dark: #8B5A1E;
    --espresso: #2A1A0E;
    --milk: #F5ECD8;
    --sage: #7A8C6E;
    --blush: #E8CDB5;
    --line-soft: rgba(42, 26, 14, 0.1);
    --gold-line: rgba(224, 168, 90, 0.38);
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--espresso);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

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

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(250, 245, 236, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(42, 26, 14, 0.05);
    transition: all 0.3s ease;
  }

  .nav-logo {
    height: 62px;
  }

  .nav-logo img {
    height: 100%;
    width: auto;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--espresso);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
  }

  .nav-links a:hover { opacity: 1; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    background: var(--warm-white);
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10rem 5rem 6rem 8rem;
    position: relative;
    z-index: 2;
    color: var(--espresso);
    background: var(--cream);
  }

  .hero-left::after {
    display: none;
  }

  .hero-region {
    margin-bottom: 1.2rem;
    color: var(--honey);
    font-size: 0.64rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1s ease 0.2s forwards;
  }

  .hero-eyebrow {
    max-width: 500px;
    margin-bottom: 1.25rem;
    color: var(--espresso);
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
    text-transform: none;
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4.4rem, 6.7vw, 7.8rem);
    font-weight: 300;
    line-height: 0.88;
    letter-spacing: -0.035em;
    text-transform: none;
    color: var(--espresso);
    margin-bottom: 2.25rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.4s forwards;
  }

  .hero-title em {
    margin-top: 0.35rem;
    font-style: italic;
    color: var(--honey-light);
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.52em;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
  }

  .hero-desc {
    max-width: 520px;
    line-height: 1.7;
    font-size: 0.96rem;
    color: var(--espresso);
    opacity: 0;
    animation: fadeUp 1s ease 0.75s forwards;
    margin-bottom: 2.5rem;
  }

  .hero-cta {
    display: inline-flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
  }

  .btn-primary {
    background: var(--espresso);
    color: var(--cream);
    padding: 1rem 2.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
  }

  .hero .btn-primary {
    background: var(--espresso);
  }

  .hero .btn-primary:hover {
    background: var(--honey);
  }

  .btn-primary:hover {
    background: var(--honey-dark);
    transform: translateY(-2px);
  }

  .btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--espresso);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
  }

  .btn-secondary::after {
    content: '→';
    transition: transform 0.3s;
  }

  .btn-secondary:hover { opacity: 1; }
  .btn-secondary:hover::after { transform: translateX(4px); }

  .hero .btn-secondary {
    color: var(--espresso);
  }

  .hero-right {
    position: relative;
    background: var(--milk);
    overflow: hidden;
    padding-top: 6rem;
  }

  .hero-visual {
    position: absolute;
    inset: 6rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-gallery {
    position: relative;
    width: 75%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(42, 26, 14, 0.15);
    clip-path: none;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1.4s ease 0.6s forwards;
  }

  .cart-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-gallery-slide {
    display: block;
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.045);
    transition:
      opacity 1.15s cubic-bezier(0.45, 0, 0.55, 1),
      transform 4.5s ease-out;
  }

  .hero-gallery-slide.is-active {
    opacity: 1;
    transform: scale(1);
  }

  .hero-gallery-slide--right .cart-photo { object-position: 68% center; }

  .hero-gallery-dots {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    z-index: 2;
    display: flex;
    gap: 0.55rem;
    transform: translateX(-50%);
  }

  .hero-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cream);
    opacity: 0.45;
    box-shadow: 0 1px 4px rgba(42, 26, 14, 0.25);
    transition:
      opacity 0.8s ease,
      transform 0.8s ease;
  }

  .hero-gallery-dot.is-active {
    opacity: 1;
    transform: scale(1.25);
  }

  .honey-drip {
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    opacity: 0.25;
  }

  .circle-accent {
    display: block;
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: var(--honey-light);
    opacity: 0.15;
  }

  .hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--espresso);
    opacity: 0.4;
    z-index: 10;
    animation: bounce 2s ease-in-out infinite;
  }

  .hero-scroll-hint::after {
    content: '';
    width: 1px;
    height: 40px;
    background: var(--espresso);
  }

  /* ── ABOUT / STORY ── */
  .story {
    padding: 10rem 8rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8rem;
    align-items: center;
    background: var(--warm-white);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
  }

  .story-label {
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--honey);
    margin-bottom: 1.5rem;
  }

  .story-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
  }

  .story-title em { font-style: italic; color: var(--honey); }

  .story-body {
    line-height: 1.9;
    font-size: 0.92rem;
    opacity: 0.85;
    max-width: 480px;
  }

  .story-body p + p { margin-top: 1.2rem; }

  .story-visual {
    position: relative;
  }

  .story-card {
    background: var(--milk);
    padding: 4rem 3rem;
    position: relative;
  }

  .story-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 12rem;
    color: var(--honey-light);
    opacity: 0.25;
    position: absolute;
    top: -2rem;
    left: 1rem;
    line-height: 1;
  }

  .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: var(--espresso);
    position: relative;
    z-index: 1;
  }

  .quote-attr {
    margin-top: 1.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--honey);
  }

  .story-verse {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139, 90, 30, 0.2);
    position: relative;
    z-index: 1;
  }

  .story-verse p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--espresso);
    opacity: 0.82;
  }

  .story-verse cite {
    display: block;
    margin-top: 0.65rem;
    color: var(--honey-dark);
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    font-style: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .story-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 100px;
    height: 100px;
    background: var(--honey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .badge-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    font-style: italic;
    color: var(--cream);
    line-height: 1.4;
    padding: 0.5rem;
  }

  /* ── EVENTS ── */
  .events {
    padding: 7rem 8rem;
    background: linear-gradient(145deg, #24150c 0%, #3a2314 52%, #28170d 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(250, 245, 236, 0.14);
  }

  .events::before {
    content: '';
    position: absolute;
    inset: 2rem;
    border: 1px solid rgba(224, 168, 90, 0.16);
    pointer-events: none;
  }

  .events-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
  }

  .events-label {
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--honey-light);
    margin-bottom: 1.5rem;
  }

  .events-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--cream);
  }

  .events-title em { font-style: italic; color: var(--honey-light); }

  .events-intro {
    max-width: 620px;
    margin-top: 1.4rem;
    font-size: 0.88rem;
    line-height: 1.85;
    opacity: 0.7;
  }

  .events-link {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--honey-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    padding-bottom: 0.5rem;
    transition: gap 0.3s;
  }

  .events-link:hover { gap: 1rem; }

  .events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
  }

  .event-card {
    min-height: 230px;
    background: rgba(250, 245, 236, 0.06);
    padding: 1.5rem;
    border: 1px solid var(--gold-line);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.4s, transform 0.4s, border-color 0.4s;
    cursor: default;
  }

  .event-card:hover {
    background: rgba(200, 133, 58, 0.18);
    border-color: rgba(224, 168, 90, 0.72);
    transform: translateY(-6px);
  }

  .event-icon {
    display: none;
  }

  .event-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--honey-light);
    opacity: 0.36;
    line-height: 1;
    margin-bottom: auto;
  }

  .event-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.7rem;
  }

  .event-desc {
    font-size: 0.76rem;
    line-height: 1.58;
    opacity: 0.68;
  }

  /* ── CLIENTS ── */
  .clients {
    padding: 6.5rem 8rem;
    background:
      linear-gradient(rgba(42, 26, 14, 0.97), rgba(42, 26, 14, 0.99)),
      url("../images/hero-wedding-venue.jpg") center / cover;
    color: var(--cream);
    border-bottom: 1px solid rgba(250, 245, 236, 0.14);
  }

  .clients-header {
    max-width: 720px;
    margin-bottom: 3rem;
  }

  .clients-label {
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--honey);
    margin-bottom: 1.5rem;
  }

  .clients-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
  }

  .clients-title em {
    font-style: italic;
    color: var(--honey);
  }

  .clients-intro {
    max-width: 620px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.9;
    opacity: 0.7;
  }

  .client-category {
    padding: 2rem 0;
    border-top: 1px solid rgba(250, 245, 236, 0.14);
  }

  .client-marquee {
    margin: 1.75rem -8rem 0;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  }

  .client-marquee-label {
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(250, 245, 236, 0.14);
    color: var(--honey-light);
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-align: center;
    text-transform: uppercase;
  }

  .client-marquee-track {
    display: flex;
    width: max-content;
    animation: clientLogoScroll 48s linear infinite;
  }

  .client-marquee:hover .client-marquee-track {
    animation-play-state: paused;
  }

  .client-logo-set {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 1.5rem;
    padding: 0 0.75rem;
  }

  .client-logo-set .client-logo-card {
    flex: 0 0 168px;
  }

  @keyframes clientLogoScroll {
    to { transform: translateX(-50%); }
  }

  .client-category-heading {
    display: flex;
    align-items: baseline;
    gap: 1.25rem;
    margin-bottom: 1.1rem;
  }

  .client-category-number {
    color: var(--honey);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
  }

  .client-category-heading h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
  }

  .client-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem 1rem;
    background: transparent;
    border: 0;
  }

  .client-logo-grid--compact {
    grid-template-columns: repeat(3, 1fr);
  }

  .client-logo-card {
    min-height: 76px;
    padding: 0.75rem;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.78;
    color: inherit;
    text-decoration: none;
    position: relative;
  }

  .client-logo-card:hover {
    background: transparent;
    transform: translateY(-2px);
    opacity: 1;
  }

  .client-logo-card:focus-visible {
    outline: 2px solid var(--honey-light);
    outline-offset: 3px;
    opacity: 1;
  }

  .client-logo-card--category-end::after {
    content: '';
    width: 1px;
    height: 34px;
    background: rgba(250, 245, 236, 0.2);
    position: absolute;
    right: -0.8rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .client-logo-card img {
    display: block;
    max-width: 140px;
    width: 100%;
    max-height: 56px;
    object-fit: contain;
    filter: grayscale(1) brightness(0) invert(1);
    opacity: 1;
    transition: filter 0.3s ease, opacity 0.3s ease;
  }

  .client-logo-card:hover img {
    filter: grayscale(1) brightness(0) invert(1);
    opacity: 1;
  }

  .client-logo-card--original {
    background: transparent;
  }

  .client-logo-card--original:hover {
    background: transparent;
  }

  .client-logo-card--original img,
  .client-logo-card--original:hover img {
    max-width: 88px;
    max-height: 68px;
    filter: grayscale(1) brightness(0) invert(1);
    opacity: 1;
  }

  .client-logo-card--miyu img,
  .client-logo-card--miyu:hover img {
    max-width: 64px;
    max-height: 68px;
  }

  .client-wordmark {
    flex-direction: column;
    color: #3d352f;
    line-height: 1;
  }

  .client-wordmark strong { font-weight: 400; }
  .client-wordmark span, .client-wordmark small { display: block; }
  .client-wordmark--fashion strong { font-size: 1.55rem; letter-spacing: 0.08em; }
  .client-wordmark--fashion span { margin-top: 0.35rem; font-size: 0.58rem; letter-spacing: 0.38em; }
  .client-wordmark--health { color: #003848; align-items: flex-start; text-align: left; padding-left: 3rem; }
  .client-wordmark--health strong { font-size: 0.95rem; font-weight: 600; }
  .client-wordmark--health span { margin-top: 0.2rem; font-size: 0.95rem; }
  .client-wordmark--serif strong { font-family: Georgia, serif; font-size: 1rem; letter-spacing: 0.14em; }
  .client-wordmark--serif span { margin-top: 0.35rem; font-size: 0.55rem; letter-spacing: 0.45em; }
  .client-wordmark--bold strong { font-size: 1.45rem; font-weight: 600; letter-spacing: -0.04em; }
  .client-wordmark--bold span { margin-top: 0.3rem; font-size: 0.58rem; letter-spacing: 0.3em; }
  .client-wordmark--naz span, .client-wordmark--naz small { font-size: 0.5rem; letter-spacing: 0.35em; }
  .client-wordmark--naz strong { margin: 0.15rem 0; font-size: 1.4rem; font-weight: 600; letter-spacing: 0.08em; }
  .client-wordmark--school strong { font-family: Georgia, serif; font-size: 0.95rem; }
  .client-wordmark--school span { margin-top: 0.4rem; font-size: 0.62rem; letter-spacing: 0.13em; text-transform: uppercase; }
  .client-wordmark--gallery strong { font-family: Georgia, serif; font-size: 1rem; letter-spacing: 0.16em; }
  .client-wordmark--gallery span { margin-top: 0.3rem; font-size: 0.58rem; letter-spacing: 0.42em; }

  .client-wordmark--community img {
    width: 28px;
    height: 28px;
    margin-bottom: 0.3rem;
  }

  .client-wordmark--community span {
    font-family: Georgia, serif;
    font-size: 0.82rem;
  }

  .client-wordmark--community small {
    margin-top: 0.3rem;
    font-size: 0.5rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .client-marquee .client-wordmark {
    color: var(--cream);
    opacity: 0.82;
  }

  .client-marquee .client-wordmark:hover {
    opacity: 1;
  }

  /* ── MENU ── */
  .menu {
    padding: 10rem 8rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line-soft);
  }

  .menu-header {
    text-align: center;
    margin-bottom: 6rem;
  }

  .menu-label {
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--honey);
    margin-bottom: 1.5rem;
  }

  .menu-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 300;
    line-height: 1;
  }

  .menu-title em { font-style: italic; color: var(--honey); }

  .menu-subtitle {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.6;
    letter-spacing: 0.05em;
  }

  .package-inclusions {
    margin-bottom: 3rem;
    padding: 1.8rem 2rem;
    border: 1px solid var(--gold-line);
    background: rgba(245, 236, 216, 0.45);
  }

  .package-inclusions-label {
    margin-bottom: 1rem;
    color: var(--honey-dark);
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-align: center;
    text-transform: uppercase;
  }

  .package-inclusions-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem 1.8rem;
  }

  .package-inclusions-list span {
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    opacity: 0.72;
  }

  .package-inclusions-list span::before {
    content: '•';
    margin-right: 0.55rem;
    color: var(--honey);
  }

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

  .package-card {
    padding: 3.5rem;
    background: var(--warm-white);
    border: 1px solid var(--line-soft);
    position: relative;
  }

  .package-card--premium {
    background: var(--espresso);
    border-color: var(--espresso);
    color: var(--cream);
  }

  .package-card-heading {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line-soft);
  }

  .package-card--premium .package-card-heading {
    border-color: rgba(250, 245, 236, 0.15);
  }

  .package-kicker {
    margin-bottom: 0.8rem;
    color: var(--honey);
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  .package-card-heading h3,
  .cocoa-bar-copy h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    font-weight: 300;
    line-height: 1;
  }

  .package-card-heading h3 em,
  .cocoa-bar-copy h3 em {
    font-style: italic;
    color: var(--honey);
  }

  .package-card-heading > p:last-child,
  .cocoa-bar-copy > p:last-child {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.75;
    opacity: 0.68;
  }

  .package-drinks {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 1.5rem;
  }

  .package-drinks li {
    padding: 0.85rem 1.5rem 0.85rem 1rem;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.94rem;
    position: relative;
  }

  .package-card--premium .package-drinks li {
    border-color: rgba(250, 245, 236, 0.12);
  }

  .package-drinks li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--honey);
    position: absolute;
    left: 0;
    top: 1.25rem;
  }

  .cocoa-bar {
    min-height: 380px;
    margin-top: 2rem;
    padding: 3rem;
    background: linear-gradient(120deg, #ead8bc, #f7efe2);
    display: grid;
    grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
    gap: 4.5rem;
    align-items: center;
    overflow: hidden;
  }

  .cocoa-bar-photos {
    width: min(100%, 430px);
    height: 320px;
    position: relative;
    justify-self: center;
  }

  .cocoa-photo {
    position: absolute;
    display: block;
    object-fit: cover;
    box-shadow: 0 16px 38px rgba(42, 26, 14, 0.18);
  }

  .cocoa-photo--main {
    inset: 0 auto 0 0;
    width: 68%;
    height: 100%;
    border: 7px solid rgba(253, 249, 243, 0.9);
  }

  .cocoa-photo--detail {
    width: 58%;
    height: 50%;
    right: 0;
    bottom: 7%;
    border: 6px solid var(--warm-white);
  }

  .cocoa-bar-copy {
    max-width: 560px;
  }

  .seasonal-extras {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.6rem;
  }

  .seasonal-extras span {
    padding: 0.65rem 1rem;
    border: 1px solid rgba(139, 90, 30, 0.28);
    background: rgba(253, 249, 243, 0.62);
    color: var(--honey-dark);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  /* ── PROCESS ── */
  .process {
    padding: 10rem 8rem;
    background: var(--milk);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
  }

  .process-header {
    margin-bottom: 6rem;
    max-width: 600px;
  }

  .process-label {
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--honey);
    margin-bottom: 1.5rem;
  }

  .process-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
  }

  .process-title em { font-style: italic; color: var(--honey); }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }

  .process-step {
    position: relative;
  }

  .step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: var(--honey-light);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
  }

  .step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
  }

  .step-desc {
    font-size: 0.88rem;
    line-height: 1.8;
    opacity: 0.7;
  }

  .step-line {
    position: absolute;
    top: 2.5rem;
    right: -2rem;
    width: 4rem;
    height: 1px;
    background: var(--honey-light);
    opacity: 0.4;
  }

  .process-step:last-child .step-line { display: none; }

  /* ── PHOTO GALLERY ── */
  .photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    height: 400px;
    overflow: hidden;
  }

  .gallery-photo {
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
  }

  .gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .gallery-photo:hover img {
    transform: scale(1.1);
  }

  .gallery-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 26, 14, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
  }

  .gallery-photo:hover .gallery-photo-overlay {
    opacity: 1;
  }

  .gallery-photo-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--cream);
  }

  /* ── GOOGLE REVIEWS ── */
  .reviews {
    scroll-margin-top: 5.8rem;
    padding: 3.5rem 8rem;
    color: var(--espresso);
    background: var(--warm-white);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 720px);
    gap: clamp(3.5rem, 5vw, 5rem);
    justify-content: center;
    align-items: center;
  }

  .reviews-header {
    width: 100%;
    display: block;
    margin: 0;
  }

  .reviews-label {
    margin-bottom: 0.8rem;
    color: var(--honey);
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
  }

  .reviews-title {
    max-width: 680px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 2.8vw, 3rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.015em;
  }

  .reviews-title em {
    display: inline;
    color: var(--honey);
    font-weight: 300;
  }

  .reviews-copy > p:last-child {
    max-width: 390px;
    margin-top: 0.8rem;
    font-size: 0.82rem;
    line-height: 1.65;
    opacity: 0.72;
  }

  .reviews-score {
    width: 230px;
    margin-top: 1.4rem;
    min-height: 0;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(139, 90, 30, 0.32);
    color: var(--espresso);
    text-align: left;
    text-decoration: none;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.8rem;
    align-items: center;
    background: rgba(253, 249, 243, 0.66);
    transition: transform 0.35s ease, background 0.35s ease;
  }

  .reviews-score:hover {
    transform: translateY(-6px);
    background: var(--warm-white);
  }

  .reviews-stars {
    grid-column: 2;
    margin: 0;
    color: var(--honey);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }

  .reviews-score strong {
    grid-column: 1;
    grid-row: 1 / span 2;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 0.9;
  }

  .reviews-score > span {
    grid-column: 2;
    margin: 0;
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.7;
  }

  .reviews-score small {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
    color: var(--honey-dark);
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .reviews-score small b {
    margin-left: 0.4rem;
    font-weight: 400;
    transition: margin-left 0.25s ease;
  }

  .reviews-score:hover small b {
    margin-left: 0.75rem;
  }

  .reviews-carousel {
    max-width: 760px;
    width: 100%;
    margin: 0;
    justify-self: center;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 1rem;
    align-items: center;
  }

  .reviews-viewport {
    overflow: hidden;
  }

  .reviews-track {
    position: relative;
  }

  .review-card {
    height: 218px;
    padding: 1.55rem 1.8rem;
    border: 1px solid rgba(139, 90, 30, 0.24);
    background: rgba(253, 249, 243, 0.82);
    display: none;
    flex-direction: column;
    animation: reviewFade 0.35s ease;
  }

  .review-card.is-active {
    display: flex;
  }

  .review-card:hover {
    border-color: rgba(139, 90, 30, 0.46);
    background: var(--warm-white);
  }

  .review-card-stars {
    margin-bottom: 0.75rem;
    color: var(--honey);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
  }

  .review-card blockquote {
    margin: 0 0 1rem;
    color: var(--espresso);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.02rem;
    font-weight: 300;
    line-height: 1.48;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .review-card blockquote p + p {
    margin-top: 0.65rem;
  }

  .review-card-footer {
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px solid var(--line-soft);
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }

  .review-avatar {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    color: var(--cream);
    background: var(--honey-light);
    display: grid;
    place-items: center;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.08em;
  }

  .review-card-footer > span:last-child {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }

  .review-card-footer strong {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
  }

  .review-card-footer small {
    font-size: 0.68rem;
    opacity: 0.55;
  }

  .reviews-source {
    margin-top: 1.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-align: center;
    opacity: 0.48;
  }

  .review-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(139, 90, 30, 0.32);
    border-radius: 50%;
    color: var(--espresso);
    background: rgba(253, 249, 243, 0.72);
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  }

  .review-arrow:hover,
  .review-arrow:focus-visible {
    color: var(--cream);
    background: var(--espresso);
    transform: scale(1.06);
  }

  .review-arrow:focus-visible,
  .review-dot:focus-visible {
    outline: 2px solid var(--honey);
    outline-offset: 3px;
  }

  .review-dots {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
  }

  .review-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(42, 26, 14, 0.24);
    cursor: pointer;
    transition: width 0.25s ease, border-radius 0.25s ease, background 0.25s ease;
  }

  .review-dot.is-active {
    width: 24px;
    border-radius: 999px;
    background: var(--honey);
  }

  @keyframes reviewFade {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
  }


  /* ── CONTACT ── */
  .contact {
    padding: 10rem 8rem;
    background: var(--warm-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
    border-top: 1px solid var(--line-soft);
  }

  .contact-label {
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--honey);
    margin-bottom: 1.5rem;
  }

  .contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 4vw, 4.5rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 2rem;
  }

  .contact-title em { font-style: italic; color: var(--honey); }

  .contact-info {
    font-size: 0.88rem;
    line-height: 1.9;
    opacity: 0.75;
    margin-bottom: 3rem;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
  }

  .contact-detail-icon {
    width: 36px;
    height: 36px;
    background: var(--milk);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
  }

  .contact-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 42px;
    padding: 0.75rem 1rem;
    background: var(--milk);
    color: var(--espresso);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s, transform 0.2s;
  }

  .contact-social-link:hover {
    background: var(--honey);
    color: var(--cream);
    transform: translateY(-2px);
  }

  .contact-social-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }

  .form-container { }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    opacity: 0.6;
  }

  .form-input, .form-select, .form-textarea {
    width: 100%;
    background: var(--milk);
    border: 1px solid transparent;
    padding: 1rem 1.2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--espresso);
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    appearance: none;
  }

  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--honey);
    background: var(--warm-white);
  }

  .form-textarea { resize: vertical; min-height: 120px; }

  .form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .form-status {
    min-height: 1.5rem;
    margin-top: 0.9rem;
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .form-status--success,
  .form-status--error {
    padding: 0.9rem 1rem;
    font-weight: 400;
  }

  .form-status--success {
    color: var(--espresso);
    background: var(--milk);
    border-left: 3px solid var(--honey-dark);
  }

  .form-status--error {
    color: #701f16;
    background: #f7e3df;
    border-left: 3px solid #a83a2e;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .btn-submit {
    width: 100%;
    background: var(--honey);
    color: var(--cream);
    border: none;
    padding: 1.2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 0.5rem;
  }

  .btn-submit:hover {
    background: var(--honey-dark);
    transform: translateY(-2px);
  }

  .btn-submit:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--espresso);
    color: var(--cream);
    padding: 4rem 8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    color: var(--honey-light);
  }

  .footer-copy {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    opacity: 0.4;
  }

  .footer-social {
    display: flex;
    gap: 1.5rem;
  }

  .footer-social a {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.4;
    text-decoration: none;
    transition: opacity 0.3s;
  }

  .footer-social a:hover { opacity: 1; }

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

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }

  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-gallery-slide,
    .hero-gallery-dot {
      animation: none;
      transition: none;
    }

    .hero-gallery-slide:not(.is-active) {
      opacity: 0;
    }

    .client-marquee-track {
      animation: none;
      flex-wrap: wrap;
      width: auto;
      justify-content: center;
    }

    .client-logo-set[aria-hidden="true"] { display: none; }
  }

  /* ── DIVIDER ── */
  .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--honey-light), transparent);
    opacity: 0.3;
    margin: 0 8rem;
  }

  /* ── STATS BAND ── */
  .stats-band {
    background: var(--honey);
    padding: 3rem 8rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
  }

  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--cream);
    line-height: 1;
  }

  .stat-link {
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .stat-link:hover {
    opacity: 0.85;
    transform: translateY(-3px);
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.75;
    margin-top: 0.5rem;
  }

  /* Scroll-reveal utility */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.15s; }
  .reveal-delay-2 { transition-delay: 0.3s; }
  .reveal-delay-3 { transition-delay: 0.45s; }
  .reveal-delay-4 { transition-delay: 0.6s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 0.85rem 2rem; }
    .nav-logo { height: 54px; }
    .hero {
      min-height: auto;
      grid-template-columns: 1fr;
      grid-template-rows: auto auto;
    }
    .hero-left {
      min-height: 730px;
      padding: 9rem 2.5rem 5rem;
    }
    .hero-left::after { display: none; }
    .hero-right {
      display: block;
      min-height: min(620px, 92vw);
      padding: 0 2.5rem 4rem;
      background: var(--cream);
    }
    .hero-visual {
      position: relative;
      inset: auto;
    }
    .hero-gallery {
      width: min(100%, 520px);
      max-width: 520px;
      aspect-ratio: 1 / 1;
      clip-path: none;
      animation-delay: 0.15s;
    }
    .circle-accent { display: none; }
    .hero-scroll-hint { display: none; }
    .story { grid-template-columns: 1fr; padding: 6rem 2.5rem; gap: 4rem; }
    .events { padding: 6rem 2.5rem; }
    .events-grid { grid-template-columns: 1fr 1fr; }
    .events-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .events::before { inset: 1rem; }
    .event-card { min-height: 205px; padding: 1.5rem; }
    .client-marquee { margin-inline: -2.5rem; }
    .client-logo-grid { grid-template-columns: repeat(4, 1fr); }
    .client-logo-grid--compact { grid-template-columns: repeat(3, 1fr); }
    .menu { padding: 6rem 2.5rem; }
    .packages-grid { grid-template-columns: 1fr; }
    .cocoa-bar { grid-template-columns: 1fr; gap: 2.5rem; }
    .cocoa-bar-photos { width: min(100%, 480px); height: 330px; }
    .process { padding: 6rem 2.5rem; }
    .process-steps { grid-template-columns: 1fr; gap: 2rem; }
    .step-line { display: none; }
    .contact { grid-template-columns: 1fr; padding: 6rem 2.5rem; gap: 4rem; }
    .reviews { grid-template-columns: 1fr; padding: 4rem 2.5rem; gap: 2.5rem; }
    .reviews-header { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; }
    .reviews-score { width: 220px; min-height: 0; margin-top: 0; }
    .stats-band { grid-template-columns: repeat(3, 1fr); padding: 3rem 2.5rem; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 3rem 2.5rem; }
    .divider { margin: 0 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    nav { padding-inline: 1.25rem; }
    .nav-logo { height: 48px; }
    .nav-links { gap: 1rem; }
    .nav-links li:nth-child(1),
    .nav-links li:nth-child(2) { display: none; }
    .hero-left { min-height: 690px; padding: 8rem 1.5rem 4rem; }
    .hero-right {
      min-height: calc(100vw + 1.25rem);
      padding: 0 1.25rem 2.5rem;
    }
    .hero-title { font-size: clamp(3.3rem, 17vw, 5.3rem); }
    .hero-cta { flex-direction: column; align-items: flex-start; }
    .stats-band { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .event-card { min-height: 180px; }
    .client-logo-grid, .client-logo-grid--compact { grid-template-columns: repeat(2, 1fr); }
    .client-logo-card { min-height: 68px; padding: 0.6rem; }
    .client-logo-set { gap: 0.6rem; }
    .client-logo-set .client-logo-card { flex-basis: 145px; }
    .package-card, .cocoa-bar { padding: 2rem; }
    .cocoa-bar-photos { height: 280px; }
    .package-drinks { grid-template-columns: 1fr; }
    .reviews { padding: 3.5rem 1.25rem; }
    .reviews-header { display: block; }
    .reviews-score { margin-top: 1.2rem; }
    .reviews-carousel { grid-template-columns: 38px minmax(0, 1fr) 38px; gap: 0.5rem; }
    .review-arrow { width: 38px; height: 38px; }
    .review-card { height: 220px; min-height: 0; padding: 1.4rem; }
    .review-card blockquote { font-size: 1rem; }
  }
