    @font-face {
      font-family: 'Gascogne';
      src: url('../fonts/gascogne/Gascogne-Serial-Regular.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    :root {
      --ivory: #F8F4EE;
      --ivory-dark: #EDE8DF;
      --white: #FFFFFF;
      --ink: #1A1714;
      --charcoal: #2E2A26;
      --muted: #7A7168;
      --gold: #C4A265;
      --gold-light: #D4B87A;
      --gold-pale: #F0E6D0;
      --gold-deep: #A8874A;
      --line: #E0D8CC;
      --shadow-sm: 0 2px 8px rgba(26,23,20,.06);
      --shadow-md: 0 8px 32px rgba(26,23,20,.1);
      --ease-out: cubic-bezier(.22,1,.36,1);
    }

.rglobal-site, .rglobal-site *, .rglobal-site *::before, .rglobal-site *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
body.rglobal-front-page {
      font-family: 'Inter', sans-serif;
      color: var(--ink);
      background: var(--ivory);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }
.rglobal-site a { text-decoration: none; color: inherit; }
.rglobal-site img { display: block; max-width: 100%; }
    .container { width: min(1160px, 92%); margin: 0 auto; }

    .display, h1, h2, .section-title, .hero h1, .form-title, .hero-stat-num {
      font-family: 'Gascogne', 'Cormorant Garamond', Georgia, serif;
    }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 30px;
      border-radius: 3px;
      font-family: 'Inter', sans-serif;
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .25s ease, border-color .25s ease;
      cursor: pointer;
      border: none;
      position: relative;
      overflow: hidden;
    }
    .btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0);
      transition: background .25s ease;
    }
    .btn:hover::before { background: rgba(255,255,255,.08); }
    .btn:active { transform: translateY(0) scale(.98) !important; }
    .btn-gold { background: var(--gold); color: var(--white); }
    .btn-gold:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(196,162,101,.4); }
    .btn-outline { background: transparent; color: var(--white)!important; border: 1.5px solid rgba(255,255,255,.5); }
    .btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.9); transform: translateY(-2px); }
    .btn-dark { background: var(--ink); color: var(--white)!important; }
    .btn-dark:hover { background: var(--charcoal); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(26,23,20,.25); }
    .btn-arrow::after { content: '→'; font-size: 1em; transition: transform .3s var(--ease-out); }
    .btn-arrow:hover::after { transform: translateX(4px); }

    /* ── EYEBROW ── */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .eyebrow::before {
      content: '';
      display: block;
      width: 24px;
      height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }

    /* ── NAV ── */
.rglobal-site header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      transition: background .4s ease, box-shadow .4s ease;
    }
.rglobal-site header.scrolled {
      background: rgba(248,244,238,.96);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
    }
.rglobal-site header.hero-top { background: transparent; }
.rglobal-site nav { height: 76px; display: flex; align-items: center; justify-content: space-between; }
    .logo img { height: 40px; width: auto; transition: opacity .2s; }
    .logo:hover img { opacity: .8; }
    .logo .logo-white { display: block; }
    .logo .logo-dark { display: none; }
.rglobal-site header.scrolled .logo-white { display: none; }
.rglobal-site header.scrolled .logo-dark { display: block; }

    .nav-links { display: flex; gap: 36px; }
    .nav-links a {
      font-size: .82rem;
      font-weight: 500;
      letter-spacing: .04em;
      color: rgba(255,255,255,.85);
      transition: color .2s;
      position: relative;
      padding-bottom: 2px;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold-light);
      transition: width .3s var(--ease-out);
    }
    .nav-links a:hover { color: white; }
    .nav-links a:hover::after { width: 100%; }
.rglobal-site header.scrolled .nav-links a { color: var(--charcoal); }
.rglobal-site header.scrolled .nav-links a::after { background: var(--gold); }
.rglobal-site header.scrolled .nav-links a:hover { color: var(--gold); }
    .nav-cta { margin-left: 20px; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      border: none;
      background: none;
      z-index: 1100;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: white;
      transition: transform .35s var(--ease-out), opacity .3s ease, width .3s ease;
      transform-origin: left center;
    }
.rglobal-site header.scrolled .hamburger span { background: var(--ink); }
    .hamburger.open span:nth-child(1) { transform: rotate(38deg) translateY(-1px); }
    .hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-38deg) translateY(1px); }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--ink);
      z-index: 1050;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: translateY(-20px);
      transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
      pointer-events: none;
    }
    .mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: all; }
    .mobile-menu a {
      font-family: 'Gascogne', Georgia, serif;
      font-size: clamp(2rem, 6vw, 3rem);
      color: rgba(255,255,255,.7);
      padding: 16px 40px;
      transition: color .2s;
    }
    .mobile-menu a:hover { color: var(--gold-light); }
    .mobile-menu .mobile-cta { margin-top: 32px; font-family: 'Inter', sans-serif; font-size: 1rem; }

    /* ── HERO ── */
    .hero {
      min-height: 100dvh;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('../images/rglobal/hero.jpg') center/cover no-repeat;
      transform: scale(1.04);
      transition: transform 8s ease;
    }
    .hero-bg.loaded { transform: scale(1); }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg,
        rgba(26,23,20,.88) 0%,
        rgba(26,23,20,.72) 35%,
        rgba(26,23,20,.28) 62%,
        rgba(26,23,20,.08) 100%
      );
    }
    .hero-overlay-top {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(26,23,20,.55) 0%, transparent 30%);
    }
    .hero-main {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      flex: 1;
      padding-top: 76px;
    }
    .hero-inner {
      width: 100%;
      padding: 80px 0 80px;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 64px;
      align-items: center;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 24px;
      opacity: 0;
      transform: translateY(16px);
      animation: fadeUp .7s var(--ease-out) .2s forwards;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 24px;
      height: 1px;
      background: var(--gold-light);
    }
    .hero h1 {
      font-size: clamp(3.2rem, 5.5vw, 7rem);
      font-weight: 400;
      line-height: .96;
      letter-spacing: -.01em;
      color: white;
      margin-bottom: 28px;
      opacity: 0;
      transform: translateY(24px);
      animation: fadeUp .8s var(--ease-out) .35s forwards;
    }
    .hero h1 em { font-style: italic; color: var(--gold-light); }
    .hero-sub {
      font-size: 1rem;
      color: rgba(255,255,255,.75);
      max-width: 480px;
      line-height: 1.75;
      margin-bottom: 40px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp .8s var(--ease-out) .5s forwards;
    }
    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp .8s var(--ease-out) .65s forwards;
    }

    /* Hero grain card */
    .hero-right {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      opacity: 0;
      transform: translateX(20px) translateY(10px);
      animation: fadeRight .9s var(--ease-out) .55s forwards;
    }
    .hero-card {
      background: rgba(18, 14, 10, 0.82);
      border: 1px solid rgba(255,255,255,.12);
      border-top: 1px solid rgba(255,255,255,.26);
      border-left: 1px solid rgba(255,255,255,.18);
      border-radius: 24px;
      padding: 40px 36px;
      width: 100%;
      max-width: 380px;
      box-shadow:
        0 48px 96px rgba(0,0,0,.55),
        0 12px 32px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.18);
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }
    .hero-card::before {
      content: '';
      position: absolute;
      inset: -20%;
      width: 140%;
      height: 140%;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23g)'/%3E%3C/svg%3E");
      background-size: 180px 180px;
      opacity: 0.055;
      mix-blend-mode: screen;
      pointer-events: none;
      z-index: 0;
    }
    .hero-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 15% 0%, rgba(196,162,101,.18) 0%, transparent 55%),
        linear-gradient(160deg, rgba(255,255,255,.04) 0%, transparent 50%);
      pointer-events: none;
      z-index: 0;
    }
    .hero-card > * { position: relative; z-index: 1; }
    .hero-card-label {
      font-size: .67rem;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(255,255,255,.4);
      margin-bottom: 28px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .hero-stat {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 18px 0;
      transition: transform .25s var(--ease-out);
    }
    .hero-stat:hover { transform: translateX(4px); }
    .hero-stat + .hero-stat { border-top: 1px solid rgba(255,255,255,.08); }
    .hero-stat-num {
      font-size: 3rem;
      font-weight: 400;
      color: var(--gold-light);
      line-height: 1;
      min-width: 120px;
      text-shadow: 0 2px 16px rgba(196,162,101,.4);
    }
    .hero-stat-label { font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.5; }

    /* ── APPROACH ── */
    .approach { padding: 128px 0; background: var(--white); }
    .approach-inner {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 88px;
      align-items: start;
    }
    .approach-sticky { position: sticky; top: 100px; }
    .approach-text .section-title { margin-bottom: 22px; }
    .approach-text .lead { margin-bottom: 36px; }

    .section-title {
      font-size: clamp(2.4rem, 4vw, 4.8rem);
      font-weight: 400;
      line-height: 1.02;
      letter-spacing: -.02em;
      color: var(--ink);
    }
    .section-title em { font-style: italic; color: var(--gold); }
    .lead { font-size: 1rem; color: var(--muted); line-height: 1.8; max-width: 620px; }

    .steps { display: grid; gap: 2px; }
    .step {
      background: var(--white);
      padding: 28px 32px;
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 20px;
      align-items: start;
      border: 1px solid var(--line);
      border-radius: 12px;
      transition: border-color .25s, transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
    }
    .step:hover { border-color: var(--gold); transform: translateX(4px); box-shadow: var(--shadow-md); }
    .step-num {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--gold-pale);
      color: var(--gold-deep);
      font-family: 'Gascogne', Georgia, serif;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background .25s, color .25s;
    }
    .step:hover .step-num { background: var(--gold); color: white; }
    .step h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
    .step p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

    /* ── SERVICES ── */
    .services { padding: 128px 0; background: var(--ink); }
    .services-intro { margin-bottom: 64px; }
    .services .section-title { color: white; margin-bottom: 16px; }
    .services .lead { color: rgba(255,255,255,.5); }

    .service-list { display: grid; }
    .service-row {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 48px;
      padding: 48px 0;
      border-top: 1px solid rgba(255,255,255,.08);
      align-items: start;
      transition: background .3s;
      border-radius: 4px;
    }
    .service-row:last-child { border-bottom: 1px solid rgba(255,255,255,.08); }
    .service-row:hover { background: rgba(196,162,101,.04); }
    .service-row-cat { display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }
    .service-row-num {
      font-family: 'Gascogne', Georgia, serif;
      font-size: 4.5rem;
      color: rgba(196,162,101,.18);
      line-height: 1;
      transition: color .35s;
    }
    .service-row:hover .service-row-num { color: rgba(196,162,101,.35); }
    .service-row-name {
      font-size: 1.1rem;
      font-weight: 700;
      color: white;
      letter-spacing: -.01em;
      line-height: 1.3;
    }
    .service-items {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 40px;
      padding-top: 12px;
    }
    .service-item {
      font-size: .875rem;
      color: rgba(255,255,255,.5);
      display: flex;
      align-items: center;
      gap: 10px;
      transition: color .2s;
    }
    .service-item::before {
      content: '';
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      opacity: .7;
    }
    .service-row:hover .service-item { color: rgba(255,255,255,.72); }

    /* ── INDUSTRIES ── */
    .industries { padding: 112px 0; background: var(--ivory-dark); }
    .industries-header { margin-bottom: 56px; }
    .industries-header .section-title { margin-bottom: 20px; }
    .industry-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .industry-pill {
      padding: 12px 22px;
      border: 1px solid var(--line);
      background: var(--white);
      border-radius: 3px;
      font-size: .82rem;
      font-weight: 600;
      color: var(--charcoal);
      transition: border-color .2s, color .2s, background .2s, transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
      letter-spacing: .03em;
      cursor: default;
    }
    .industry-pill:hover {
      border-color: var(--gold);
      color: var(--gold-deep);
      background: var(--gold-pale);
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }

    /* ── CARRIERS ── */
    .carriers { padding: 96px 0; background: var(--white); }
    .carriers-header { text-align: center; margin-bottom: 56px; }
    .carriers-header .section-title { margin-bottom: 16px; }
    .carriers-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
    }
    .carrier-cell {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 28px 24px;
      border: 1px solid var(--line);
      background: var(--white);
      transition: background .2s, box-shadow .25s var(--ease-out);
    }
    .carrier-cell:hover { background: var(--ivory); box-shadow: var(--shadow-sm); }
    .carrier-cell img {
      height: 36px;
      width: auto;
      max-width: 140px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: .55;
      transition: filter .3s ease, opacity .3s ease;
    }
    .carrier-cell:hover img { filter: grayscale(0%); opacity: 1; }

    /* ── QUOTE ── */
    .quote-section { padding: 128px 0; background: var(--white); }
    .quote-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .quote-sticky { position: sticky; top: 100px; }
    .quote-text .section-title { margin: 18px 0 22px; }
    .quote-text .lead { margin-bottom: 36px; }
    .quote-details { display: grid; gap: 4px; }
    .quote-detail {
      display: flex;
      align-items: start;
      gap: 16px;
      padding: 16px;
      border-radius: 10px;
      transition: background .2s;
    }
    .quote-detail:hover { background: var(--ivory); }
    .quote-detail-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--gold-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--gold-deep);
      transition: background .2s, color .2s, transform .25s var(--ease-out);
    }
    .quote-detail:hover .quote-detail-icon { background: var(--gold); color: white; transform: scale(1.05); }
    .quote-detail-text h4 { font-size: .88rem; font-weight: 700; margin-bottom: 3px; }
    .quote-detail-text p { font-size: .83rem; color: var(--muted); }

    .form-card {
      background: var(--ivory);
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 44px 40px;
    }
    .form-title { font-size: 1.7rem; font-weight: 400; margin-bottom: 32px; color: var(--ink); letter-spacing: -.01em; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-grid .full { grid-column: 1 / -1; }
    .form-group label {
      display: block;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 13px 16px;
      border: 1.5px solid var(--line);
      border-radius: 8px;
      background: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: .9rem;
      color: var(--ink);
      transition: border-color .25s, box-shadow .25s;
      appearance: none;
    }
    .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7168' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 40px;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,162,101,.12); }
    .form-group textarea { min-height: 100px; resize: vertical; }
    .form-submit { margin-top: 20px; }
    .form-disclaimer { font-size: .73rem; color: var(--muted); margin-top: 14px; line-height: 1.5; }

    /* ── CONTACT FORM 7 ── */
    /* Two-column layout for the first-name / last-name row */
    .form-card .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    /* Vertical spacing between full-width form-groups */
    .form-card .wpcf7-form .form-group {
      margin-bottom: 14px;
    }
    .form-card .form-row .form-group {
      margin-bottom: 0;
    }
    /* CF7 wraps every control in a <span>; make it block so the input drops
       below the label text naturally */
    .form-card .wpcf7-form-control-wrap {
      display: block;
      margin-top: 8px;
    }
    /* Submit button — CF7 renders an <input type="submit">, not a <button>,
       so .btn / .btn-gold don't apply. Mirror the same gold button look. */
    .form-card .wpcf7-submit {
      display: block;
      width: 100%;
      margin-top: 20px;
      padding: 15px 30px;
      background: var(--gold);
      color: var(--white);
      border: none;
      border-radius: 3px;
      font-family: 'Inter', sans-serif;
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .25s ease, transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
    }
    .form-card .wpcf7-submit:hover {
      background: var(--gold-deep);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(196,162,101,.4);
    }
    .form-card .wpcf7-submit:active {
      transform: translateY(0) scale(.98);
    }
    /* CF7 disables the button while submitting — keep it visually muted */
    .form-card .wpcf7-submit:disabled {
      opacity: .65;
      cursor: not-allowed;
      transform: none;
    }
    /* Disclaimer paragraph (class-less <p> in the CF7 template) */
    .form-card .wpcf7-form > p {
      font-size: .73rem;
      color: var(--muted);
      margin-top: 14px;
      line-height: 1.5;
    }
    /* Inline validation error tip */
    .form-card .wpcf7-not-valid-tip {
      display: block;
      font-size: .72rem;
      color: #c0392b;
      margin-top: 4px;
    }
    /* Red border on invalid fields */
    .form-card .wpcf7-form-control.wpcf7-not-valid {
      border-color: #c0392b !important;
      box-shadow: 0 0 0 3px rgba(192,57,43,.1) !important;
    }
    /* CF7 response / success / error bar */
    .form-card .wpcf7-response-output {
      margin-top: 16px;
      padding: 12px 16px;
      border-radius: 8px;
      font-size: .82rem;
      line-height: 1.5;
      border: 1.5px solid var(--line);
      color: var(--muted);
    }
    .form-card .wpcf7-form.sent .wpcf7-response-output {
      border-color: var(--gold);
      color: var(--gold-deep);
      background: var(--gold-pale);
    }
    .form-card .wpcf7-form.invalid .wpcf7-response-output,
    .form-card .wpcf7-form.spam .wpcf7-response-output,
    .form-card .wpcf7-form.failed .wpcf7-response-output {
      border-color: #c0392b;
      color: #c0392b;
      background: #fdf0ee;
    }
    /* Hide the default CF7 spinner (keep UI clean) */
    .form-card .wpcf7-spinner { display: none; }

    /* ── FOOTER ── */
.rglobal-site footer { background: var(--ink); padding: 88px 0 32px; }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr;
      gap: 60px;
      padding-bottom: 52px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .footer-brand img { height: 34px; margin-bottom: 20px; }
    .footer-brand p { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 340px; }
    .footer-col h5 {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .footer-col a,
    .footer-col p { display: block; font-size: .875rem; color: rgba(255,255,255,.45); margin-bottom: 12px; transition: color .2s; }
    .footer-col a:hover { color: rgba(255,255,255,.9); }
    .footer-fine { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-fine p { font-size: .75rem; color: rgba(255,255,255,.28); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeRight {
      to { opacity: 1; transform: translateX(0) translateY(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1.2fr 0.8fr; gap: 40px; }
      .approach-inner { gap: 56px; }
      .service-row { grid-template-columns: 200px 1fr; gap: 32px; }
      .quote-inner { gap: 52px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
    }

    @media (max-width: 860px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }

      .hero-inner { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .hero h1 { font-size: clamp(2.8rem, 8vw, 5rem); }

      .approach-inner { grid-template-columns: 1fr; gap: 48px; }
      .approach-sticky { position: static; }

      .service-row { grid-template-columns: 1fr; gap: 20px; padding: 36px 0; }
      .service-items { grid-template-columns: 1fr 1fr; }
      .services-intro { margin-bottom: 48px; }

      .industries-header { text-align: left; }

      .carriers-grid { grid-template-columns: repeat(2, 1fr); }
      .carriers-header { text-align: left; }

      .quote-inner { grid-template-columns: 1fr; gap: 48px; }
      .quote-sticky { position: static; }

      .footer-grid { grid-template-columns: 1fr; gap: 40px; }
      .footer-brand { grid-column: auto; }

      .form-grid { grid-template-columns: 1fr; }
      .form-card { padding: 32px 24px; }
    }

    @media (max-width: 560px) {
      .hero h1 { font-size: clamp(2.4rem, 9vw, 4rem); }
      .hero-sub { font-size: .95rem; }
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { justify-content: center; }
      .section-title { font-size: clamp(2rem, 7vw, 3.2rem); }
      .approach, .services, .industries, .quote-section { padding: 80px 0; }
      .step { grid-template-columns: 44px 1fr; gap: 14px; padding: 22px 20px; }
      .service-items { grid-template-columns: 1fr; }
      .industry-grid { gap: 8px; }
      .industry-pill { font-size: .78rem; padding: 10px 18px; }
.rglobal-site footer { padding: 64px 0 28px; }
      .footer-fine { flex-direction: column; align-items: flex-start; gap: 8px; }
      /* CF7: collapse first/last name to single column on small screens */
      .form-card .form-row { grid-template-columns: 1fr; }
      .form-card .form-row .form-group { margin-bottom: 14px; }
      .form-card .form-card { padding: 32px 24px; }
    }
