:root {
    --navy: #002856;
    --navy-deep: #001631;
    --navy-soft: #0a3566;
    --cream: #F8F3CE;
    --cream-soft: #FDF9E4;
    --gold: #DDA853;
    --gold-soft: #E8BC6E;
    --gold-deep: #B8893E;
    --ink: #0d1f3a;
    --mist: rgba(248, 243, 206, 0.06);
    --line: rgba(221, 168, 83, 0.18);
    --line-strong: rgba(221, 168, 83, 0.35);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--navy-deep);
    color: var(--cream);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* Ambient background */
  .ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
      radial-gradient(ellipse 80% 50% at 70% 0%, rgba(221, 168, 83, 0.18), transparent 60%),
      radial-gradient(ellipse 60% 40% at 10% 100%, rgba(221, 168, 83, 0.08), transparent 50%),
      linear-gradient(180deg, #001631 0%, #00224a 40%, #001a3a 100%);
  }

  .grain {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.04;
    mix-blend-mode: overlay;
    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.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  /* Typography system */
  .serif { font-family: 'Fraunces', serif; font-weight: 400; }
  .gothic { font-family: 'UnifrakturCook', serif; }
  .eyebrow {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin-right: 14px;
    transform: translateY(-2px);
  }

  /* Layout */
  .wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 64px);
    position: relative;
    z-index: 2;
  }

  /* Navigation */
  nav.top {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 22px 0;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(0, 22, 49, 0.55);
    border-bottom: 1px solid rgba(221, 168, 83, 0.08);
    transition: all 0.4s ease;
  }
  nav.top .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    min-width: 92px;
  }
  .brand-logo {
    display: block;
    width: clamp(128px, 10vw, 168px);
    height: 46px;
    object-fit: contain;
    object-position: left center;
  }
  .brand-mark {
    width: 32px; height: 32px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid; place-items: center;
    font-family: 'UnifrakturCook', serif;
    font-size: 1rem;
    color: var(--gold);
  }
  .foot-brand .brand-logo {
    width: clamp(150px, 14vw, 210px);
    height: 58px;
  }
  .nav-links {
    display: flex;
    gap: clamp(20px, 3vw, 44px);
    align-items: center;
    list-style: none;
  }
  .nav-links a {
    color: rgba(248, 243, 206, 0.75);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a.active { color: var(--gold); }
  .nav-dropdown {
    position: relative;
  }
  .nav-drop-toggle {
    appearance: none;
    border: 0;
    background: transparent;
    color: rgba(248, 243, 206, 0.75);
    font: inherit;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  .nav-drop-toggle::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 10px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-3px);
  }
  .nav-drop-toggle:hover,
  .nav-drop-toggle.active,
  .nav-dropdown:focus-within .nav-drop-toggle,
  .nav-dropdown:hover .nav-drop-toggle {
    color: var(--gold);
  }
  .nav-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    min-width: 240px;
    padding: 10px;
    border-radius: 16px;
    list-style: none;
    background: rgba(0, 22, 49, 0.94);
    border: 1px solid rgba(221, 168, 83, 0.18);
    box-shadow: 0 28px 70px -34px rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }
  .nav-dropdown:hover .nav-menu,
  .nav-dropdown:focus-within .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
  .nav-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    color: rgba(248, 243, 206, 0.72);
    white-space: nowrap;
  }
  .nav-menu a:hover,
  .nav-menu a.active {
    color: var(--gold);
    background: rgba(221, 168, 83, 0.08);
  }
  .nav-cta {
    padding: 10px 22px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--cream) !important;
    transition: all 0.3s ease;
  }
  .nav-cta:hover {
    background: var(--gold);
    color: var(--navy-deep) !important;
    border-color: var(--gold);
  }
@media (max-width: 720px) {
  .nav-links li:not(:last-child) { display: none; }
}

  /* ====================== HERO ====================== */
  .hero {
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
    width: 100%;
  }
  @media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  }

  .hero-left .eyebrow {
    opacity: 0;
    animation: fadeUp 1s ease 0.2s forwards;
  }
  .hero-title {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(2.6rem, 6.2vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: var(--cream);
    margin: 28px 0 28px;
    opacity: 0;
    animation: fadeUp 1.1s ease 0.4s forwards;
  }
  .hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
  }
  .hero-title .accent-line {
    display: inline-block;
    position: relative;
  }
  .hero-title .accent-line::after {
    content: '';
    position: absolute;
    bottom: 0.08em;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }
  .hero-sub {
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    color: rgba(248, 243, 206, 0.7);
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 44px;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 1.1s ease 0.6s forwards;
  }
  .hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1.1s ease 0.8s forwards;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.86rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    border: none;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
    box-shadow: 0 12px 40px -12px rgba(221, 168, 83, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px -10px rgba(221, 168, 83, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: var(--gold-soft);
  }
  .btn-primary svg { transition: transform 0.4s ease; }
  .btn-primary:hover svg { transform: translateX(4px); }
  .btn-ghost {
    color: var(--cream);
    border: 1px solid var(--line-strong);
    background: rgba(248, 243, 206, 0.02);
    backdrop-filter: blur(10px);
  }
  .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(221, 168, 83, 0.06);
  }

  /* Hero metadata strip */
  .hero-meta {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid rgba(221, 168, 83, 0.12);
    display: flex;
    gap: clamp(20px, 4vw, 56px);
    opacity: 0;
    animation: fadeUp 1.1s ease 1s forwards;
  }
  .meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .meta-label {
    font-size: 0.66rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(248, 243, 206, 0.45);
  }
  .meta-value {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    color: var(--cream);
    font-weight: 400;
  }

  /* ====================== HERO RIGHT — PRODUCT CARD ====================== */
  .product-card {
    position: relative;
    padding: clamp(28px, 3vw, 44px);
    border-radius: 32px;
    background:
      linear-gradient(140deg, rgba(248, 243, 206, 0.06) 0%, rgba(248, 243, 206, 0.02) 100%);
    border: 1px solid rgba(221, 168, 83, 0.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
      0 50px 100px -30px rgba(0, 0, 0, 0.6),
      0 0 80px -20px rgba(221, 168, 83, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    opacity: 0;
    animation: cardIn 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
  }

  .product-card::before {
    content: '';
    position: absolute;
    inset: -40px;
    z-index: -1;
    background: radial-gradient(circle at 50% 30%, rgba(221, 168, 83, 0.22), transparent 60%);
    filter: blur(40px);
    pointer-events: none;
  }

  .pc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
  }
  .pc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(221, 168, 83, 0.12);
    border: 1px solid rgba(221, 168, 83, 0.25);
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .pc-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
  }
  .pc-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 0.85rem;
    color: rgba(248, 243, 206, 0.4);
    letter-spacing: 0.1em;
  }

  /* Visual representation — bottle abstraction (NOT a generic bottle image) */
  .pc-visual {
    position: relative;
    height: clamp(280px, 38vw, 380px);
    border-radius: 20px;
    background:
      radial-gradient(ellipse at 50% 20%, rgba(221, 168, 83, 0.35), transparent 70%),
      linear-gradient(180deg, #002856 0%, #001631 100%);
    overflow: hidden;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* Concentric rings — Hildegarda mandala reference */
  .pc-visual::before {
    content: '';
    position: absolute;
    width: 160%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(221, 168, 83, 0.12);
    box-shadow:
      0 0 0 40px rgba(221, 168, 83, 0.04),
      0 0 0 80px rgba(221, 168, 83, 0.03),
      0 0 0 130px rgba(221, 168, 83, 0.02);
    animation: spin 80s linear infinite;
  }
  .pc-visual::after {
    content: '';
    position: absolute;
    width: 60%; height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(221, 168, 83, 0.4), rgba(221, 168, 83, 0.1) 40%, transparent 70%);
    filter: blur(20px);
  }
.pc-monogram {
  position: relative;
  z-index: 2;
  display: block;
  width: clamp(150px, 22vw, 240px);
    height: clamp(150px, 22vw, 240px);
    object-fit: contain;
    border-radius: 50%;
    box-shadow:
      0 0 40px rgba(221, 168, 83, 0.35),
      0 4px 30px rgba(0, 0, 0, 0.55);
  transform: translateY(-4px);
}

.product-can {
  position: relative;
  z-index: 4;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
  filter:
    drop-shadow(0 28px 32px rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 26px rgba(221, 168, 83, 0.2));
}

.pc-monogram.product-can {
  width: min(58%, 240px);
  height: min(94%, 360px);
  max-height: 360px;
  transform: translateY(2px) rotate(-2deg);
}

@media (max-width: 720px) {
  .pc-monogram.product-can {
    width: min(68%, 218px);
    height: min(92%, 330px);
  }
}
  .pc-style-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 3;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 0.78rem;
    color: rgba(248, 243, 206, 0.6);
    letter-spacing: 0.1em;
  }
  .pc-est {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 3;
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(248, 243, 206, 0.35);
  }

  .pc-name {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
  }
  .pc-tagline {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: rgba(248, 243, 206, 0.55);
    font-size: 0.96rem;
    margin-bottom: 24px;
  }
  .pc-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    background: rgba(0, 22, 49, 0.4);
    border-radius: 14px;
    padding: 4px;
    border: 1px solid rgba(221, 168, 83, 0.1);
  }
  .pc-spec {
    text-align: center;
    padding: 14px 8px;
    border-radius: 10px;
    transition: background 0.3s ease;
  }
  .pc-spec:hover { background: rgba(221, 168, 83, 0.06); }
  .pc-spec-val {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
  }
  .pc-spec-lbl {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(248, 243, 206, 0.45);
  }

  /* ====================== SECTION SHARED ====================== */
  section {
    padding: clamp(80px, 12vw, 160px) 0;
    position: relative;
    z-index: 2;
  }

  .section-head {
    margin-bottom: clamp(50px, 8vw, 90px);
    max-width: 720px;
  }
  .section-title {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin: 22px 0 24px;
  }
  .section-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
  }
  .section-intro {
    color: rgba(248, 243, 206, 0.65);
    font-size: clamp(1rem, 1.15vw, 1.1rem);
    line-height: 1.7;
    max-width: 580px;
  }

  /* ====================== HERENCIA ====================== */
  .heritage {
    border-top: 1px solid rgba(221, 168, 83, 0.08);
  }
  .heritage-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
  }
  @media (max-width: 880px) {
    .heritage-grid { grid-template-columns: 1fr; }
  }
  .heritage-portrait {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 4px;
    background:
      radial-gradient(ellipse at 30% 40%, rgba(221, 168, 83, 0.2), transparent 60%),
      linear-gradient(160deg, #0a3566 0%, #001631 100%);
    overflow: hidden;
    border: 1px solid rgba(221, 168, 83, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .heritage-portrait::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(221, 168, 83, 0.2);
    pointer-events: none;
  }
  .heritage-portrait::after {
    content: '✦';
    position: absolute;
    top: 32px; left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 0.8rem;
  }
  .portrait-illustration {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .heritage-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    transform: scale(1.04);
    filter:
      brightness(0)
      saturate(100%)
      invert(93%)
      sepia(12%)
      saturate(570%)
      hue-rotate(7deg)
      brightness(106%)
      contrast(96%)
      drop-shadow(0 28px 42px rgba(0, 0, 0, 0.38));
  }
  .portrait-figure {
    font-family: 'UnifrakturCook', serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--gold);
    text-align: center;
    line-height: 1.1;
    letter-spacing: 0.05em;
    opacity: 0.95;
    text-shadow: 0 0 30px rgba(221, 168, 83, 0.4);
  }
  .portrait-figure small {
    display: block;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(248, 243, 206, 0.6);
    letter-spacing: 0.15em;
    margin-top: 14px;
    font-weight: 300;
  }
  .heritage-caption {
    position: absolute;
    bottom: 32px; left: 32px; right: 32px;
    text-align: center;
    padding: 12px 14px;
    border-radius: 999px;
    background: rgba(0, 22, 49, 0.72);
    border: 1px solid rgba(221, 168, 83, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-size: 0.66rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(248, 243, 206, 0.86);
    z-index: 3;
    box-shadow: 0 18px 34px -24px rgba(0, 0, 0, 0.9);
  }

  .heritage-body p {
    font-size: clamp(1.05rem, 1.25vw, 1.18rem);
    line-height: 1.75;
    color: rgba(248, 243, 206, 0.78);
    margin-bottom: 24px;
    font-weight: 300;
  }
  .heritage-body p.lead {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: clamp(1.3rem, 1.8vw, 1.6rem);
    color: var(--cream);
    line-height: 1.45;
    font-weight: 300;
    border-left: 1px solid var(--gold);
    padding-left: 28px;
    margin-bottom: 32px;
  }
  .bridge {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    margin-top: 48px;
    padding: 28px;
    border-radius: 16px;
    background: rgba(0, 22, 49, 0.4);
    border: 1px solid rgba(221, 168, 83, 0.12);
  }
  .bridge-item .eyebrow { font-size: 0.62rem; margin-bottom: 10px; display: block; }
  .bridge-item .eyebrow::before { display: none; }
  .bridge-item-val {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    color: var(--cream);
    font-weight: 400;
  }
  .bridge-plus {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: grid; place-items: center;
    color: var(--gold);
    font-size: 1.1rem;
  }

  /* ====================== KÖLSCH SECTION ====================== */
  .kolsch {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 8, 24, 0.6) 50%, transparent 100%);
    border-top: 1px solid rgba(221, 168, 83, 0.08);
    border-bottom: 1px solid rgba(221, 168, 83, 0.08);
  }
  .notes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(221, 168, 83, 0.1);
    border: 1px solid rgba(221, 168, 83, 0.1);
    border-radius: 20px;
    overflow: hidden;
  }
  @media (max-width: 980px) { .notes-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 520px) { .notes-grid { grid-template-columns: 1fr; } }

  .note-card {
    padding: 40px 32px 36px;
    background: rgba(0, 22, 49, 0.65);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
  }
  .note-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(221, 168, 83, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .note-card:hover {
    background: rgba(0, 40, 86, 0.8);
    transform: translateY(-2px);
  }
  .note-card:hover::before { opacity: 1; }
  .note-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 0.78rem;
    color: var(--gold);
    margin-bottom: 32px;
    letter-spacing: 0.15em;
    position: relative;
    z-index: 2;
  }
  .note-icon {
    width: 44px; height: 44px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    display: grid; place-items: center;
    margin-bottom: 28px;
    color: var(--gold);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
  }
  .note-card:hover .note-icon {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
    transform: rotate(8deg);
  }
  .note-title {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
  }
  .note-desc {
    font-size: 0.9rem;
    color: rgba(248, 243, 206, 0.6);
    line-height: 1.6;
    font-weight: 300;
    position: relative;
    z-index: 2;
  }

  /* Profile bars row */
  .profile-row {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 40px);
    padding: 40px;
    border-radius: 20px;
    background: rgba(248, 243, 206, 0.03);
    border: 1px solid rgba(221, 168, 83, 0.12);
  }
  @media (max-width: 720px) {
    .profile-row { grid-template-columns: 1fr; padding: 28px; }
  }
  .profile-block .eyebrow {
    font-size: 0.62rem;
    display: block;
    margin-bottom: 16px;
  }
  .profile-block .eyebrow::before { display: none; }
  .profile-bar {
    height: 4px;
    background: rgba(221, 168, 83, 0.12);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
  }
  .profile-bar-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold));
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(221, 168, 83, 0.5);
  }
  .profile-block-val {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    color: var(--cream);
  }
  .profile-block-val span { color: rgba(248, 243, 206, 0.45); font-style: italic; font-size: 0.88rem; }

  /* ====================== PHILOSOPHY ====================== */
  .philosophy {
    position: relative;
  }
  .philo-quote {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-style: italic;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.2;
    color: var(--cream);
    max-width: 920px;
    margin: 0 auto 80px;
    text-align: center;
    letter-spacing: -0.01em;
  }
  .philo-quote em {
    font-style: normal;
    color: var(--gold);
    background: linear-gradient(180deg, transparent 60%, rgba(221, 168, 83, 0.2) 60%);
    padding: 0 4px;
  }
  .philo-quote::before, .philo-quote::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 28px auto;
    opacity: 0.5;
  }

  .philo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 880px) { .philo-cards { grid-template-columns: 1fr; } }

  .philo-card {
    padding: 44px 36px;
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(248, 243, 206, 0.04), rgba(248, 243, 206, 0.01));
    border: 1px solid rgba(221, 168, 83, 0.12);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .philo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(221, 168, 83, 0.3);
    background: linear-gradient(160deg, rgba(248, 243, 206, 0.06), rgba(248, 243, 206, 0.02));
  }
  .philo-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .philo-card:hover::after { opacity: 0.6; }

  .philo-num {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: 3.5rem;
    color: rgba(221, 168, 83, 0.3);
    line-height: 1;
    margin-bottom: 24px;
  }
  .philo-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
  }
  .philo-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(248, 243, 206, 0.6);
    font-weight: 300;
  }

  /* ====================== COMING SOON ====================== */
  .coming-soon {
    border-top: 1px solid rgba(221, 168, 83, 0.08);
    border-bottom: 1px solid rgba(221, 168, 83, 0.08);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 8, 24, 0.5) 52%, transparent 100%);
  }

  .coming-page {
    padding-top: clamp(108px, 11vh, 132px);
  }

  .coming-grid {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: clamp(40px, 6vw, 92px);
    align-items: start;
  }

  .coming-panel {
    padding: clamp(28px, 4vw, 48px);
    border-radius: 28px;
    border: 1px solid rgba(221, 168, 83, 0.16);
    background:
      radial-gradient(circle at 50% 0%, rgba(221, 168, 83, 0.16), transparent 42%),
      rgba(0, 22, 49, 0.58);
    box-shadow: 0 44px 90px -48px rgba(0, 0, 0, 0.85);
  }

  .coming-panel-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
    color: rgba(248, 243, 206, 0.48);
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
  }

  .coming-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .coming-options article {
    min-height: 210px;
    padding: 26px;
    border-radius: 18px;
    background: rgba(0, 22, 49, 0.58);
    border: 1px solid rgba(221, 168, 83, 0.12);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  }

  .coming-options article:hover {
    transform: translateY(-2px);
    border-color: rgba(221, 168, 83, 0.3);
    background: rgba(0, 40, 86, 0.65);
  }

  .coming-options span {
    display: block;
    margin-bottom: 18px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 0.18em;
  }

  .coming-options h3 {
    margin-bottom: 10px;
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--cream);
  }

  .coming-options p,
  .coming-note {
    color: rgba(248, 243, 206, 0.64);
    line-height: 1.65;
    font-size: 0.95rem;
  }

  .coming-note {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(221, 168, 83, 0.12);
  }

  /* ====================== FINAL CTA ====================== */
  .final-cta {
    text-align: center;
    padding: clamp(100px, 14vw, 180px) 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(221, 168, 83, 0.1);
  }
  .final-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    aspect-ratio: 1;
    max-width: 800px;
    background: radial-gradient(circle, rgba(221, 168, 83, 0.18), transparent 60%);
    filter: blur(60px);
    pointer-events: none;
  }
  .final-cta .wrap { position: relative; z-index: 2; }
  .final-eyebrow {
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-weight: 500;
  }
  .final-headline {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--cream);
    margin-bottom: 40px;
  }
  .final-headline em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
  }
  .final-sub {
    font-size: 1.1rem;
    color: rgba(248, 243, 206, 0.6);
    max-width: 540px;
    margin: 0 auto 56px;
    line-height: 1.7;
    font-weight: 300;
  }
  .final-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ====================== FOOTER ====================== */
  footer {
    background: var(--navy-deep);
    border-top: 1px solid rgba(221, 168, 83, 0.1);
    padding: 60px 0 36px;
    position: relative;
    z-index: 2;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(221, 168, 83, 0.08);
    margin-bottom: 32px;
  }
  @media (max-width: 720px) {
    .foot-grid { grid-template-columns: 1fr 1fr; }
  }
  .foot-brand .brand { margin-bottom: 16px; }
  .foot-tag {
    color: rgba(248, 243, 206, 0.55);
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 320px;
  }
  .foot-col h4 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 500;
  }
  .foot-col ul { list-style: none; }
  .foot-col li { margin-bottom: 10px; }
  .foot-col a {
    color: rgba(248, 243, 206, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .foot-col a:hover { color: var(--gold); }
  .foot-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.78rem;
    color: rgba(248, 243, 206, 0.4);
    letter-spacing: 0.05em;
  }
  .foot-bottom a { color: rgba(248, 243, 206, 0.4); text-decoration: none; }
  .foot-bottom a:hover { color: var(--gold); }

  /* ====================== HISTORY PAGE ====================== */
  .history-hero {
    min-height: 92vh;
    padding: 150px 0 90px;
    display: flex;
    align-items: center;
    position: relative;
  }

  .history-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
  }

  .history-copy .eyebrow,
  .history-copy .hero-title,
  .history-copy .hero-sub,
  .history-copy .hero-ctas {
    opacity: 0;
    animation: fadeUp 1.1s ease forwards;
  }

  .history-copy .eyebrow { animation-delay: 0.15s; }
  .history-copy .hero-title { animation-delay: 0.35s; }
  .history-copy .hero-sub { animation-delay: 0.55s; }
  .history-copy .hero-ctas { animation-delay: 0.75s; }

  .founder-card {
    position: relative;
    padding: clamp(28px, 4vw, 52px);
    min-height: 500px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid rgba(221, 168, 83, 0.18);
    background:
      radial-gradient(circle at 52% 35%, rgba(221, 168, 83, 0.26), transparent 46%),
      linear-gradient(150deg, rgba(248, 243, 206, 0.07), rgba(0, 22, 49, 0.68));
    box-shadow:
      0 50px 100px -36px rgba(0, 0, 0, 0.65),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    opacity: 0;
    animation: cardIn 1.3s cubic-bezier(0.2, 0.8, 0.2, 1) 0.45s forwards;
  }

  .founder-card::before {
    content: '';
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(221, 168, 83, 0.12);
    border-radius: 18px;
    pointer-events: none;
  }

  .founder-card::after {
    content: '';
    position: absolute;
    width: 140%;
    aspect-ratio: 1;
    left: -20%;
    top: 8%;
    border-radius: 50%;
    border: 1px solid rgba(221, 168, 83, 0.12);
    box-shadow:
      0 0 0 44px rgba(221, 168, 83, 0.035),
      0 0 0 92px rgba(221, 168, 83, 0.025);
    animation: spin 90s linear infinite;
  }

  .founder-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(248, 243, 206, 0.55);
    font-size: 0.64rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  .founder-initials {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 4vw, 32px);
    color: var(--cream);
    text-shadow: 0 0 36px rgba(221, 168, 83, 0.35);
  }

  .founder-initials span {
    font-family: 'UnifrakturCook', serif;
    font-size: clamp(5rem, 10vw, 9rem);
    line-height: 1;
  }

  .founder-initials i {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    color: var(--gold);
    font-style: italic;
  }

  .founder-visual {
    position: relative;
    z-index: 2;
    flex: 1;
    min-height: 285px;
    width: 100%;
    display: grid;
    place-items: center;
    margin: 18px 0;
  }

  .founder-visual img {
    display: block;
    width: min(100%, 520px);
    height: min(360px, 32vw);
    min-height: 260px;
    object-fit: contain;
    object-position: center;
    filter:
      saturate(1)
      contrast(1)
      drop-shadow(0 28px 42px rgba(0, 0, 0, 0.4));
  }

  .founder-card p {
    position: relative;
    z-index: 2;
    max-width: 420px;
    color: rgba(248, 243, 206, 0.68);
    font-size: 1rem;
    line-height: 1.7;
  }

  .history-origin {
    border-top: 1px solid rgba(221, 168, 83, 0.08);
  }

  .story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(40px, 6vw, 92px);
    align-items: start;
  }

  .story-body {
    padding-top: 12px;
  }

  .story-body p {
    color: rgba(248, 243, 206, 0.72);
    font-size: clamp(1.03rem, 1.2vw, 1.16rem);
    line-height: 1.78;
    margin-bottom: 24px;
  }

  .story-body .lead {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    color: var(--cream);
    line-height: 1.48;
    padding-left: 28px;
    border-left: 1px solid var(--gold);
  }

  .history-process {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 8, 24, 0.58) 48%, transparent 100%);
    border-top: 1px solid rgba(221, 168, 83, 0.08);
    border-bottom: 1px solid rgba(221, 168, 83, 0.08);
  }

  .timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(221, 168, 83, 0.12);
    background: rgba(221, 168, 83, 0.12);
  }

  .timeline-item {
    min-height: 340px;
    padding: 42px 32px 36px;
    background: rgba(0, 22, 49, 0.68);
    transition: transform 0.45s ease, background 0.45s ease;
  }

  .timeline-item:hover {
    background: rgba(0, 40, 86, 0.82);
    transform: translateY(-2px);
  }

  .timeline-num {
    display: block;
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 44px;
  }

  .timeline-item h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.45rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 14px;
  }

  .timeline-item p {
    color: rgba(248, 243, 206, 0.62);
    line-height: 1.68;
    font-size: 0.95rem;
  }

  .history-dream {
    padding: clamp(90px, 13vw, 160px) 0;
  }

  .dream-panel {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
  }

  .dream-panel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(720px, 88vw);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(221, 168, 83, 0.16), transparent 62%);
    filter: blur(55px);
    pointer-events: none;
    z-index: -1;
  }

  @media (max-width: 980px) {
    .history-hero-grid,
    .story-grid {
      grid-template-columns: 1fr;
    }

    .timeline {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 620px) {
  .founder-card {
    min-height: 420px;
    border-radius: 22px;
  }

  .founder-visual {
    min-height: 230px;
  }

  .founder-visual img {
    height: 250px;
    min-height: 0;
  }

  .founder-card-top {
    flex-direction: column;
  }

    .timeline {
      grid-template-columns: 1fr;
    }

    .timeline-item {
      min-height: auto;
    }
  }

  /* ====================== CULTURE PAGE ====================== */
  .culture-hero {
    min-height: 92vh;
    padding: 150px 0 90px;
    display: flex;
    align-items: center;
    position: relative;
  }

  .culture-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
  }

  .culture-copy .eyebrow,
  .culture-copy .hero-title,
  .culture-copy .hero-sub,
  .culture-copy .hero-ctas {
    opacity: 0;
    animation: fadeUp 1.1s ease forwards;
  }

  .culture-copy .eyebrow { animation-delay: 0.15s; }
  .culture-copy .hero-title { animation-delay: 0.35s; }
  .culture-copy .hero-sub { animation-delay: 0.55s; }
  .culture-copy .hero-ctas { animation-delay: 0.75s; }

  .culture-compass {
    min-height: 520px;
    display: grid;
    place-items: center;
    position: relative;
    padding: clamp(28px, 4vw, 46px);
    border-radius: 32px;
    border: 1px solid rgba(221, 168, 83, 0.18);
    background:
      linear-gradient(140deg, rgba(248, 243, 206, 0.06) 0%, rgba(248, 243, 206, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
      0 50px 100px -30px rgba(0, 0, 0, 0.6),
      0 0 80px -20px rgba(221, 168, 83, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    opacity: 0;
    animation: cardIn 1.3s cubic-bezier(0.2, 0.8, 0.2, 1) 0.45s forwards;
  }

  .culture-compass::before {
    content: '';
    position: absolute;
    inset: -44px;
    z-index: -1;
    background: radial-gradient(circle at 54% 42%, rgba(221, 168, 83, 0.28), transparent 62%);
    filter: blur(44px);
    pointer-events: none;
  }

  .culture-compass::after {
    content: 'Guia sensorial';
    position: absolute;
    top: 28px;
    left: 32px;
    z-index: 4;
    color: var(--gold);
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
  }

  .compass-ring {
    position: relative;
    width: min(460px, 78vw);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(221, 168, 83, 0.34);
    background:
      radial-gradient(circle at 50% 36%, rgba(221, 168, 83, 0.42), transparent 44%),
      radial-gradient(circle at 50% 52%, rgba(248, 243, 206, 0.12), transparent 34%),
      linear-gradient(180deg, #002856 0%, #001631 100%);
    box-shadow:
      0 0 0 28px rgba(221, 168, 83, 0.05),
      0 0 0 68px rgba(221, 168, 83, 0.03),
      0 45px 95px -40px rgba(0, 0, 0, 0.75),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .compass-ring::before {
    content: '';
    position: absolute;
    inset: 44px;
    border-radius: 50%;
    border: 1px solid rgba(221, 168, 83, 0.22);
    box-shadow:
      0 0 0 42px rgba(221, 168, 83, 0.04),
      inset 0 0 44px rgba(221, 168, 83, 0.08);
    animation: spin 90s linear infinite;
  }

  .compass-ring::after {
    content: '';
    position: absolute;
    inset: 108px;
    border-radius: 50%;
    border: 1px solid rgba(248, 243, 206, 0.18);
    background: radial-gradient(circle, rgba(0, 22, 49, 0.12), transparent 68%);
  }

  .compass-word {
    position: absolute;
    z-index: 4;
    color: var(--cream);
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
  }

  .compass-word.top {
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
  }

  .compass-word.right {
    top: 50%;
    right: 18px;
    transform: translateY(-50%) rotate(90deg);
  }

  .compass-word.bottom {
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
  }

  .compass-word.left {
    top: 50%;
    left: 18px;
    transform: translateY(-50%) rotate(-90deg);
  }

  .compass-center {
    position: absolute;
    inset: 50%;
    z-index: 3;
    width: 160px;
    height: 160px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    background:
      radial-gradient(circle at 50% 20%, rgba(221, 168, 83, 0.18), transparent 62%),
      rgba(0, 22, 49, 0.82);
    border: 1px solid rgba(221, 168, 83, 0.4);
    box-shadow:
      0 0 46px rgba(221, 168, 83, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .compass-center span {
    font-family: 'UnifrakturCook', serif;
    font-size: 4.3rem;
    line-height: 0.8;
    color: var(--cream);
    text-shadow: 0 0 28px rgba(221, 168, 83, 0.4);
  }

  .compass-center small {
    color: var(--gold);
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    line-height: 1.7;
    text-transform: uppercase;
  }

  .culture-showcase {
    position: relative;
    padding: clamp(28px, 3vw, 44px);
    border-radius: 32px;
    background:
      linear-gradient(140deg, rgba(248, 243, 206, 0.06) 0%, rgba(248, 243, 206, 0.02) 100%);
    border: 1px solid rgba(221, 168, 83, 0.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
      0 50px 100px -30px rgba(0, 0, 0, 0.6),
      0 0 80px -20px rgba(221, 168, 83, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    opacity: 0;
    animation: cardIn 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) 0.45s forwards;
  }

  .culture-showcase::before {
    content: '';
    position: absolute;
    inset: -40px;
    z-index: -1;
    background: radial-gradient(circle at 50% 28%, rgba(221, 168, 83, 0.23), transparent 60%);
    filter: blur(40px);
    pointer-events: none;
  }

  .culture-showcase-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
    color: rgba(248, 243, 206, 0.48);
    font-size: 0.64rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  .culture-showcase-visual {
    position: relative;
    min-height: clamp(280px, 34vw, 380px);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    background:
      radial-gradient(ellipse at 50% 24%, rgba(221, 168, 83, 0.36), transparent 68%),
      linear-gradient(180deg, #002856 0%, #001631 100%);
  }

  .culture-showcase-visual::before {
    content: '';
    position: absolute;
    width: 158%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(221, 168, 83, 0.12);
    box-shadow:
      0 0 0 40px rgba(221, 168, 83, 0.04),
      0 0 0 82px rgba(221, 168, 83, 0.03),
      0 0 0 132px rgba(221, 168, 83, 0.02);
    animation: spin 80s linear infinite;
  }

  .culture-showcase-visual::after {
    content: '';
    position: absolute;
    width: 62%;
    height: 62%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(221, 168, 83, 0.42), rgba(221, 168, 83, 0.1) 42%, transparent 72%);
    filter: blur(22px);
  }

  .culture-showcase-tag,
  .culture-showcase-note {
    position: absolute;
    z-index: 3;
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
  }

  .culture-showcase-tag {
    top: 24px;
    left: 24px;
    color: var(--gold);
  }

  .culture-showcase-note {
    right: 24px;
    bottom: 24px;
    color: rgba(248, 243, 206, 0.42);
  }

  .culture-showcase-mark {
    position: relative;
    z-index: 2;
    font-family: 'UnifrakturCook', serif;
    font-size: clamp(7rem, 14vw, 11rem);
    color: var(--cream);
    line-height: 1;
    text-shadow:
      0 0 42px rgba(221, 168, 83, 0.42),
      0 4px 30px rgba(0, 0, 0, 0.6);
    transform: translateY(-4px);
  }

  .culture-showcase-copy h2 {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--cream);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
  }

  .culture-showcase-copy p {
    color: rgba(248, 243, 206, 0.62);
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .culture-showcase-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 4px;
    border-radius: 14px;
    background: rgba(0, 22, 49, 0.4);
    border: 1px solid rgba(221, 168, 83, 0.1);
  }

  .culture-showcase-points div {
    padding: 14px 8px;
    border-radius: 10px;
    text-align: center;
  }

  .culture-showcase-points span {
    display: block;
    margin-bottom: 6px;
    color: rgba(248, 243, 206, 0.42);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }

  .culture-showcase-points strong {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--gold);
  }

  .culture-guide {
    border-top: 1px solid rgba(221, 168, 83, 0.08);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 8, 24, 0.46) 52%, transparent 100%);
  }

  .culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(221, 168, 83, 0.16);
    background: rgba(221, 168, 83, 0.16);
    box-shadow:
      0 40px 90px -48px rgba(0, 0, 0, 0.8),
      0 0 70px -44px rgba(221, 168, 83, 0.6);
  }

  .culture-card {
    min-height: 310px;
    padding: 40px 32px 36px;
    background: rgba(0, 22, 49, 0.72);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: default;
  }

  .culture-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 50% 0%, rgba(221, 168, 83, 0.18), transparent 58%),
      linear-gradient(180deg, rgba(248, 243, 206, 0.035), transparent 45%);
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .culture-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.28;
  }

  .culture-card:hover {
    background: rgba(0, 40, 86, 0.86);
    transform: translateY(-2px);
  }

  .culture-card:hover::before { opacity: 1; }

  .culture-num {
    width: 46px;
    height: 46px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 0.76rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 34px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
  }

  .culture-card:hover .culture-num {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
    box-shadow: 0 0 22px rgba(221, 168, 83, 0.35);
    transform: rotate(8deg);
  }

  .culture-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 12px;
    line-height: 1.18;
    position: relative;
    z-index: 2;
  }

  .culture-card p {
    color: rgba(248, 243, 206, 0.62);
    line-height: 1.66;
    font-size: 0.94rem;
    position: relative;
    z-index: 2;
  }

  .culture-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 36px;
  }

  .culture-timeline::before {
    content: '';
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(221, 168, 83, 0.42), transparent);
  }

  .culture-step-card {
    position: relative;
    min-height: 260px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    padding: 34px;
    border-radius: 22px;
    overflow: hidden;
    background:
      linear-gradient(150deg, rgba(248, 243, 206, 0.055), rgba(248, 243, 206, 0.015));
    border: 1px solid rgba(221, 168, 83, 0.14);
    box-shadow: 0 34px 80px -54px rgba(0, 0, 0, 0.85);
  }

  .culture-step-card:nth-child(even) {
    transform: translateY(42px);
  }

  .culture-step-card.reveal.in:nth-child(even) {
    transform: translateY(42px);
  }

  .culture-step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(221, 168, 83, 0.15), transparent 62%);
    opacity: 0;
    transition: opacity 0.45s ease;
  }

  .culture-step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 34px;
    right: 34px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
  }

  .culture-step-card:hover::before {
    opacity: 1;
  }

  .culture-step-num {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    align-self: start;
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--gold);
    border: 1px solid rgba(221, 168, 83, 0.35);
    background: rgba(0, 22, 49, 0.42);
    transition: all 0.35s ease;
  }

  .culture-step-card:hover .culture-step-num {
    background: var(--gold);
    color: var(--navy-deep);
    transform: rotate(8deg);
  }

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

  .culture-step-kicker {
    display: block;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
  }

  .culture-step-content h3 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--cream);
    margin-bottom: 12px;
  }

  .culture-step-content p {
    color: rgba(248, 243, 206, 0.65);
    line-height: 1.68;
    font-size: 0.98rem;
  }

  .service-ritual {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 8, 24, 0.58) 50%, transparent 100%);
    border-top: 1px solid rgba(221, 168, 83, 0.08);
    border-bottom: 1px solid rgba(221, 168, 83, 0.08);
  }

  .ritual-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(40px, 6vw, 92px);
    align-items: start;
  }

  .ritual-steps {
    display: grid;
    gap: 18px;
  }

  .ritual-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    padding: 26px;
    border-radius: 18px;
    background: rgba(248, 243, 206, 0.035);
    border: 1px solid rgba(221, 168, 83, 0.12);
  }

  .ritual-step span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Fraunces', serif;
    color: var(--gold);
    border: 1px solid rgba(221, 168, 83, 0.35);
  }

  .ritual-step h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.28rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 8px;
  }

  .ritual-step p {
    color: rgba(248, 243, 206, 0.62);
    line-height: 1.65;
  }

  .pairing-section {
    border-bottom: 1px solid rgba(221, 168, 83, 0.08);
  }

  .pairing-panel {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: start;
    padding: clamp(30px, 5vw, 58px);
    border-radius: 24px;
    border: 1px solid rgba(221, 168, 83, 0.13);
    background:
      radial-gradient(circle at 18% 20%, rgba(221, 168, 83, 0.14), transparent 34%),
      rgba(248, 243, 206, 0.03);
  }

  .pairing-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .pairing-item {
    padding: 24px;
    border-left: 1px solid rgba(221, 168, 83, 0.35);
    background: rgba(0, 22, 49, 0.38);
  }

  .pairing-item h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 8px;
  }

  .pairing-item p {
    color: rgba(248, 243, 206, 0.6);
    line-height: 1.6;
    font-size: 0.93rem;
  }

  @media (max-width: 980px) {
    .culture-hero-grid,
    .ritual-grid,
    .pairing-panel {
      grid-template-columns: 1fr;
    }

    .culture-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .culture-compass {
      min-height: 500px;
    }

    .culture-timeline {
      grid-template-columns: 1fr;
      gap: 22px;
      padding-left: 22px;
    }

    .culture-timeline::before {
      left: 0;
    }

    .culture-step-card:nth-child(even),
    .culture-step-card.reveal.in:nth-child(even) {
      transform: translateY(0);
    }
  }

  @media (max-width: 620px) {
    .culture-grid,
    .pairing-list {
      grid-template-columns: 1fr;
    }

    .culture-card {
      min-height: auto;
    }

    .culture-showcase {
      border-radius: 24px;
    }

    .culture-showcase-top {
      flex-direction: column;
    }

    .culture-showcase-points {
      grid-template-columns: 1fr;
    }

    .culture-step-card {
      grid-template-columns: 1fr;
      padding: 28px;
      min-height: auto;
    }

    .culture-compass {
      padding: 28px 20px;
      min-height: 420px;
    }

    .culture-compass::after {
      left: 24px;
      top: 22px;
    }

    .compass-ring {
      width: min(330px, 82vw);
      box-shadow:
        0 0 0 18px rgba(221, 168, 83, 0.05),
        0 0 0 42px rgba(221, 168, 83, 0.025),
        0 35px 80px -44px rgba(0, 0, 0, 0.75);
    }

    .compass-center {
      width: 132px;
      height: 132px;
    }

    .compass-center span {
      font-size: 3.5rem;
    }

    .ritual-step {
      grid-template-columns: 1fr;
    }
  }

  /* ====================== ANIMATIONS ====================== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes cardIn {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  /* reveal-on-scroll */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }

  /* Hide scrollbar nicely */
  ::selection { background: var(--gold); color: var(--navy-deep); }
  
  
  
  /* =========================================================
   BINGEN CULTURE PAGE — VISUAL UPGRADE
   Pegar al final de style.css
========================================================= */

.culture-hero {
  min-height: 100vh;
  padding: 170px 0 110px;
  overflow: hidden;
}

.culture-hero::before {
  content: '';
  position: absolute;
  top: 8%;
  left: -10%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 168, 83, 0.18), transparent 66%);
  filter: blur(28px);
  pointer-events: none;
}

.culture-hero::after {
  content: '';
  position: absolute;
  right: -12%;
  bottom: 2%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 243, 206, 0.08), transparent 68%);
  filter: blur(36px);
  pointer-events: none;
}

.culture-copy {
  max-width: 680px;
}

.culture-copy .hero-title {
  max-width: 760px;
  text-wrap: balance;
}

.culture-copy .hero-sub {
  max-width: 600px;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: rgba(248, 243, 206, 0.76);
}

/* Hero premium card */
.premium-showcase {
  transform: rotate(1deg);
  transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.premium-showcase:hover {
  transform: rotate(0deg) translateY(-6px);
  border-color: rgba(221, 168, 83, 0.36);
  box-shadow:
    0 60px 120px -42px rgba(0, 0, 0, 0.75),
    0 0 100px -34px rgba(221, 168, 83, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.beer-poster {
  position: relative;
  min-height: clamp(360px, 40vw, 500px);
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 30px;
  background:
    radial-gradient(circle at 50% 18%, rgba(248, 243, 206, 0.17), transparent 32%),
    radial-gradient(circle at 50% 52%, rgba(221, 168, 83, 0.28), transparent 46%),
    linear-gradient(155deg, #002856 0%, #001631 68%);
  border: 1px solid rgba(221, 168, 83, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -60px 80px rgba(0, 0, 0, 0.28);
}

.beer-poster::before {
  content: '';
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(221, 168, 83, 0.16);
  border-radius: 18px;
  pointer-events: none;
}

.beer-poster::after {
  content: '';
  position: absolute;
  width: 150%;
  aspect-ratio: 1;
  left: -25%;
  top: -24%;
  border-radius: 50%;
  border: 1px solid rgba(221, 168, 83, 0.12);
  box-shadow:
    0 0 0 42px rgba(221, 168, 83, 0.035),
    0 0 0 86px rgba(221, 168, 83, 0.025),
    0 0 0 132px rgba(221, 168, 83, 0.018);
  animation: spin 90s linear infinite;
}

.poster-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 168, 83, 0.42), transparent 68%);
  filter: blur(18px);
  z-index: 1;
}

.glass-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 3;
}

.beer-glass {
  position: relative;
  width: 135px;
  height: 300px;
  border-radius: 22px 22px 36px 36px;
  border: 2px solid rgba(248, 243, 206, 0.36);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02) 24%, rgba(255,255,255,0.08) 74%, rgba(255,255,255,0.16)),
    rgba(248, 243, 206, 0.035);
  box-shadow:
    0 32px 70px rgba(0, 0, 0, 0.38),
    inset 0 0 22px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.beer-liquid {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  height: 222px;
  border-radius: 12px 12px 28px 28px;
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 245, 178, 0.65), transparent 26%),
    linear-gradient(180deg, #f4c96f 0%, #dda853 42%, #b8893e 100%);
  box-shadow:
    inset 0 12px 18px rgba(255, 255, 255, 0.18),
    inset 0 -18px 30px rgba(79, 43, 5, 0.22);
}

.beer-liquid::before,
.beer-liquid::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(248, 243, 206, 0.62);
  box-shadow:
    22px 42px 0 rgba(248, 243, 206, 0.36),
    48px 92px 0 rgba(248, 243, 206, 0.28),
    78px 52px 0 rgba(248, 243, 206, 0.34),
    35px 150px 0 rgba(248, 243, 206, 0.24);
  left: 24px;
  top: 34px;
  opacity: 0.8;
}

.foam {
  position: absolute;
  z-index: 4;
  background: #fff7d8;
  border-radius: 50%;
  box-shadow: inset 0 -8px 14px rgba(221, 168, 83, 0.18);
}

.foam-1 {
  width: 72px;
  height: 54px;
  left: 8px;
  top: 42px;
}

.foam-2 {
  width: 82px;
  height: 60px;
  right: 6px;
  top: 38px;
}

.foam-3 {
  width: 62px;
  height: 46px;
  left: 38px;
  top: 24px;
}

.glass-shine {
  position: absolute;
  z-index: 5;
  top: 58px;
  left: 24px;
  width: 14px;
  height: 190px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.42), transparent);
  opacity: 0.55;
}

.poster-label {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 5;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(0, 22, 49, 0.72);
  border: 1px solid rgba(221, 168, 83, 0.24);
  backdrop-filter: blur(18px);
  text-align: center;
}

.poster-label span {
  display: block;
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.poster-label strong {
  display: block;
  font-family: 'UnifrakturCook', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--cream);
  line-height: 1;
  font-weight: 700;
}

.poster-label small {
  display: block;
  margin-top: 8px;
  color: rgba(248, 243, 206, 0.56);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Showcase text */
.culture-showcase-copy h2 {
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
  line-height: 1.06;
  text-wrap: balance;
}

.culture-showcase-copy p {
  font-size: 1rem;
  color: rgba(248, 243, 206, 0.7);
}

.culture-showcase-points div {
  transition: background 0.3s ease, transform 0.3s ease;
}

.culture-showcase-points div:hover {
  background: rgba(221, 168, 83, 0.08);
  transform: translateY(-2px);
}

/* Guide cards */
.culture-guide {
  position: relative;
}

.culture-guide .section-head {
  max-width: 840px;
}

.culture-timeline {
  gap: 34px;
}

.culture-step-card {
  min-height: 245px;
  padding: clamp(28px, 3vw, 42px);
  background:
    linear-gradient(155deg, rgba(248, 243, 206, 0.075), rgba(248, 243, 206, 0.018)),
    rgba(0, 22, 49, 0.36);
  border: 1px solid rgba(221, 168, 83, 0.16);
  transition: transform 0.45s ease, border-color 0.45s ease, background 0.45s ease;
}

.culture-step-card:hover {
  border-color: rgba(221, 168, 83, 0.34);
  background:
    linear-gradient(155deg, rgba(248, 243, 206, 0.09), rgba(248, 243, 206, 0.025)),
    rgba(0, 40, 86, 0.48);
}

.culture-step-card:nth-child(even):hover {
  transform: translateY(34px);
}

.culture-step-card:nth-child(odd):hover {
  transform: translateY(-6px);
}

.culture-step-num {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(221, 168, 83, 0.42);
  color: var(--gold);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.82rem;
  background: rgba(221, 168, 83, 0.08);
  box-shadow: 0 0 24px rgba(221, 168, 83, 0.12);
}

.culture-step-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
}

.culture-step-content h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  color: var(--cream);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 12px;
}

.culture-step-content p {
  color: rgba(248, 243, 206, 0.66);
  line-height: 1.68;
}

/* Ritual */
.service-ritual {
  background:
    radial-gradient(circle at 20% 20%, rgba(221, 168, 83, 0.08), transparent 34%),
    linear-gradient(180deg, transparent, rgba(0, 8, 24, 0.42), transparent);
}

.ritual-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
}

.ritual-steps {
  display: grid;
  gap: 18px;
}

.ritual-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 28px;
  border-radius: 22px;
  background: rgba(248, 243, 206, 0.045);
  border: 1px solid rgba(221, 168, 83, 0.14);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.ritual-step:hover {
  transform: translateX(8px);
  border-color: rgba(221, 168, 83, 0.32);
  background: rgba(248, 243, 206, 0.065);
}

.ritual-step > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  box-shadow: 0 12px 34px rgba(221, 168, 83, 0.24);
}

.ritual-step h3 {
  font-family: 'Fraunces', serif;
  color: var(--cream);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.ritual-step p {
  color: rgba(248, 243, 206, 0.66);
  line-height: 1.62;
}

.poster-logo {
  display: block;
  width: min(190px, 62vw);
  height: 58px;
  object-fit: contain;
  object-position: center;
  margin: 2px auto 4px;
}

/* Pairing */
.pairing-panel {
  padding: clamp(34px, 5vw, 64px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 10% 0%, rgba(221, 168, 83, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(248, 243, 206, 0.07), rgba(248, 243, 206, 0.018));
  border: 1px solid rgba(221, 168, 83, 0.18);
  box-shadow: 0 45px 100px -62px rgba(0, 0, 0, 0.9);
}

.pairing-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.pairing-item {
  min-height: 180px;
  padding: 26px;
  border-radius: 22px;
  background: rgba(0, 22, 49, 0.5);
  border: 1px solid rgba(221, 168, 83, 0.12);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.pairing-item:hover {
  transform: translateY(-6px);
  border-color: rgba(221, 168, 83, 0.32);
}

.pairing-item h3 {
  font-family: 'Fraunces', serif;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.pairing-item p {
  color: rgba(248, 243, 206, 0.65);
  line-height: 1.58;
}

/* Final CTA polish */
.history-dream .dream-panel {
  padding: clamp(46px, 6vw, 76px);
  border-radius: 36px;
  border: 1px solid rgba(221, 168, 83, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(221, 168, 83, 0.16), transparent 46%),
    rgba(248, 243, 206, 0.026);
}

/* Responsive fixes */
@media (max-width: 980px) {
  .culture-hero-grid,
  .ritual-grid {
    grid-template-columns: 1fr;
  }

  .premium-showcase {
    transform: none;
  }

  .culture-timeline {
    grid-template-columns: 1fr;
  }

  .culture-timeline::before {
    display: none;
  }

  .culture-step-card:nth-child(even),
  .culture-step-card.reveal.in:nth-child(even),
  .culture-step-card:nth-child(even):hover,
  .culture-step-card:nth-child(odd):hover {
    transform: none;
  }

  .pairing-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .culture-hero {
    padding: 130px 0 70px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

  .beer-poster {
    min-height: 390px;
  }

  .beer-glass {
    width: 112px;
    height: 260px;
  }

  .beer-liquid {
    height: 190px;
  }

  .poster-label {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .culture-showcase-points {
    grid-template-columns: 1fr;
  }

  .culture-step-card,
  .ritual-step {
    grid-template-columns: 1fr;
  }

  .pairing-list {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr;
  }

  .foot-bottom {
    flex-direction: column;
  }
}

/* =========================================================
   PRODUCT PAGE - BINGEN TIPO KOLSCH
========================================================= */
.product-hero {
  min-height: 96vh;
  padding: 150px 0 90px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  content: '';
  position: absolute;
  top: 8%;
  right: -10%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 168, 83, 0.18), transparent 68%);
  filter: blur(24px);
  pointer-events: none;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.product-hero-copy .eyebrow,
.product-hero-copy .hero-title,
.product-hero-copy .hero-sub,
.product-hero-copy .hero-ctas {
  opacity: 0;
  animation: fadeUp 1.1s ease forwards;
}

.product-hero-copy .eyebrow { animation-delay: 0.15s; }
.product-hero-copy .hero-title { animation-delay: 0.35s; }
.product-hero-copy .hero-sub { animation-delay: 0.55s; }
.product-hero-copy .hero-ctas { animation-delay: 0.75s; }

.product-showcase-card {
  position: relative;
  padding: clamp(28px, 3vw, 44px);
  border-radius: 32px;
  background: linear-gradient(140deg, rgba(248, 243, 206, 0.06), rgba(248, 243, 206, 0.02));
  border: 1px solid rgba(221, 168, 83, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 50px 100px -30px rgba(0, 0, 0, 0.6),
    0 0 80px -20px rgba(221, 168, 83, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  opacity: 0;
  animation: cardIn 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) 0.45s forwards;
}

.product-showcase-card::before {
  content: '';
  position: absolute;
  inset: -40px;
  z-index: -1;
  background: radial-gradient(circle at 50% 30%, rgba(221, 168, 83, 0.22), transparent 62%);
  filter: blur(42px);
}

.product-showcase-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  color: rgba(248, 243, 206, 0.48);
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.product-bottle-stage {
  position: relative;
  min-height: clamp(320px, 38vw, 430px);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(221, 168, 83, 0.38), transparent 70%),
    linear-gradient(180deg, #002856 0%, #001631 100%);
}

.product-bottle-stage::before {
  content: '';
  position: absolute;
  width: 165%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(221, 168, 83, 0.12);
  box-shadow:
    0 0 0 42px rgba(221, 168, 83, 0.04),
    0 0 0 84px rgba(221, 168, 83, 0.03),
    0 0 0 134px rgba(221, 168, 83, 0.02);
  animation: spin 82s linear infinite;
}

.product-bottle-stage::after {
  content: '';
  position: absolute;
  width: 64%;
  height: 64%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 168, 83, 0.42), rgba(221, 168, 83, 0.1) 42%, transparent 72%);
  filter: blur(22px);
}

.product-can-hero {
  width: min(66%, 300px);
  height: min(96%, 430px);
  max-height: 430px;
  transform: translateY(3px);
}

.product-castle {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  opacity: 0.16;
  transform: scale(1.12);
  filter:
    brightness(0)
    saturate(100%)
    invert(70%)
    sepia(43%)
    saturate(605%)
    hue-rotate(358deg)
    brightness(92%)
    contrast(92%)
    drop-shadow(0 24px 32px rgba(0, 0, 0, 0.36));
}

.product-stage-tag,
.product-stage-note {
  position: absolute;
  z-index: 3;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* =========================================================
   ALLIES PAGE
========================================================= */
.allies-hero {
  min-height: 94vh;
  padding: 150px 0 90px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.allies-hero::before {
  content: '';
  position: absolute;
  right: -12%;
  top: 4%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 168, 83, 0.16), transparent 68%);
  filter: blur(8px);
}

.allies-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.allies-copy .eyebrow,
.allies-copy .hero-title,
.allies-copy .hero-sub,
.allies-copy .hero-ctas {
  opacity: 0;
  animation: fadeUp 1.1s ease forwards;
}

.allies-copy .eyebrow { animation-delay: 0.15s; }
.allies-copy .hero-title { animation-delay: 0.35s; }
.allies-copy .hero-sub { animation-delay: 0.55s; }
.allies-copy .hero-ctas { animation-delay: 0.75s; }

.allies-card {
  position: relative;
  min-height: 500px;
  padding: clamp(30px, 4vw, 52px);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(221, 168, 83, 0.18);
  background:
    radial-gradient(circle at 50% 28%, rgba(221, 168, 83, 0.22), transparent 54%),
    linear-gradient(150deg, rgba(248, 243, 206, 0.07), rgba(0, 22, 49, 0.72));
  box-shadow: 0 50px 100px -36px rgba(0, 0, 0, 0.7);
  opacity: 0;
  animation: cardIn 1.3s cubic-bezier(0.2, 0.8, 0.2, 1) 0.45s forwards;
}

.allies-card::before {
  content: '';
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(221, 168, 83, 0.12);
  border-radius: 20px;
  pointer-events: none;
}

.allies-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(248, 243, 206, 0.52);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.allies-logo {
  position: relative;
  z-index: 2;
  display: block;
  width: min(340px, 82%);
  height: 170px;
  margin: 42px auto;
  object-fit: contain;
  filter: drop-shadow(0 0 32px rgba(221, 168, 83, 0.28));
}

.allies-card p {
  position: relative;
  z-index: 2;
  color: rgba(248, 243, 206, 0.68);
  line-height: 1.7;
}

.allies-network {
  border-top: 1px solid rgba(221, 168, 83, 0.08);
  background: linear-gradient(180deg, transparent 0%, rgba(0, 8, 24, 0.52) 50%, transparent 100%);
}

.ally-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(221, 168, 83, 0.12);
}

.ally-steps article {
  min-height: 310px;
  padding: 38px 30px 34px;
  background: rgba(0, 22, 49, 0.68);
}

.ally-steps span {
  display: block;
  margin-bottom: 40px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.16em;
}

.ally-steps h3 {
  margin-bottom: 14px;
  font-family: 'Fraunces', serif;
  font-size: 1.38rem;
  font-weight: 400;
  color: var(--cream);
}

.ally-steps p {
  color: rgba(248, 243, 206, 0.62);
  line-height: 1.65;
  font-size: 0.95rem;
}

.product-stage-tag {
  top: 24px;
  left: 24px;
  color: var(--gold);
}

.product-stage-note {
  right: 24px;
  bottom: 24px;
  color: rgba(248, 243, 206, 0.42);
}

.product-label {
  position: relative;
  z-index: 2;
  width: min(230px, 60%);
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 34px 22px;
  text-align: center;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(248, 243, 206, 0.96), rgba(248, 243, 206, 0.84));
  color: var(--navy-deep);
  border: 1px solid rgba(221, 168, 83, 0.55);
  box-shadow:
    0 28px 60px -24px rgba(0, 0, 0, 0.65),
    inset 0 0 0 10px rgba(0, 40, 86, 0.06);
}

.product-label-mark {
  display: block;
  width: clamp(92px, 12vw, 132px);
  height: clamp(92px, 12vw, 132px);
  object-fit: contain;
  border-radius: 50%;
}

.product-label span {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.product-main-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  border-radius: 14px;
  background: rgba(0, 22, 49, 0.4);
  border: 1px solid rgba(221, 168, 83, 0.1);
}

.product-main-specs div {
  padding: 14px 8px;
  text-align: center;
  border-radius: 10px;
}

.product-main-specs span {
  display: block;
  margin-bottom: 6px;
  color: rgba(248, 243, 206, 0.42);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.product-main-specs strong {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--gold);
}

.product-profile {
  border-top: 1px solid rgba(221, 168, 83, 0.08);
}

.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(221, 168, 83, 0.13);
  background: rgba(221, 168, 83, 0.13);
}

.product-spec-card {
  min-height: 250px;
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  background: rgba(0, 22, 49, 0.7);
  transition: all 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-spec-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(221, 168, 83, 0.16), transparent 62%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.product-spec-card:hover {
  background: rgba(0, 40, 86, 0.82);
  transform: translateY(-2px);
}

.product-spec-card:hover::before {
  opacity: 1;
}

.product-spec-card span {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-bottom: 30px;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.product-spec-card h3 {
  position: relative;
  z-index: 2;
  font-family: 'Fraunces', serif;
  font-size: 1.32rem;
  font-weight: 400;
  line-height: 1.18;
  color: var(--cream);
  margin-bottom: 12px;
}

.product-spec-card p {
  position: relative;
  z-index: 2;
  color: rgba(248, 243, 206, 0.62);
  line-height: 1.62;
  font-size: 0.94rem;
}

.product-process {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 8, 24, 0.58) 50%, transparent 100%);
  border-top: 1px solid rgba(221, 168, 83, 0.08);
  border-bottom: 1px solid rgba(221, 168, 83, 0.08);
}

.product-process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-step {
  min-height: 260px;
  padding: 34px 30px;
  border-radius: 22px;
  background:
    linear-gradient(150deg, rgba(248, 243, 206, 0.055), rgba(248, 243, 206, 0.015));
  border: 1px solid rgba(221, 168, 83, 0.14);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(221, 168, 83, 0.32);
  background: rgba(248, 243, 206, 0.055);
}

.process-step span {
  display: block;
  margin-bottom: 32px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.process-step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.process-step p {
  color: rgba(248, 243, 206, 0.62);
  line-height: 1.65;
}

.brand-identity-section {
  border-bottom: 1px solid rgba(221, 168, 83, 0.08);
}

.identity-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(40px, 6vw, 92px);
  align-items: start;
}

.identity-board {
  padding: clamp(30px, 4vw, 52px);
  border-radius: 28px;
  border: 1px solid rgba(221, 168, 83, 0.16);
  background:
    radial-gradient(circle at 18% 0%, rgba(221, 168, 83, 0.16), transparent 36%),
    rgba(248, 243, 206, 0.03);
}

.identity-logo {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 20%, rgba(221, 168, 83, 0.22), transparent 58%),
    linear-gradient(180deg, #002856 0%, #001631 100%);
  border: 1px solid rgba(221, 168, 83, 0.14);
  margin-bottom: 24px;
  padding: 26px;
}

.identity-logo-img {
  display: block;
  width: min(260px, 70%);
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(221, 168, 83, 0.28));
}

.identity-logo p {
  max-width: 420px;
  color: rgba(248, 243, 206, 0.6);
  line-height: 1.62;
}

.identity-swatches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.swatch {
  min-height: 96px;
  display: flex;
  align-items: end;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(221, 168, 83, 0.14);
}

.swatch span {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.swatch.navy { background: var(--navy); color: var(--cream); }
.swatch.cream { background: var(--cream); color: var(--navy-deep); }
.swatch.gold { background: var(--gold); color: var(--navy-deep); }

.identity-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.identity-items div {
  padding: 24px;
  border-radius: 16px;
  background: rgba(0, 22, 49, 0.42);
  border: 1px solid rgba(221, 168, 83, 0.1);
}

.identity-items h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 8px;
}

.identity-items p {
  color: rgba(248, 243, 206, 0.62);
  line-height: 1.6;
  font-size: 0.94rem;
}

@media (max-width: 1080px) {
  .product-spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .product-hero-grid,
  .identity-grid {
    grid-template-columns: 1fr;
  }

  .product-process-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-dropdown .nav-menu {
    display: none;
  }
}

@media (max-width: 620px) {
  .product-hero {
    padding: 130px 0 70px;
  }

  .product-showcase-card {
    border-radius: 24px;
  }

  .product-showcase-top,
  .product-main-specs,
  .identity-swatches,
  .identity-items,
  .product-process-list,
  .product-spec-grid {
    grid-template-columns: 1fr;
  }

  .product-stage-note {
    left: 24px;
    right: auto;
  }

  .product-showcase-top {
    flex-direction: column;
  }

  .product-label {
    width: min(210px, 72%);
  }

  .product-can-hero {
    width: min(72%, 250px);
    height: min(92%, 360px);
  }

  .product-castle {
    width: 100%;
    opacity: 0.14;
    transform: scale(1.08);
  }
}

/* =========================================================
   SHARED RESPONSIVE MENU
========================================================= */
.nav-wrap {
  gap: 24px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  gap: 5px;
  padding: 12px;
  border-radius: 50%;
  border: 1px solid rgba(221, 168, 83, 0.25);
  background: rgba(248, 243, 206, 0.035);
  color: var(--cream);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 10, 25, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-panel {
  width: min(420px, 88vw);
  min-height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 50% 0%, rgba(221, 168, 83, 0.18), transparent 38%),
    rgba(0, 22, 49, 0.96);
  border-left: 1px solid rgba(221, 168, 83, 0.18);
  box-shadow: -30px 0 80px -42px rgba(0, 0, 0, 0.9);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(221, 168, 83, 0.12);
}

.mobile-menu-logo {
  width: 168px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.mobile-menu-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(221, 168, 83, 0.25);
  background: rgba(248, 243, 206, 0.035);
  color: var(--cream);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu-links {
  display: grid;
  gap: 10px;
  padding: 36px 0;
}

.mobile-menu-links a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 16px;
  color: rgba(248, 243, 206, 0.76);
  text-decoration: none;
  font-family: 'Fraunces', serif;
  font-size: 1.55rem;
  font-weight: 300;
  letter-spacing: 0;
  border: 1px solid transparent;
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
  color: var(--gold);
  background: rgba(248, 243, 206, 0.04);
  border-color: rgba(221, 168, 83, 0.16);
}

body.menu-open {
  overflow: hidden;
}

.history-process .timeline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.history-process .timeline-item {
  min-height: 300px;
}

@media (max-width: 620px) {
  .history-process .timeline {
    grid-template-columns: 1fr;
  }

  .history-process .timeline-item {
    min-height: auto;
  }
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: clamp(14px, 2vw, 26px);
  }

  .ally-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  nav.top {
    padding: 14px 0;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
  }

  .brand-logo {
    width: 142px;
    height: 42px;
  }

  .nav-links li:not(:last-child) {
    display: list-item;
  }
}

@media (max-width: 980px) {
  .coming-grid,
  .allies-hero-grid {
    grid-template-columns: 1fr;
  }

  .allies-hero {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .coming-options,
  .ally-steps {
    grid-template-columns: 1fr;
  }

  .coming-panel-top,
  .allies-card-top {
    flex-direction: column;
  }

  .allies-card {
    min-height: 430px;
    border-radius: 24px;
  }

  .ally-steps article {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .mobile-menu-panel {
    width: 100vw;
    padding: 24px;
  }

  .mobile-menu-links a {
    font-size: 1.38rem;
  }

}

/* =========================================================
   FIRST VIEW SPACING
========================================================= */
.hero,
.history-hero,
.culture-hero,
.product-hero,
.allies-hero {
  min-height: auto;
  padding-top: clamp(108px, 11vh, 132px);
  padding-bottom: clamp(58px, 8vh, 88px);
  align-items: flex-start;
}

.hero-grid,
.history-hero-grid,
.culture-hero-grid,
.product-hero-grid,
.allies-hero-grid {
  width: 100%;
}

@media (max-width: 860px) {
  .hero,
  .history-hero,
  .culture-hero,
  .product-hero,
  .allies-hero {
    padding-top: 92px;
    padding-bottom: 58px;
  }
}

@media (max-width: 620px) {
  .hero,
  .history-hero,
  .culture-hero,
  .product-hero,
  .allies-hero {
    padding-top: 88px;
    padding-bottom: 48px;
  }
}
