
  :root {
    --navy: #0a1e3a;
    --navy-deep: #ddd;
    --gold: #c9a961;
    --gold-light: #e4cb8f;
    --ink: #1a1a1a;
    --muted: #6b6b6b;
  }

  /* SECTIONS */
  section {
    padding: 5rem 2rem;
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .eyebrow {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1.2rem;
    display: block;
  }
  h2 em {
    color: var(--gold);
    font-style: italic;
  }

  /* REGION SECTION */
  .region-section {
    background: var(--cream);
    position: relative;
  }

  .region-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .region-text p {
    font-size: 1.1rem;
    color: #3a3a3a;
    margin-bottom: 1.2rem;
    font-weight: 300;
  }

  .region-text p:first-of-type::first-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    float: left;
    line-height: 0.9;
    padding: 0.3rem 0.8rem 0 0;
    color: var(--gold);
    font-weight: 500;
  }

  .region-visual {
    background: var(--color-main);
    padding: 3rem;
    position: relative;
    color: var(--cream);
  }

  .region-visual h3 {
    color: white;
    font-weight: 300;
    font-size: 2rem;
  }


  .region-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold);
  }

  .region-locations {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
  }

  .region-locations li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(201,169,97,0.3);
    color: var(--gold-light);
  }


  .jobs h2 {

  }

  /* WHY SECTION */
  .why-section {
    background: var(--navy-deep);
    color: var(--cream);
  }

  .why-section h2 {
    color: var(--cream);
  }

  .why-intro {
    max-width: 700px;
    margin-bottom: 3rem;
    font-size: 1.2rem;

    font-weight: 300;
  }

  .pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .pillar {
    border-top: 1px solid var(--gold);
    padding-top: 2rem;
    position: relative;
  }

  .pillar-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--gold);
    font-style: italic;
    line-height: 1;
    margin-bottom: 1rem;
    font-weight: 400;
  }

  .pillar h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--cream);
  }

  .pillar p {


    font-weight: 300;
  }

  /* OFFER SECTION */
  .offer-section {
    background: linear-gradient(180deg, var(--cream) 0%, #ede5d4 100%);
  }

  .offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
  }

  .offer-card {
    background: white;
    padding: 2.5rem;
    border: 1px solid var(--gold);
    border-left: 3px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

  }

  .offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(10,30,58,0.1);
  }

  .offer-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--navy-deep);
  }

  .offer-card p {
    color: var(--muted);
  }

  /* PROFILE SECTION */
  .profile-section {
    background: var(--navy-deep);
    color: var(--cream);
  }

  .profile-section h2 {
    color: var(--cream);
    margin-bottom: 3rem;
  }

  .profile-list {
    list-style: none;
    max-width: 800px;
  }

  .profile-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid #fff;
    display: flex;
    gap: 1.5rem;
    align-items: baseline;
  }

  ul.check li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Pro';
    color: var(--color-gray);
    font-weight: 900;
    display: inline-block;
    width: 1.5em;
    margin-left: -1.5em;
  }

  /* CTA SECTION */
  .cta-section {
    background: var(--color-main);
    color: var(--cream);
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gold);
  }
/*
  .cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(201,169,97,0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(201,169,97,0.25);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
*/
  .cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
  }

  .cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
  }

  .cta-section p {
    font-size: 1.15rem;
    color: rgba(245,239,227,0.8);
    margin-bottom: 3rem;
    font-weight: 300;
  }

  .cta-final {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 1.4rem 3rem;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
  }

  .cta-final:hover {
    background: transparent;
    color: var(--gold);
  }

  .cta-note {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: rgba(245,239,227,0.5);
    letter-spacing: 0.1em;
  }

  /* FOOTER */
  footer {
    background: var(--navy-deep);
    color: rgba(245,239,227,0.6);
    padding: 2.5rem 2rem;
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid rgba(201,169,97,0.2);
  }

  footer a {
    color: var(--gold);
    text-decoration: none;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .region-grid { grid-template-columns: 1fr; gap: 3rem; }
    .pillars { grid-template-columns: 1fr; gap: 2rem; }
    .offer-grid { grid-template-columns: 1fr; }
    .region-locations { grid-template-columns: 1fr; }
    section { padding: 5rem 1.5rem; }
  }

