
  :root {
    --gold: #C9A84C;
    --gold-light: #E2C97E;
    --gold-dark: #8B6914;
    --black: #0A0A08;
    --off-black: #111109;
    --dark: #161612;
    --text: #E8E0CC;
    --text-muted: #8A8270;
    --white: #F5F0E8;
  }

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

  html { scroll-behavior: smooth; }

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

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

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 4rem;
    background: linear-gradient(to bottom, rgba(10,10,8,.95) 0%, transparent 100%);
  }

  .nav-logo {
    display: flex; align-items: center; gap: .75rem;
    text-decoration: none;
  }
  .nav-logo img { height: 36px; }
  .nav-logo-text {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 2.2rem;
    color: var(--gold-light);
    letter-spacing: .2em;
    text-transform: lowercase;
  }
  .nav-logo-text strong { font-weight: 600; }

  .nav-links {
    display: flex; gap: 2.5rem; list-style: none;
  }
  .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition: color .3s;
  }
  .nav-links a:hover { color: var(--gold-light); }

  .nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: .6rem 1.8rem;
    font-family: 'Jost', sans-serif;
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .3s, color .3s;
    text-decoration: none;
  }
  .nav-cta:hover { background: var(--gold); color: var(--black); }

  /* ── HERO ── */
  .hero {
    position: relative;
    height: 100vh; min-height: 700px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, #2a1e00 0%, #0A0A08 70%);
  }
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: 
      radial-gradient(circle at 20% 80%, rgba(201,168,76,.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(201,168,76,.05) 0%, transparent 50%);
  }

  /* Animated concentric rings */
  .hero-rings {
    position: absolute;
    width: 700px; height: 700px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
  .hero-rings span {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(201,168,76,.12);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    animation: ring-pulse 6s ease-in-out infinite;
  }
  .hero-rings span:nth-child(1) { width: 220px; height: 220px; animation-delay: 0s; }
  .hero-rings span:nth-child(2) { width: 380px; height: 380px; animation-delay: 1s; border-color: rgba(201,168,76,.08); }
  .hero-rings span:nth-child(3) { width: 560px; height: 560px; animation-delay: 2s; border-color: rgba(201,168,76,.05); }
  .hero-rings span:nth-child(4) { width: 700px; height: 700px; animation-delay: 3s; border-color: rgba(201,168,76,.03); }

  @keyframes ring-pulse {
    0%, 100% { opacity: .6; }
    50% { opacity: 1; }
  }

  .hero-symbol {
    position: relative; z-index: 2;
    width: 80px; height: 80px; margin-bottom: 2rem;
    opacity: .9;
    animation: symbol-glow 4s ease-in-out infinite;
  }
  @keyframes symbol-glow {
    0%, 100% { filter: drop-shadow(0 0 12px rgba(201,168,76,.4)); }
    50% { filter: drop-shadow(0 0 28px rgba(201,168,76,.8)); }
  }

  .hero-eyebrow {
    font-size: .7rem; letter-spacing: .4em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.5rem; position: relative; z-index: 2;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    position: relative; z-index: 2;
    margin-bottom: 1.5rem;
    letter-spacing: -.01em;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-sub {
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: .05em;
    max-width: 480px;
    line-height: 1.8;
    position: relative; z-index: 2;
    margin-bottom: 3rem;
  }

  .hero-actions {
    display: flex; gap: 1.5rem; align-items: center;
    position: relative; z-index: 2;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 1rem 2.5rem;
    font-family: 'Jost', sans-serif;
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
    border: none; cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background .3s;
  }
  .btn-primary:hover { background: var(--gold-light); }

  .btn-ghost {
    color: var(--text-muted);
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex; align-items: center; gap: .5rem;
    transition: color .3s;
  }
  .btn-ghost:hover { color: var(--gold-light); }
  .btn-ghost::before {
    content: '▶';
    font-size: .6rem;
    color: var(--gold);
  }

  .hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: .75rem;
  }
  .hero-scroll span {
    font-size: .65rem; letter-spacing: .3em; color: var(--text-muted); text-transform: uppercase;
  }
  .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-drop 2s ease-in-out infinite;
  }
  @keyframes scroll-drop {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  /* ── SECTION BASE ── */
  section { padding: 8rem 4rem; }

  .section-label {
    font-size: .65rem; letter-spacing: .4em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem; display: block;
  }

  h2.display {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
  }
  h2.display em { font-style: italic; color: var(--gold-light); }

  .body-text {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 1.1rem;
    max-width: 540px;
  }

  /* ── INTRO BAND ── */
  .intro-band {
    background: var(--dark);
    border-top: 1px solid rgba(201,168,76,.15);
    border-bottom: 1px solid rgba(201,168,76,.15);
    padding: 3rem 4rem;
    display: flex; align-items: center; justify-content: center;
    gap: 4rem; flex-wrap: wrap;
  }
  .intro-stat {
    text-align: center;
  }
  .intro-stat .number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold-light);
    display: block;
  }
  .intro-stat .label {
    font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--text-muted); margin-top: .25rem;
  }
  .intro-divider {
    width: 1px; height: 60px;
    background: rgba(201,168,76,.2);
  }

  /* ── VIDEO SECTION ── */
  .videos-section { background: var(--off-black); }

  .videos-header {
    text-align: center; margin-bottom: 5rem;
  }

  .video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px; margin: 0 auto;
  }

  .video-card {
    position: relative; background: var(--dark);
    border: 1px solid rgba(201,168,76,.1);
    overflow: hidden;
    transition: border-color .3s;
    cursor: pointer;
  }
  .video-card:hover { border-color: rgba(201,168,76,.4); }
  .video-card.featured {
    grid-column: 1 / -1;
    display: grid; grid-template-columns: 1fr 1fr;
  }

  .video-thumb {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1408 0%, #2a1e00 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .video-card.featured .video-thumb { aspect-ratio: auto; min-height: 300px; }

  .video-thumb::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,.15) 0%, transparent 70%);
  }

  .play-btn {
    width: 64px; height: 64px;
    border: 1px solid rgba(201,168,76,.6);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light);
    font-size: .8rem;
    transition: background .3s, transform .3s;
    position: relative; z-index: 1;
  }
  .video-card:hover .play-btn {
    background: rgba(201,168,76,.15);
    transform: scale(1.1);
  }

  .video-info {
    padding: 1.75rem;
  }
  .video-card.featured .video-info {
    padding: 3rem;
    display: flex; flex-direction: column; justify-content: center;
  }

  .video-number {
    font-size: .65rem; letter-spacing: .3em; color: var(--gold);
    text-transform: uppercase; margin-bottom: .75rem;
  }
  .video-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 400;
    color: var(--white); margin-bottom: .75rem;
    line-height: 1.2;
  }
  .video-card.featured .video-title { font-size: 2rem; }
  .video-desc {
    font-size: 1rem; color: var(--text-muted); line-height: 1.7;
  }

  /* ── HOW IT WORKS ── */
  .how-section {
    background: var(--black);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center; max-width: 1200px; margin: 0 auto;
  }
  .how-steps { list-style: none; }
  .how-step {
    display: flex; gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(201,168,76,.08);
  }
  .how-step:last-child { border-bottom: none; }
  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300;
    color: rgba(201,168,76,.2);
    line-height: 1; flex-shrink: 0;
    width: 3.5rem;
  }
  .step-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 400;
    color: var(--white); margin-bottom: .5rem;
  }
  .step-content p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; }

  /* ── DUAL PATH ── */
  .dual-section {
    background: var(--dark);
    max-width: 100%;
    padding: 8rem 4rem;
  }
  .dual-header { text-align: center; margin-bottom: 5rem; }

  .dual-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    max-width: 1100px; margin: 0 auto;
    border: 1px solid rgba(201,168,76,.15);
  }

  .dual-card {
    padding: 4rem;
    border-right: 1px solid rgba(201,168,76,.15);
  }
  .dual-card:last-child { border-right: none; }

  .dual-icon {
    width: 56px; height: 56px; margin-bottom: 2rem;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(201,168,76,.3);
    color: var(--gold-light); font-size: 1.5rem;
  }

  .dual-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 300;
    color: var(--white); margin-bottom: 1rem;
  }
  .dual-card .eyebrow {
    font-size: 1rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem; display: block;
  }
  .dual-card p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; }

  .dual-features {
    list-style: none; margin-top: 2rem;
  }
  .dual-features li {
    font-size: 1rem; color: var(--text-muted);
    padding: .5rem 0;
    border-bottom: 1px solid rgba(201,168,76,.06);
    display: flex; align-items: center; gap: .75rem;
  }
  .dual-features li::before {
    content: '—';
    color: var(--gold);
  }

  /* ── TRIPARTITE ── */
  .tri-section {
    max-width: 1200px; margin: 0 auto;
    padding: 8rem 4rem;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
  }
  .tri-visual {
    position: relative; display: flex;
    align-items: center; justify-content: center;
    height: 420px;
  }
  .tri-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
  }
  .tri-ring-1 {
    width: 160px; height: 160px;
    border-color: rgba(201,168,76,.6);
    background: rgba(201,168,76,.05);
    z-index: 3;
  }
  .tri-ring-2 {
    width: 280px; height: 280px;
    border-color: rgba(201,168,76,.3);
    background: rgba(201,168,76,.02);
    z-index: 2;
  }
  .tri-ring-3 {
    width: 400px; height: 400px;
    border-color: rgba(201,168,76,.15);
    z-index: 1;
  }
  .tri-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: .9rem; color: var(--gold-light);
    letter-spacing: .1em;
    position: absolute;
  }
  .tri-label-1 { z-index: 4; font-size: 1rem; }
  .tri-label-2 { top: 50%; left: 50%; transform: translate(-50%, -160px); z-index: 4; font-size: .8rem; color: var(--text-muted); white-space: nowrap; }
  .tri-label-3 { bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 4; font-size: .75rem; color: var(--text-muted); white-space: nowrap; }

  /* ── INVESTOR TYPES ── */
  .investor-section {
    background: var(--off-black);
    padding: 8rem 4rem;
  }
  .investor-header { text-align: center; margin-bottom: 5rem; }

  .investor-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; max-width: 1100px; margin: 0 auto;
  }

  .investor-card {
    padding: 3rem 2.5rem;
    border: 1px solid rgba(201,168,76,.1);
    background: var(--dark);
    position: relative; overflow: hidden;
    transition: border-color .3s;
  }
  .investor-card:hover { border-color: rgba(201,168,76,.3); }

  .investor-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0; transition: opacity .3s;
  }
  .investor-card:hover::before { opacity: 1; }

  .investor-card .type {
    font-size: .65rem; letter-spacing: .35em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.25rem; display: block;
  }
  .investor-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 300;
    color: var(--white); margin-bottom: 1rem;
    line-height: 1.2;
  }
  .investor-card p {
    font-size: 1rem; color: var(--text-muted); line-height: 1.75;
  }

  /* ── CTA ── */
  .cta-section {
    text-align: center;
    padding: 10rem 4rem;
    background: var(--black);
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,.06) 0%, transparent 70%);
  }
  .cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1; color: var(--white);
    margin-bottom: 1.5rem; position: relative; z-index: 1;
  }
  .cta-section h2 em { font-style: italic; color: var(--gold-light); }
  .cta-section p {
    color: var(--text-muted); font-size: 1rem;
    max-width: 480px; margin: 0 auto 3rem;
    line-height: 1.8; position: relative; z-index: 1;
  }
  .cta-actions {
    display: flex; gap: 1.5rem; justify-content: center; align-items: center;
    position: relative; z-index: 1;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    border-top: 1px solid rgba(201,168,76,.1);
    padding: 4rem;
  }
  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
  }
  .footer-brand p {
    font-size: 1rem; color: var(--text-muted);
    line-height: 1.8; margin-top: 1.25rem; max-width: 280px;
  }
  .footer-col h4 {
    font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: .75rem; }
  .footer-col a {
    color: var(--text-muted); text-decoration: none;
    font-size: .82rem; transition: color .3s;
  }
  .footer-col a:hover { color: var(--gold-light); }
  .footer-bottom {
    max-width: 1200px; margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(201,168,76,.08);
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-bottom p { font-size: .75rem; color: var(--text-muted); }

  /* ── ANNOTATION LABELS (design mockup) ── */
  .annotation {
    display: inline-block;
    background: rgba(201,168,76,.12);
    border: 1px dashed rgba(201,168,76,.4);
    color: var(--gold);
    font-size: .65rem; letter-spacing: .1em;
    padding: .25rem .75rem;
    margin-bottom: 1rem;
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--gold-dark); }

  /* Responsive Video Container */
.video-thumb {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* This creates the perfect 16:9 aspect ratio */
  background-color: #000;
  overflow: hidden;
  border-radius: 8px; /* Optional: rounds the corners of the video */
}

/* Force the iframe to fill the container */
.video-thumb iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Keep the placeholder play button centered for the ones without iframes yet */
.video-thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* ── Contact Section Layout ─────────────────────────────────── */
  .contact-section {
    padding: 8rem 4rem;
    background: var(--dark);
    max-width: 100%;
  }

  .contact-header {
    text-align: center;
    margin-bottom: 5rem;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
  }

  /* ── Left Column — Contact Info ──────────────────────────────── */
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(201,168,76,.08);
  }

  .contact-info-item:last-child {
    border-bottom: none;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: 1px solid rgba(201,168,76,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: .9rem;
    margin-top: .1rem;
  }

  .contact-info-label {
    font-size: .6rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .4rem;
    display: block;
  }

  .contact-info-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ── Right Column — The Form ─────────────────────────────────── */
  .contact-form-wrap {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(201,168,76,.15);
    border-radius: 4px;
    padding: 3rem;
  }

  /* Form fields */
  .rg-field {
    margin-bottom: 1.25rem;
  }

  .rg-field label {
    display: block;
    font-size: .65rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: .5rem;
  }

  .rg-field input,
  .rg-field textarea,
  .rg-field select {
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 0;
    color: var(--text);
    font-family: 'Jost', sans-serif;
    font-size: .875rem;
    font-weight: 300;
    padding: .85rem 1rem;
    transition: border-color .3s;
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
  }

  .rg-field input::placeholder,
  .rg-field textarea::placeholder {
    color: rgba(138,130,112,.4);
  }

  .rg-field input:focus,
  .rg-field textarea:focus,
  .rg-field select:focus {
    border-color: rgba(201,168,76,.6);
  }

  .rg-field textarea {
    resize: vertical;
    min-height: 130px;
  }

  .rg-field select option {
    background: var(--dark);
    color: var(--text);
  }

  /* Two-column row for name + phone */
  .rg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* Submit button — reuses .btn-primary from realgold.css */
  .rg-submit {
    width: 100%;
    margin-top: .5rem;
    background: var(--gold);
    color: var(--black);
    padding: 1rem 2.5rem;
    font-family: 'Jost', sans-serif;
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background .3s;
  }

  .rg-submit:hover { background: var(--gold-light); }

  .rg-submit:disabled {
    opacity: .5;
    cursor: not-allowed;
  }

  /* Success / error messages */
  .rg-message {
    display: none;
    padding: 1rem 1.25rem;
    font-size: .82rem;
    letter-spacing: .05em;
    margin-top: 1rem;
    border-radius: 0;
  }

  .rg-message.success {
    display: block;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.4);
    color: var(--gold-light);
  }

  .rg-message.error {
    display: block;
    background: rgba(180,50,50,.1);
    border: 1px solid rgba(180,50,50,.4);
    color: #e07070;
  }

  /* ── Responsive ──────────────────────────────────────────────── */
  @media (max-width: 900px) {
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    .contact-section {
      padding: 6rem 2rem;
    }
  }

  @media (max-width: 540px) {
    .contact-form-wrap {
      padding: 2rem 1.5rem;
    }
    .rg-row {
      grid-template-columns: 1fr;
    }
  }