:root {
    --gold: #C8922A;
    --gold-light: #E8B84B;
    --dark: #0D0D0D;
    --charcoal: #1A1A1A;
    --mid: #2C2C2C;
    --cream: #F5EFE4;
    --text-muted: #888;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--cream);
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 4rem;
    background: linear-gradient(to bottom, rgba(13,13,13,0.95), transparent);
    backdrop-filter: blur(4px);
  }
  .logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
  }
  .logo span { color: var(--cream); }
  nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  nav a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.75;
    transition: opacity 0.2s, color 0.2s;
  }
  nav a:hover { opacity: 1; color: var(--gold-light); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 0 4rem 7rem;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 60% 40%, rgba(200,146,42,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 40% 50% at 85% 80%, rgba(200,146,42,0.07) 0%, transparent 50%),
      linear-gradient(160deg, #0D0D0D 0%, #141410 50%, #0D0D0D 100%);
  }

  /* Animated globe lines */
  .globe {
    position: absolute;
	z-index: 0;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    opacity: 0.18;
    animation: rotate 40s linear infinite;
  }
  @keyframes rotate { from { transform: translateY(-50%) rotate(0deg); } to { transform: translateY(-50%) rotate(360deg); } }

  .hero-content { position: relative; z-index: 2; width: 100%; }
  
  .logo-hero {
  
	height: 75%;
  
  }

  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
  }

  h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 2rem;
  }
  h1 em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero p {
    font-size: 1.1rem;
    color: rgba(245,239,228,0.7);
    max-width: 500px;
    margin-bottom: 3rem;
  }

  .hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    transition: background 0.25s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

  .btn-ghost {
    color: var(--cream);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.6;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: opacity 0.2s;
  }
  .btn-ghost:hover { opacity: 1; }

  .scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    right: 4rem;
    writing-mode: vertical-rl;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .scroll-indicator::after {
    content: '';
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-line 2s ease-in-out infinite;
  }
  @keyframes scroll-line {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
  }

  /* ── STATS BAND ── */
  .stats-band {
    border-top: 1px solid rgba(200,146,42,0.2);
    border-bottom: 1px solid rgba(200,146,42,0.2);
    background: var(--charcoal);
    display: flex;
    justify-content: space-around;
    padding: 3rem 4rem;
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
  }
  .stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.4rem;
  }
  .stat-divider {
    width: 1px;
    background: rgba(200,146,42,0.2);
    align-self: stretch;
  }

  /* ── SECTION BASE ── */
  section { padding: 8rem 4rem; }
  .section-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .section-tag::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
  }
  h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  /* ── ABOUT ── */
  .about {
    background: var(--charcoal);
    /*display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;*/
    align-items: center;
	max-width: 100%;
	overflow:hidden;
  }
  .about-text p {
    color: rgba(245,239,228,0.7);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
	max-width:100%;
  }
  .about-visual {
    position: relative;
    display: flex;
    justify-content: right;
    align-items: right;
	height: auto;
  }
  .avatar-img {
	max-height: 600px;
  }
  .connection-diagram {
    width: 100%;
    max-width: 420px;
  }
  .cd-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    fill: var(--cream);
  }
  .cd-sub {
    font-family: 'Barlow', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    fill: var(--text-muted);
    text-transform: uppercase;
  }

  /* ── COMMODITIES ── */
  .commodities { background: var(--dark); }
  .commodities h2 { max-width: 500px; margin-bottom: 4rem; }
  .commodity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(200,146,42,0.15);
    border: 1px solid rgba(200,146,42,0.15);
  }
  .commodity-card {
    background: var(--dark);
    padding: 2.5rem;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }
  .commodity-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }
  .commodity-card:hover { background: var(--charcoal); }
  .commodity-card:hover::after { transform: scaleX(1); }
  .commodity-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    display: block;
  }
  .commodity-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    color: var(--gold-light);
  }
  .commodity-card p {
    font-size: 0.9rem;
    color: rgba(245,239,228,0.6);
    line-height: 1.6;
  }

  /* ── BRIDGE ── */
  .bridge {
    background: var(--mid);
    position: relative;
    overflow: hidden;
  }
  .bridge-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
  .bridge-line {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(200,146,42,0.3) 20%, rgba(200,146,42,0.3) 80%, transparent);
  }
  .region-block h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .region-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .region-block li {
    font-size: 0.95rem;
    color: rgba(245,239,228,0.7);
    padding-left: 1.2rem;
    position: relative;
  }
  .region-block li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.75rem;
  }

  /* ── VALUES ── */
  .values {
    background: var(--dark);
    text-align: center;
  }
  .values h2 { margin-bottom: 4rem; }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  .value-item {}
  .value-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(200,146,42,0.2);
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  .value-item h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.7rem;
  }
  .value-item p {
    font-size: 0.88rem;
    color: rgba(245,239,228,0.55);
    line-height: 1.6;
  }

  /* ── CONTACT ── */
  .contact {
    background: var(--charcoal);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }
  .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    background: var(--mid);
    border: 1px solid rgba(200,146,42,0.2);
    color: var(--cream);
    padding: 0.9rem 1.2rem;
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }
  .contact-form input:focus,
  .contact-form textarea:focus,
  .contact-form select:focus { border-color: var(--gold); }
  .contact-form textarea { resize: vertical; min-height: 140px; }
  .contact-form select option { background: var(--mid); }
  .contact-form button {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 1rem 2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-start;
  }
  .contact-form button:hover { background: var(--gold-light); }

  .contact-info { padding-top: 0.5rem; }
  .contact-info p { color: rgba(245,239,228,0.65); font-size: 1rem; margin-bottom: 2.5rem; }
  .contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
  .contact-detail-item { display: flex; flex-direction: column; gap: 0.2rem; }
  .contact-detail-item span:first-child {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .contact-detail-item span:last-child {
    font-size: 0.95rem;
    color: rgba(245,239,228,0.75);
  }

  /* ── FOOTER ── */
  footer {
    background: #080808;
    padding: 2.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(200,146,42,0.15);
  }
  footer p {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }
  footer .logo { font-size: 1.2rem; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-content > * {
    animation: fadeUp 0.8s ease both;
  }
  .hero-content > *:nth-child(1) { animation-delay: 0.2s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.4s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.6s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.8s; }

  @media (max-width: 900px) {
    nav { padding: 1.2rem 2rem; }
    nav ul { display: none; }
    section { padding: 5rem 2rem; }
    .hero { padding: 0 2rem 5rem; padding-top: 100px;}
    .about, .contact, .bridge-inner { grid-template-columns: 1fr; gap: 3rem; }
    .stats-band { flex-wrap: wrap; gap: 2rem; padding: 2.5rem 2rem; }
    .stat-divider { display: none; }
    .commodity-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .bridge-line { display: none; }
    .globe { display: none; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
	.about-visual { padding-bottom: 50px; }
  }