body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #99a1af;
    /* background: #0F1C28; */
  }

  :root {
    --navy: #1C2B3A;
    --navy-deep: #0F1C28;
    --gold: #B8945A;
    --gold-light: #D4B07A;
    --gold-pale: #F7F0E4;
    --sage: #7C9882;
    --sage-pale: #EEF3EF;
    --cream: #FAF7F2;
    --text-dark: #1C2B3A;
    --text-mid: #4A5A6A;
    --text-light: #7A8A98;
    --border: rgba(28,43,58,0.12);
  }

  html { scroll-behavior: smooth; }
  
  .msg p{color:#FAF7F2;margin-bottom: 15px;}

 #contact-us{ background: #EEF3EF }
  .tier2 .section-title {color: #fff; }
  .tier2 {
    background: var(--navy-deep);
    padding: 5rem 2rem 4rem;
    overflow: hidden;
    margin-top:70px!important;
  }
  
  /* HERO */
  .hero {
    background: var(--navy-deep);
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    margin-top:70px!important;
  }

  .hero-ornament {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border: 1px solid rgba(184,148,90,0.06);
    border-radius: 50%;
    pointer-events: none;
  }

  .hero-ornament::before {
    content: '';
    position: absolute;
    inset: 40px;
    border: 1px solid rgba(184,148,90,0.06);
    border-radius: 50%;
  }

  .hero-cross {
    width: 48px;
    height: 48px;
    position: relative;
    margin: 0 auto 2.5rem;
  }

  .hero-cross::before, .hero-cross::after {
    content: '';
    position: absolute;
    background: var(--gold);
    border-radius: 2px;
  }

  .hero-cross::before { width: 6px; height: 100%; left: 50%; transform: translateX(-50%); }
  .hero-cross::after { width: 100%; height: 6px; top: 32%; }

  .hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.55);
    margin-bottom: 2.5rem;
    max-width: 540px;
  }

  .hero-verse {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.02em;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(184,148,90,0.15);
    max-width: 480px;
  }

  .hero-verse cite { font-style: normal; color: var(--gold); font-size: 0.85rem; }

  /* SECTION COMMONS */
  section { padding: 5rem 2rem;margin-top:-70px!important}

  .container { max-width: 900px; margin: 0 auto; }
  .container-wide { max-width: 1100px; margin: 0 auto; }

  .section-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 1.5rem;
  }

  .section-title em { font-style: italic; color: var(--gold); }

  .divider {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 2rem;
  }

  /* INTRO / ABOUT */
  .intro { background: var(--cream); }

  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .intro-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.55;
    color: var(--navy);
    margin-bottom: 1.5rem;
  }

  .intro-body {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  .credential-block {
    margin-top: 2.5rem;
    padding: 1.5rem;
    border-left: 3px solid var(--gold);
    background: var(--gold-pale);
  }

  .credential-block p {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 0.5rem;
  }

  .credential-block p:last-child { margin-bottom: 0; }

  .credential-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
  }

  /* PILLARS */
  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    margin-top: 3rem;
    background: var(--border);
  }

  .pillar {
    background: var(--cream);
    padding: 2.5rem 2rem;
  }

  .pillar-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 1.25rem;
    position: relative;
    flex-shrink: 0;
  }

  .pillar-icon svg { width: 100%; height: 100%; }

  .pillar h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.75rem;
  }

  .pillar p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.75;
  }

  /* SERVICES */
  .services { background: var(--navy); }

  .services .section-title { color: #fff; }
  .services .section-eyebrow { color: var(--gold-light); }

  .services-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255,255,255,0.6);
    max-width: 640px;
    margin-bottom: 3rem;
    line-height: 1.6;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    background: rgba(255,255,255,0.08);
    margin-top: 2.5rem;
  }

  .service-card {
    background: rgba(255,255,255,0.03);
    padding: 2.25rem 2rem;
    transition: background 0.2s;
  }

  .service-card:hover { background: rgba(184,148,90,0.08); }

  .service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(184,148,90,0.2);
    line-height: 1;
    margin-bottom: 0.75rem;
  }

  .service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.75rem;
  }

  .service-card p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
  }

  .service-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 1rem;
  }

  .service-tag {
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--gold-light);
    border: 1px solid rgba(184,148,90,0.25);
    padding: 2px 9px;
    border-radius: 2px;
  }

  /* APPROACH SECTION */
  .approach { background: var(--sage-pale); }

  .approach-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: var(--navy);
    border-left: 3px solid var(--gold);
    padding-left: 2rem;
    margin: 2.5rem 0;
    max-width: 680px;
  }

  .approach-body {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.85;
    max-width: 680px;
    margin-bottom: 1.25rem;
  }

  /* TRAINING */
  .training { background: var(--cream); }

  .training-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .training-item {
    border: 1px solid var(--border);
    background: #fff;
    padding: 1.75rem;
  }

  .training-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.5rem;
  }

  .training-item p {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.7;
  }

  /* BOOKING / CTA */
  .booking { background: var(--navy-deep); padding: 6rem 2rem; }

  .booking .section-title { color: #fff; }
  .booking .section-eyebrow { color: var(--gold); }

  .booking-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.55);
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.65;
  }

  .booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: rgba(255,255,255,0.07);
    margin-bottom: 3rem;
  }

  .booking-option {
    background: rgba(255,255,255,0.03);
    padding: 1.75rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
    border: 2px solid transparent;
    text-align: center;
  }

  .booking-option:hover {
    background: rgba(184,148,90,0.1);
    border-color: rgba(184,148,90,0.3);
  }

  .booking-option-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 1rem;
    opacity: 0.5;
  }

  .booking-option h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.35rem;
  }

  .booking-option p {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
  }

  .booking-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
  }

  .btn-primary {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy-deep);
    background: var(--gold);
    padding: 14px 32px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
  }

  .btn-primary:hover { background: var(--gold-light); }

  .btn-outline {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 14px 32px;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }

  .btn-outline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

  .booking-note {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    margin-top: 2rem;
    font-style: italic;
  }

  /* FOOTER */
  footer {
    background: #0A1420;
    padding: 2.5rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(184,148,90,0.15);
  }

  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: rgba(255,255,255,0.5);
  }

  .footer-brand strong { color: var(--gold-light); font-weight: 500; }

  .footer-note {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    max-width: 400px;
    line-height: 1.6;
  }

  /* RESPONSIVE */
  @media (max-width: 720px) {
    .intro-grid, .training-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .pillars-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hero { min-height: 80vh; }
  }



@media (max-width: 767px) {
  .reveal-left, .reveal-right {
    transform: translateY(30px);
  }

  section h5{line-height:1.2em!important}
}

