*, *::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; overflow-x: hidden; width: 100%; }

  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);
    -webkit-backdrop-filter: blur(16px);
    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; top: 0; right: 0; bottom: 0; left: 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; top: 0; right: 0; bottom: 0; left: 0;
    overflow: hidden;
  }
  .hero-slide {
    position: absolute; top: 0; right: 0; bottom: 0; left: 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 img {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 60%;
    display: block;
  }

  .hero-slide:nth-child(1) {
    animation-delay: 0s;
  }
  
  .hero-slide:nth-child(2) {
    background-image: url('images/photo2.jpg');
    animation-delay: 8s;
  }
  .hero-slide:nth-child(3) {
    background-image: url('images/photo3.jpg');
    animation-delay: 16s;
  }
  .hero-slide:nth-child(4) {
    background-image: url('images/photo4.jpg');
    animation-delay: 24s;
  }
  .hero-slide:nth-child(5) {
    background-image: url('images/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; top: 0; right: 0; bottom: 0; left: 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; top: 0; right: 0; bottom: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .market-card:hover .market-bg { transform: scale(1.05); }
  .market-overlay {
    position: absolute; top: 0; right: 0; bottom: 0; left: 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: 21px;
    line-height: 1.25;
    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 {
    object-fit: cover;
    object-position: center;
    filter: brightness(0.95) saturate(1.05);
  }
  .mc-food .market-bg {
    object-position: center 65%;
    filter: grayscale(0.15) brightness(0.5) contrast(1.15) saturate(0.9);
  }
  .mc-spirits .market-bg {
    object-position: center 60%;
    filter: grayscale(0.1) brightness(0.5) contrast(1.15) saturate(0.95);
  }
  .mc-beauty .market-bg {
    object-position: center 55%;
    filter: grayscale(0.2) brightness(0.45) contrast(1.15) saturate(0.9);
  }


  /* 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; top: 0; right: 0; bottom: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    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 {
    object-fit: contain;
  }
  .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 {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.75) saturate(0.95) contrast(1.05);
  }
  .ct-image-overlay {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.55) 100%);
  }
  .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); }
  a.contact-card { text-decoration: none; color: inherit; cursor: pointer; }
  .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; }
    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; top: 0; right: 0; bottom: 0; left: 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");
  }

  /* ══════════════════════════════════════
     MULTI-PAGE ADDITIONS
     ══════════════════════════════════════ */

  /* Active nav state */
  .nav-links a.active { color: var(--gold); }
  .nav-links a.active::after { content: ''; display: block; width: 100%; height: 1px; background: var(--gold); margin-top: 4px; }

  /* ── PAGE BANNER (sub-page hero) ── */
  .page-banner {
    position: relative;
    min-height: 46vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--black);
    padding: 0;
  }
  .page-banner-bg {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background-size: cover;
    background-position: center 55%;
    filter: grayscale(0.35) brightness(0.55) contrast(1.1);
  }
  .page-banner-overlay {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, var(--black) 100%),
                radial-gradient(ellipse 60% 60% at 20% 20%, rgba(184,154,78,0.10) 0%, transparent 70%);
  }
  .page-banner-content {
    position: relative; z-index: 2;
    padding: 160px 60px 64px;
    max-width: 780px;
  }
  .page-banner-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.08;
    color: var(--white);
    margin-top: 16px;
  }
  .page-banner-title em { font-style: italic; color: var(--gold-light); }
  .page-banner-sub {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(250,250,248,0.6);
    max-width: 540px;
    margin-top: 20px;
  }
  .breadcrumb {
    display: flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 500; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(250,250,248,0.4);
  }
  .breadcrumb a { color: rgba(250,250,248,0.4); text-decoration: none; transition: color 0.3s; }
  .breadcrumb a:hover { color: var(--gold); }
  .breadcrumb .sep { color: rgba(184,154,78,0.4); }
  .breadcrumb .current { color: var(--gold); }

  @media (max-width: 900px) {
    .page-banner { min-height: 38vh; }
    .page-banner-content { padding: 130px 24px 48px; }
  }

  /* ── HOME PAGE TEASER GRID ── */
  #home-teasers { background: var(--black); }
  .teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
  }
  .teaser-card {
    background: linear-gradient(160deg, rgba(184,154,78,0.16) 0%, rgba(184,154,78,0.04) 60%, rgba(184,154,78,0.02) 100%);
    padding: 48px 40px;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    transition: background 0.4s, transform 0.4s;
    border-top: 1px solid rgba(184,154,78,0.35);
  }
  .teaser-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 160px; height: 160px;
    border: 1px solid rgba(184,154,78,0.25);
    border-radius: 50%;
    transition: transform 0.5s ease;
  }
  .teaser-card::after {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 90px; height: 90px;
    border: 1px solid rgba(184,154,78,0.18);
    border-radius: 50%;
    transition: transform 0.5s ease;
  }
  .teaser-card:hover {
    background: linear-gradient(160deg, rgba(184,154,78,0.24) 0%, rgba(184,154,78,0.07) 60%, rgba(184,154,78,0.03) 100%);
    transform: translateY(-4px);
  }
  .teaser-card:hover::before { transform: scale(1.15) translate(-6px, 6px); }
  .teaser-card:hover::after { transform: scale(1.15) translate(-6px, 6px); }
  .teaser-card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: var(--gold-light);
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: block;
    position: relative;
  }
  .teaser-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
  }
  .teaser-card-text {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(250,250,248,0.6);
    margin-bottom: 24px;
    position: relative;
  }
  .teaser-card-link {
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold-light);
    display: flex; align-items: center; gap: 8px;
    position: relative;
  }
  .teaser-card-link::after { content: '→'; transition: transform 0.3s; }
  .teaser-card:hover .teaser-card-link::after { transform: translateX(4px); }
  @media (max-width: 900px) {
    .teaser-grid { grid-template-columns: 1fr; }
  }

  /* ── DOCUMENTATION PAGE ── */
  #documents { background: var(--dark); }
  .doc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    max-width: 1000px;
    margin: 60px auto 0;
  }
  .doc-card {
    background: var(--mid);
    padding: 56px 44px;
    transition: background 0.3s;
  }
  .doc-card:hover { background: #2d2d2d; }
  .doc-card-icon {
    width: 52px; height: 52px;
    border: 1px solid rgba(184,154,78,0.3);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 28px;
  }
  .doc-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 14px;
  }
  .doc-card-text {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(250,250,248,0.55);
    margin-bottom: 12px;
  }
  .doc-card-meta {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(250,250,248,0.35);
    margin-bottom: 28px;
  }
  .doc-download-btn {
    background: var(--gold);
    color: var(--black);
    padding: 14px 32px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
  }
  .doc-download-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
  .doc-download-btn.is-disabled {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(250,250,248,0.35);
    cursor: not-allowed;
    pointer-events: none;
  }
  .doc-note {
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 24px 32px;
    border-left: 2px solid var(--gold);
    background: rgba(184,154,78,0.05);
    font-size: 13px;
    line-height: 1.8;
    color: rgba(250,250,248,0.55);
  }
  @media (max-width: 900px) {
    .doc-grid { grid-template-columns: 1fr; }
  }

  /* ══════════════════════════════════════
     FAQ SECTION
     ══════════════════════════════════════ */
  #faq { background: var(--dark); }
  .faq-list {
    max-width: 820px;
    margin: 50px auto 0;
  }
  .faq-item {
    border-bottom: 1px solid rgba(184,154,78,0.2);
    padding: 22px 0;
  }
  .faq-item summary {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 400;
    color: var(--white);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s;
  }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item p {
    font-size: 13.5px;
    line-height: 1.8;
    color: rgba(250,250,248,0.6);
    margin-top: 14px;
    max-width: 700px;
  }

  /* ══════════════════════════════════════
     LEGAL ARTICLE PAGES (Privacy Policy / T&C)
     ══════════════════════════════════════ */
  .legal-article {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .legal-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 22px;
    color: var(--gold-light);
    margin-top: 44px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(184,154,78,0.25);
  }
  .legal-h2:first-child { margin-top: 0; }
  .legal-p {
    font-size: 14px;
    line-height: 1.85;
    color: rgba(250,250,248,0.68);
    margin-bottom: 14px;
  }
  .legal-sub1 { padding-left: 22px; }
  .legal-sub2 { padding-left: 44px; }
  .legal-toolbar {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    max-width: 760px; margin: 0 auto 40px;
    padding: 20px 24px;
    border: 1px solid rgba(184,154,78,0.25);
    background: rgba(184,154,78,0.05);
  }
  .legal-toolbar-text {
    font-size: 12.5px;
    color: rgba(250,250,248,0.55);
    line-height: 1.6;
  }
  .legal-toolbar-text strong { color: var(--gold-light); }

  /* ══════════════════════════════════════
     MARKETS PAGE — PRODUCT RANGE & WHY US
     ══════════════════════════════════════ */
  #product-range { background: var(--black); }
  .range-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 56px;
  }
  .range-block {
    background: var(--dark);
    padding: 40px 32px;
    border-top: 1px solid rgba(184,154,78,0.3);
  }
  .range-block-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 18px;
  }
  .range-block-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
  }
  .range-list {
    list-style: none;
  }
  .range-list li {
    font-size: 12.5px;
    line-height: 1.7;
    color: rgba(250,250,248,0.6);
    padding: 12px 0;
    border-top: 1px solid rgba(184,154,78,0.12);
  }
  .range-list li:first-child { border-top: none; padding-top: 0; }
  .range-list li strong {
    color: var(--gold-light);
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
    font-size: 13px;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 56px;
  }
  .why-item {
    background: var(--mid);
    padding: 36px 28px;
  }
  .why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 18px;
  }
  .why-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .why-item p {
    font-size: 12px;
    line-height: 1.7;
    color: rgba(250,250,248,0.55);
  }

  @media (max-width: 900px) {
    .range-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .why-grid { grid-template-columns: 1fr; }
  }

  /* ══════════════════════════════════════
     CAPABILITIES PAGE — PROCESS & QUALITY
     ══════════════════════════════════════ */
  #process { background: var(--black); }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 56px;
  }
  .process-step {
    background: var(--dark);
    padding: 36px 28px;
    position: relative;
  }
  .process-step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 300;
    color: rgba(184,154,78,0.3);
    margin-bottom: 16px;
  }
  .process-step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .process-step p {
    font-size: 12px;
    line-height: 1.7;
    color: rgba(250,250,248,0.55);
  }

  #quality {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }
  .quality-content p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(250,250,248,0.65);
    margin-bottom: 18px;
  }
  .quality-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  @media (max-width: 900px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    #quality { grid-template-columns: 1fr; gap: 48px; }
  }
  @media (max-width: 560px) {
    .process-grid { grid-template-columns: 1fr; }
  }

  /* ══════════════════════════════════════
     BLOG / RESOURCES
     ══════════════════════════════════════ */
  #blog-grid { background: var(--black); }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 56px;
  }
  .blog-card {
    background: var(--dark);
    padding: 40px 32px;
    text-decoration: none;
    display: block;
    border-top: 1px solid rgba(184,154,78,0.3);
    transition: background 0.3s;
  }
  .blog-card:hover { background: var(--mid); }
  .blog-card-tag {
    font-size: 10px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 18px; display: block;
  }
  .blog-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 400;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.3;
  }
  .blog-card-excerpt {
    font-size: 13px; line-height: 1.7;
    color: rgba(250,250,248,0.55);
    margin-bottom: 20px;
  }
  .blog-card-link {
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold-light);
    display: flex; align-items: center; gap: 8px;
  }
  .blog-card-link::after { content: '→'; transition: transform 0.3s; }
  .blog-card:hover .blog-card-link::after { transform: translateX(4px); }

  .blog-article {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .blog-article-meta {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 30px;
  }
  .blog-article h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 500;
    color: var(--gold-light);
    margin-top: 40px; margin-bottom: 16px;
  }
  .blog-article p {
    font-size: 15px; line-height: 1.9;
    color: rgba(250,250,248,0.68);
    margin-bottom: 18px;
  }
  .blog-article ul {
    margin: 0 0 20px 20px;
  }
  .blog-article li {
    font-size: 15px; line-height: 1.85;
    color: rgba(250,250,248,0.68);
    margin-bottom: 10px;
  }
  .blog-article li strong { color: var(--gold-light); }
  .blog-cta {
    max-width: 720px; margin: 50px auto 0;
    padding: 32px; text-align: center;
    border: 1px solid rgba(184,154,78,0.3);
    background: rgba(184,154,78,0.05);
  }
  .blog-cta p { margin-bottom: 20px; color: rgba(250,250,248,0.6); font-size: 14px; }

  @media (max-width: 900px) {
    .blog-grid { grid-template-columns: 1fr; }
  }

  /* ══════════════════════════════════════
     MOBILE NAVIGATION (hamburger menu)
     ══════════════════════════════════════ */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
    padding: 0;
  }
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 900px) {
    nav { padding: 18px 24px; }
    nav.scrolled { padding: 14px 24px; }
    .nav-toggle { display: flex; }
    .nav-links {
      display: flex;
      position: fixed;
      top: 0; right: 0;
      height: 100vh;
      width: min(78vw, 320px);
      background: rgba(10,10,10,0.98);
      -webkit-backdrop-filter: blur(16px);
      backdrop-filter: blur(16px);
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      gap: 28px;
      padding: 40px;
      transform: translateX(100%);
      transition: transform 0.35s ease;
      border-left: 1px solid rgba(184,154,78,0.2);
      z-index: 150;
    }
    .nav-links.is-open { transform: translateX(0); }
    .nav-links a { font-size: 15px; }
    .nav-cta {
      position: fixed;
      bottom: 50px;
      right: 0;
      width: min(78vw, 320px);
      margin: 0 auto;
      text-align: center;
      transform: translateX(100%);
      transition: transform 0.35s ease;
      z-index: 150;
      display: block;
      box-sizing: border-box;
    }
    .nav-cta.is-open { transform: translateX(0); }
  }

  .nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 90;
  }
  .nav-overlay.is-open { display: block; }
