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

  :root {
    --gold: #B89A4E;
    --gold-light: #D4B870;
    --gold-pale: #F0E4C0;
    --black: #0A0A0A;
    --dark: #111111;
    --dark2: #1A1A1A;
    --mid: #2A2A2A;
    --grey: #888;
    --white: #FAFAF8;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 60px;
    transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
  }
  nav.scrolled {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(16px);
    padding: 16px 60px;
    border-bottom: 1px solid rgba(184,154,78,0.15);
  }
  .nav-logo {
    display: flex; align-items: center;
  }
  .nav-logo img {
    height: 46px;
    width: auto;
    display: block;
    transition: height 0.4s;
  }
  nav.scrolled .nav-logo img {
    height: 38px;
  }
  .nav-links {
    display: flex; gap: 40px; list-style: none;
  }
  .nav-links a {
    color: rgba(250,250,248,0.7);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 28px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
  }
  .nav-cta:hover { background: var(--gold); color: var(--black); }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
    background: var(--black);
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(184,154,78,0.08) 0%, transparent 70%),
                radial-gradient(ellipse 40% 80% at 85% 20%, rgba(184,154,78,0.05) 0%, transparent 60%);
  }
  .hero-slideshow {
    position: absolute; inset: 0;
    overflow: hidden;
  }
  .hero-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center 60%;
    opacity: 0;
    filter: grayscale(0.35) brightness(0.55) contrast(1.1);
    animation: heroFade 40s infinite;
  }
  
  .hero-slide:nth-child(1) {
    background-image: url('./photo1.jpg');
    animation-delay: 0s;
  }
  
  .hero-slide:nth-child(2) {
    background-image: url('./photo2.jpg');
    animation-delay: 8s;
  }
  .hero-slide:nth-child(3) {
    background-image: url('./photo3.jpg');
    animation-delay: 16s;
  }
  .hero-slide:nth-child(4) {
    background-image: url('./photo4.jpg');
    animation-delay: 24s;
  }
  .hero-slide:nth-child(5) {
    background-image: url('./photo5.jpg');
    animation-delay: 32s;
  }
  @keyframes heroFade {
    0% { opacity: 0; }
    2.5% { opacity: 1; }
    17.5% { opacity: 1; }
    20% { opacity: 0; }
    100% { opacity: 0; }
  }
  .hero-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--black) 0%, rgba(10,10,10,0.75) 35%, rgba(10,10,10,0.2) 70%, transparent 100%),
                linear-gradient(to top, var(--black) 0%, transparent 35%);
    }
  .hero-bottles {
    position: absolute; right: -40px; bottom: 0; top: 0;
    width: 55%;
    display: flex; align-items: flex-end;
    pointer-events: none;
  }
  /* SVG bottle group */
  .bottles-svg {
    width: 100%; height: 100%;
    opacity: 0.18;
  }

  .hero-content {
    position: relative; z-index: 2;
    padding: 120px 60px 80px;
    max-width: 620px;
  }
  .hero-eyebrow {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 32px;
  }
  .hero-eyebrow span {
    font-size: 11px; font-weight: 500; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold);
  }
  .hero-eyebrow::after {
    content: ''; display: block; width: 60px; height: 1px;
    background: var(--gold); opacity: 0.5;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(52px, 7vw, 88px);
    line-height: 1.05;
    margin-bottom: 28px;
    color: var(--white);
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }
  .hero-subtitle {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(250,250,248,0.65);
    max-width: 480px;
    margin-bottom: 48px;
  }
  .hero-actions {
    display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 16px 40px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-ghost {
    color: rgba(250,250,248,0.7);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: flex; align-items: center; gap: 10px;
    transition: color 0.3s;
  }
  .btn-ghost:hover { color: var(--gold); }
  .btn-ghost::after { content: '→'; font-size: 16px; }

  /* Floating bottle illustration */
  .hero-visual {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 55%;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
  }
  .bottle-cluster {
    position: relative;
    width: 100%; height: 100%;
  }
  .bottle-item {
    position: absolute;
    animation: floatBottle 6s ease-in-out infinite;
  }
  @keyframes floatBottle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
  }

  /* ── TICKER ── */
  .ticker {
    background: var(--gold);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .ticker-inner {
    display: inline-flex;
    animation: tickerScroll 30s linear infinite;
  }
  .ticker-inner span {
    color: var(--black);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0 40px;
  }
  .ticker-inner .dot {
    color: rgba(0,0,0,0.3);
    padding: 0;
  }
  @keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ── SECTIONS ── */
  section { padding: 120px 60px; }

  .section-label {
    font-size: 10px; font-weight: 600; letter-spacing: 4px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.1;
    color: var(--white);
  }
  .section-title em { font-style: italic; color: var(--gold-light); }

  /* ── ABOUT ── */
  #about {
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }
  .about-text p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(250,250,248,0.65);
    margin-top: 28px;
  }
  .about-text p + p { margin-top: 20px; }
  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .stat-card {
    background: var(--mid);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }
  .stat-card:hover { background: #2f2f2f; }
  .stat-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s;
  }
  .stat-card:hover::before { transform: scaleX(1); }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
  }
  .stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(250,250,248,0.5);
    margin-top: 8px;
  }

  /* ── MARKETS ── */
  #markets { background: var(--black); }
  .markets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
  }
  .market-card {
    position: relative;
    height: 480px;
    overflow: hidden;
    cursor: default;
    background: var(--dark2);
  }
  .market-bg {
    position: absolute; inset: 0;
    transition: transform 0.6s ease;
  }
  .market-card:hover .market-bg { transform: scale(1.05); }
  .market-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 30%, rgba(0,0,0,0.05) 100%);
  }
  .market-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 36px;
  }
  .market-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 12px;
  }
  .market-desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(250,250,248,0.6);
    transform: translateY(10px); opacity: 0;
    transition: all 0.4s;
  }
  .market-card:hover .market-desc { transform: translateY(0); opacity: 1; }
  .market-line {
    width: 32px; height: 1px;
    background: var(--gold);
    margin-bottom: 16px;
    transition: width 0.4s;
  }
  .market-card:hover .market-line { width: 64px; }

  /* Market card visuals — custom illustrated glass packaging per segment */
  .mc-food .market-bg, .mc-spirits .market-bg, .mc-beauty .market-bg {
    background-size: cover;
    background-position: center;
    filter: brightness(0.95) saturate(1.05);
  }
  .mc-food .market-bg {
    background-position: center 65%;
    filter: grayscale(0.15) brightness(0.5) contrast(1.15) saturate(0.9);
  }
  .mc-spirits .market-bg {
    background-position: center 60%;
    filter: grayscale(0.1) brightness(0.5) contrast(1.15) saturate(0.95);
  }
  .mc-beauty .market-bg {
    background-position: center 55%;
    filter: grayscale(0.2) brightness(0.45) contrast(1.15) saturate(0.9);
  }
  .mc-food .market-bg { background-image: url('./photo6.jpg'); }
  .mc-spirits .market-bg { background-image: url('./photo7.jpg'); }
  .mc-beauty .market-bg { background-image: url('./photo8.jpg'); }

  /* Decorative bottle shapes in cards */
  .card-bottle {
    position: absolute;
    right: 20px; bottom: 60px;
    opacity: 0.12;
    transition: opacity 0.4s, transform 0.4s;
  }
  .market-card:hover .card-bottle { opacity: 0.22; transform: scale(1.05) rotate(-3deg); }

  /* ── CAPABILITIES ── */
  #capabilities {
    background: var(--dark);
  }
  .cap-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
  }
  .cap-intro {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(250,250,248,0.6);
    margin-top: 28px;
  }
  .cap-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .cap-card {
    background: var(--mid);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }
  .cap-card:hover { background: #2d2d2d; }
  .cap-card-photo {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.16;
    filter: grayscale(0.3);
    transition: opacity 0.4s, transform 0.6s ease;
    z-index: 0;
  }
  .cap-card:hover .cap-card-photo { opacity: 0.28; transform: scale(1.04); }
  .cap-card-photo-contain {
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat;
  }
  .cap-card > *:not(.cap-card-photo) { position: relative; z-index: 1; }
  .cap-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 300;
    color: rgba(184,154,78,0.1);
    position: absolute;
    top: -10px; right: 20px;
    line-height: 1;
    transition: color 0.3s;
  }
  .cap-card:hover .cap-number { color: rgba(184,154,78,0.2); }
  .cap-icon-wrap {
    width: 48px; height: 48px;
    border: 1px solid rgba(184,154,78,0.3);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 28px;
    transition: border-color 0.3s, background 0.3s;
  }
  .cap-card:hover .cap-icon-wrap {
    border-color: var(--gold);
    background: rgba(184,154,78,0.1);
  }
  .cap-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 14px;
  }
  .cap-card-text {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(250,250,248,0.55);
  }

  /* ── CAPE TOWN ── */
  #capetown {
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    min-height: 600px;
  }
  .ct-content {
    padding: 100px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .ct-content .section-title { margin-bottom: 28px; }
  .ct-content p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(250,250,248,0.6);
    margin-bottom: 18px;
  }
  .ct-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(250,250,248,0.5);
  }
  .ct-detail::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }
  .ct-image {
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
  }
  .ct-image-placeholder {
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.75) saturate(0.95) contrast(1.05);
    background-image: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.55) 100%),
                       url('./photo9.jpg');
  }
  .ct-badge {
    position: absolute;
    bottom: 40px; left: 40px;
    background: var(--gold);
    color: var(--black);
    padding: 20px 28px;
  }
  .ct-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
  }
  .ct-badge-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* ── CONTACT ── */
  #contact {
    background: var(--black);
    text-align: center;
  }
  .contact-subtitle {
    font-size: 15px;
    color: rgba(250,250,248,0.55);
    max-width: 500px;
    margin: 20px auto 64px;
    line-height: 1.8;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    max-width: 1140px;
    margin: 0 auto 60px;
  }
  .contact-card {
    background: var(--dark);
    padding: 48px 36px;
    transition: background 0.3s;
  }
  .contact-card:hover { background: var(--mid); }
  .contact-card-icon {
    width: 44px; height: 44px;
    border: 1px solid rgba(184,154,78,0.3);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 18px;
  }
  .contact-card-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .contact-card-value {
    font-size: 14px;
    color: rgba(250,250,248,0.75);
    line-height: 1.6;
    text-decoration: none;
  }
  .contact-card-value a { color: inherit; text-decoration: none; }
  .contact-card-value a:hover { color: var(--gold-light); }
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-field {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    padding: 16px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    width: 100%;
    outline: none;
    transition: border-color 0.3s;
  }
  .form-field::placeholder { color: rgba(255,255,255,0.3); }
  .form-field:focus { border-color: var(--gold); }
  textarea.form-field { resize: vertical; min-height: 120px; }
  .form-submit {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 18px 48px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
  }
  .form-submit:hover { background: var(--gold-light); }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-logo img { height: 38px; width: auto; display: block; }
  .footer-links {
    display: flex; gap: 36px; list-style: none;
  }
  .footer-links a {
    color: rgba(250,250,248,0.4);
    font-size: 11px; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase;
    text-decoration: none; transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-copy {
    font-size: 11px;
    color: rgba(250,250,248,0.25);
    letter-spacing: 1px;
  }

  /* ── GOLD DIVIDER ── */
  .gold-divider {
    width: 60px; height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin: 32px 0;
  }

  /* ── GLOBAL NETWORK ── */
  #network {
    background: var(--dark);
    text-align: center;
  }
  .network-intro {
    max-width: 700px;
    margin: 0 auto 64px;
  }
  .network-intro .section-label { text-align: center; }
  .network-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(250,250,248,0.55);
    margin-top: 24px;
  }
  .network-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .network-card {
    background: var(--mid);
    padding: 48px 24px;
    transition: background 0.3s;
  }
  .network-card:hover { background: #1c1c1a; }
  .network-card.is-hq { background: #211d12; }
  .network-card-label {
    font-size: 10px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 28px; text-align: left;
    min-height: 14px;
  }
  .network-card-flag { font-size: 28px; margin-bottom: 24px; }
  .network-card-city {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; color: var(--white); margin-bottom: 6px;
  }
  .network-card-country {
    font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--gold);
  }
  @media (max-width: 900px) {
    .network-grid { grid-template-columns: repeat(2, 1fr); max-width: 500px; }
  }
  @media (max-width: 500px) {
    .network-grid { grid-template-columns: 1fr; max-width: 320px; }
  }

  /* ── SCROLL ANIMATIONS ── */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-left {
    opacity: 0; transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right {
    opacity: 0; transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }

  .delay-1 { transition-delay: 0.1s; }
  .delay-2 { transition-delay: 0.2s; }
  .delay-3 { transition-delay: 0.3s; }
  .delay-4 { transition-delay: 0.4s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) and (min-width: 901px) {
    .contact-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
  }
  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    nav.scrolled { padding: 14px 24px; }
    .nav-links { display: none; }
    section { padding: 80px 24px; }
    #about { grid-template-columns: 1fr; gap: 60px; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .markets-grid { grid-template-columns: 1fr; }
    .market-card { height: 360px; }
    .cap-header { grid-template-columns: 1fr; gap: 32px; }
    .cap-cards { grid-template-columns: 1fr; }
    .cap-card { padding: 36px 28px; }
    #capetown { grid-template-columns: 1fr; }
    .ct-content { padding: 60px 24px; }
    .ct-image { height: 300px; }
    .contact-grid { grid-template-columns: 1fr; max-width: 400px; }
    .form-row { grid-template-columns: 1fr; }
    footer { flex-direction: column; padding: 40px 24px; gap: 20px; }
    .footer-links { gap: 20px; flex-wrap: wrap; justify-content: center; }
    .hero-visual { display: none; }
    .hero-content { padding: 140px 24px 80px; max-width: 100%; }
  }

  /* Glowing dot decoration */
  .glow-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
    margin: 0 8px;
    box-shadow: 0 0 8px var(--gold);
  }

  /* Grain texture overlay */
  body::after {
    content: '';
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    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)'/%3E%3C/svg%3E");
  }
