:root{
    --navy-950:#071F38;
    --navy-900:#0B3355;
    --navy-800:#123E63;
    --navy-700:#1B4E77;
    --lime-500:#A8CD3A;
    --lime-600:#8FB52B;
    --lime-100:#F1F5DE;
    --lime-050:#F8FAEE;
    --cream:#FAF9F4;
    --white:#FFFFFF;
    --ink:#16324A;
    --muted:#5B7186;
    --line:#E4E9DC;
    --radius-s:6px;
    --radius-m:14px;
    --radius-l:28px;
    --shadow-1: 0 1px 2px rgba(11,51,85,0.06), 0 8px 24px rgba(11,51,85,0.06);
    --shadow-2: 0 20px 60px rgba(7,31,56,0.18);
    --maxw:1180px;
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    font-family:'Inter',system-ui,sans-serif;
    color:var(--ink);
    background:var(--white);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    text-rendering:optimizeLegibility;
    font-feature-settings:"kern" 1,"liga" 1;
    line-height:1.55;
    font-size:16px;
  }
  img{max-width:100%;display:block;}
  a{color:inherit;text-decoration:none;}
  ul{margin:0;padding:0;list-style:none;}
  h1,h2,h3{font-family:'Fraunces',serif;font-weight:600;margin:0;color:var(--ink);text-wrap:balance;}
  p{margin:0;}
  button{font-family:inherit;cursor:pointer;}

  .wrap{max-width:var(--maxw);margin:0 auto;padding:0 32px;}

  :focus-visible{outline:2.5px solid var(--lime-600);outline-offset:3px;}

  .eyebrow{
    display:inline-flex;align-items:center;gap:8px;
    font-size:12.5px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
    color:var(--lime-600);
  }
  .on-dark .eyebrow{color:var(--lime-500);}

  /* Buttons */
  .btn{
    display:inline-flex;align-items:center;justify-content:center;gap:8px;
    padding:14px 26px;border-radius:999px;font-weight:700;font-size:15px;
    border:1.5px solid transparent;white-space:nowrap;transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  }
  .btn:hover{transform:translateY(-1px);}
  .btn-primary{background:var(--lime-500);color:var(--navy-950);}
  .btn-primary:hover{background:var(--lime-600);box-shadow:var(--shadow-1);}
  .btn-outline{border-color:var(--navy-900);color:var(--navy-900);background:transparent;}
  .btn-outline:hover{background:var(--navy-900);color:var(--white);}
  .on-dark .btn-outline{border-color:rgba(255,255,255,.55);color:var(--white);}
  .on-dark .btn-outline:hover{background:var(--white);color:var(--navy-950);}
  .btn-outline.on-dark-outline{border-color:rgba(255,255,255,.55);color:var(--white);}
  .btn-outline.on-dark-outline:hover{background:var(--white);color:var(--navy-950);}
  .btn-sm{padding:11px 20px;font-size:14px;}

  /* ===== NAV ===== */
  header.site-nav{
    background:var(--navy-950);
    border-bottom:1px solid rgba(255,255,255,.08);
    position:sticky;top:0;z-index:50;
  }
  .nav-inner{
    display:flex;align-items:center;justify-content:space-between;
    padding:16px 32px;max-width:var(--maxw);margin:0 auto;
  }
  .logo img{height:30px;width:auto;}
  .nav-links{display:flex;align-items:center;gap:36px;}
  .nav-links a{
    font-size:14.5px;font-weight:600;color:rgba(255,255,255,.82);
    padding:6px 2px;border-bottom:2px solid transparent;transition:color .15s, border-color .15s;
  }
  .nav-links a:hover, .nav-links a.active{color:var(--white);border-color:var(--lime-500);}
  .nav-cta{display:flex;align-items:center;gap:22px;}
  .nav-toggle{display:none;background:none;border:0;color:var(--white);padding:6px;}

  @media (max-width:900px){
    .nav-inner { position: relative; justify-content: space-between; align-items: center; }
    .nav-toggle { display: inline-flex; position: relative; z-index: 10; }
    .logo { position: absolute; left: 50%; transform: translateX(-50%); max-width: 35%; display: flex; justify-content: center; z-index: 5; }
    .logo img { height: 28px; width: auto; max-width: 100%; object-fit: contain; }
    .nav-cta { position: relative; z-index: 10; }
    .nav-links{
      position:absolute;top:100%;left:0;right:0;background:var(--navy-950);
      flex-direction:column;align-items:flex-start;gap:0;padding:8px 32px 18px;
      display:none;
    }
    .nav-links.open{display:flex;}
    .nav-links a{width:100%;padding:12px 0;border-bottom:1px solid rgba(255,255,255,.08);}
  }

  /* ===== HERO ===== */
  .hero{
    background:radial-gradient(120% 140% at 18% -10%, #163E63 0%, var(--navy-900) 45%, var(--navy-950) 100%);
    padding:120px 0 128px;
    position:relative;
    overflow:hidden;
    text-align:center;
    isolation:isolate;
  }
  .hero-bg{position:absolute;inset:0;z-index:0;pointer-events:none;}
  .hero-bg svg{position:absolute;}
  .hero-bg .arc-a{top:-160px;left:-180px;width:560px;opacity:.5;}
  .hero-bg .arc-b{bottom:-220px;right:-200px;width:620px;opacity:.35;}
  .hero-bg .arc-c{top:38%;right:6%;width:220px;opacity:.22;}

  .hero-content{position:relative;z-index:2;max-width:820px;margin:0 auto;}
  .hero h1{
    font-size:clamp(44px,6.4vw,80px);line-height:1.03;letter-spacing:-.02em;
    color:var(--white);margin:0 0 26px;
  }
  .hero h1 em{font-style:italic;font-weight:500;color:var(--lime-500);}
  .hero p.lede{
    font-size:clamp(17px,1.6vw,20px);line-height:1.65;color:rgba(255,255,255,.72);
    max-width:600px;margin:0 auto 42px;
  }
  .hero .cta-row{display:flex;gap:16px;flex-wrap:wrap;justify-content:center;margin-bottom:0;}
  .hero .cta-row .btn{padding:16px 32px;font-size:15.5px;}

  @media (max-width:640px){
    .hero{padding:96px 0 88px;}
  }

  /* ===== PROCESS ===== */
  .process{background:var(--lime-100);padding:96px 0;}
  .section-head{max-width:640px;margin-bottom:56px;}
  .section-head h2{font-size:clamp(30px,3.4vw,42px);margin-top:14px;letter-spacing:-.015em;line-height:1.12;}
  .process-steps{
    display:grid;grid-template-columns:repeat(3,1fr);gap:36px;position:relative;
  }
  .step-card{
    background:var(--white);border-radius:var(--radius-m);padding:34px 30px 30px;
    box-shadow:var(--shadow-1);position:relative;
  }
  .step-num{
    font-family:'Fraunces',serif;font-weight:600;font-size:40px;color:var(--lime-600);
    margin-bottom:18px;
  }
  .step-card h3{font-size:19px;margin-bottom:10px;}
  .step-card p{color:var(--muted);font-size:15px;line-height:1.6;}
  .process-cta{margin-top:44px;text-align:center;}

  @media (max-width:860px){
    .process-steps{grid-template-columns:1fr;}
  }

  /* ===== BENEFITS (dark) ===== */
  .benefits{background:var(--navy-900);padding:96px 0;color:var(--white);}
  .benefits .section-head h2{color:var(--white);}
  .benefits-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;}
  .benefit-item{display:flex;gap:16px;align-items:flex-start;}
  .benefit-icon{
    flex:none;width:44px;height:44px;border-radius:12px;background:rgba(168,205,58,.14);
    display:flex;align-items:center;justify-content:center;color:var(--lime-500);
  }
  .benefit-item h3{font-size:18px;color:var(--white);margin-bottom:8px;font-weight:600;}
  .benefit-item p{color:rgba(255,255,255,.7);font-size:14.5px;line-height:1.6;}

  @media (max-width:860px){
    .benefits-grid{grid-template-columns:1fr;gap:34px;}
  }

  /* ===== LEADERSHIP ===== */
  .leadership{background:var(--white);padding:100px 0;}
  .leadership-grid{
    display:grid;grid-template-columns:.82fr 1.18fr;gap:66px;align-items:center;
  }
  .lead-photo-wrap{position:relative;}
  .lead-photo-wrap .arc-behind{position:absolute;top:-34px;left:-34px;width:150%;z-index:0;opacity:.9;}
  .lead-photo{
    position:relative;z-index:1;border-radius:var(--radius-l);overflow:hidden;
    border:6px solid var(--white);box-shadow:var(--shadow-2);
    aspect-ratio:4/4.6;
  }
  .lead-photo img{width:100%;height:100%;object-fit:cover;}
  .lead-cred{
    position:relative;z-index:2;background:var(--white);border-radius:var(--radius-m);
    box-shadow:var(--shadow-2);padding:14px 18px;margin-top:-46px;margin-left:26px;
    display:inline-flex;align-items:center;gap:12px;
  }
  .lead-cred .dot{width:9px;height:9px;border-radius:50%;background:var(--lime-500);flex:none;}
  .lead-cred p{font-size:13px;font-weight:700;color:var(--navy-900);}
  .lead-cred span{display:block;font-size:11.5px;font-weight:500;color:var(--muted);}

  .leadership-copy h2{font-size:clamp(30px,3.4vw,42px);margin:14px 0 22px;letter-spacing:-.015em;line-height:1.12;}
  .leadership-copy p{color:var(--muted);font-size:16px;line-height:1.75;margin-bottom:18px;}
  .leadership-copy p strong{color:var(--ink);font-weight:700;}
  .leadership-copy .btn{margin-top:14px;}

  @media (max-width:900px){
    .nav-inner { position: relative; justify-content: space-between; align-items: center; }
    .nav-toggle { display: inline-flex; position: relative; z-index: 10; }
    .logo { position: absolute; left: 50%; transform: translateX(-50%); max-width: 35%; display: flex; justify-content: center; z-index: 5; }
    .logo img { height: 28px; width: auto; max-width: 100%; object-fit: contain; }
    .nav-cta { position: relative; z-index: 10; }
    .nav-links{
      position:absolute;top:100%;left:0;right:0;background:var(--navy-950);
      flex-direction:column;align-items:flex-start;gap:0;padding:8px 32px 18px;
      display:none;
    }
    .nav-links.open{display:flex;}
    .nav-links a{width:100%;padding:12px 0;border-bottom:1px solid rgba(255,255,255,.08);}
  }

  /* ===== COMMON SITUATIONS ===== */
  .situations{background:var(--lime-100);padding:100px 0;}
  .situations-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px 40px;margin-bottom:48px;}
  .situations-grid ul{display:flex;flex-direction:column;gap:16px;}
  .situations-grid li{
    display:flex;gap:10px;align-items:flex-start;font-size:15px;color:var(--ink);font-weight:500;line-height:1.5;
  }
  .situations-grid svg{flex:none;margin-top:3px;color:var(--lime-600);}
  .unsure-card{
    background:var(--white);border:1.5px solid var(--line);border-radius:var(--radius-m);
    padding:32px 36px;display:flex;justify-content:space-between;align-items:center;gap:30px;flex-wrap:wrap;
  }
  .unsure-card h3{font-size:20px;margin-bottom:8px;}
  .unsure-card p{color:var(--muted);font-size:15px;max-width:520px;}
  .unsure-cta{display:flex;gap:12px;flex-wrap:wrap;}

  @media (max-width:860px){
    .situations-grid{grid-template-columns:1fr;}
  }

  /* ===== TESTIMONIALS ===== */
  .testimonials{background:var(--navy-950);padding:80px 0 60px;position:relative;overflow:hidden;}
  .testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
  .testi-card{
    background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);
    border-radius:var(--radius-m);padding:32px 28px;
  }
  .testi-card svg.qmark{color:var(--lime-500);margin-bottom:16px;}
  .testi-card p.quote{
    font-family:'Fraunces',serif;font-style:italic;font-weight:500;color:var(--white);
    font-size:19px;line-height:1.5;margin-bottom:20px;
  }
  .testi-card .who{font-size:13.5px;color:rgba(255,255,255,.6);font-weight:600;}

  @media (max-width:860px){
    .testi-grid{grid-template-columns:1fr;}
  }

  /* ===== TEAM ===== */
  .team{background:var(--cream);padding:100px 0 110px;overflow:hidden;}
  .team .section-head{margin-bottom:48px;}

  .team-carousel-outer{
    position:relative;width:100vw;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;
    overflow:hidden;
    -webkit-mask-image:linear-gradient(to right, transparent 0, black 64px, black calc(100% - 64px), transparent 100%);
    mask-image:linear-gradient(to right, transparent 0, black 64px, black calc(100% - 64px), transparent 100%);
  }
  .team-track{
    display:flex;gap:32px;width:max-content;padding:8px 40px 24px;
    cursor:grab;will-change:transform;user-select:none;
  }
  .team-track.dragging{cursor:grabbing;}
  .team-track img{-webkit-user-drag:none;user-drag:none;}

  .team-card{
    flex:none;width:340px;background:var(--white);border-radius:var(--radius-l);
    overflow:hidden;box-shadow:var(--shadow-1);border:1px solid var(--line);
  }
  .team-photo{
    height:280px;display:flex;align-items:center;justify-content:center;position:relative;
  }
  .team-photo::after{
    content:"";position:absolute;inset:0;background:linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.18) 100%);
  }
  .team-photo span{
    font-family:'Fraunces',serif;font-weight:600;font-size:72px;color:rgba(255,255,255,.95);
    position:relative;z-index:1;
  }
  .team-info{padding:26px 28px 30px;}
  .team-info h3{font-size:20px;margin-bottom:5px;}
  .team-info .role{font-size:13.5px;color:var(--lime-600);font-weight:700;margin-bottom:12px;letter-spacing:.01em;}
  .team-info p.bio{font-size:14.5px;color:var(--muted);line-height:1.65;}

  .team-nav{
    position:absolute;top:50%;transform:translateY(-50%);z-index:2;
    width:52px;height:52px;border-radius:50%;border:1.5px solid var(--line);
    background:var(--white);display:flex;align-items:center;justify-content:center;
    color:var(--navy-900);box-shadow:var(--shadow-1);
    transition:background .15s,color .15s,border-color .15s;
  }
  .team-nav.prev{left:24px;}
  .team-nav.next{right:24px;}
  .team-nav svg{width:20px;height:20px;}
  .team-nav:hover{background:var(--navy-900);color:var(--white);border-color:var(--navy-900);}

  @media (max-width:860px){
    .team-card{width:280px;}
    .team-photo{height:230px;}
  }
  @media (max-width:640px){
    .team-nav{display:none;}
    .team-carousel-outer{
      -webkit-mask-image:linear-gradient(to right, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
      mask-image:linear-gradient(to right, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
    }
  }

  /* ===== HAVE A QUESTION ===== */
  .question{background:var(--cream);padding:100px 0;}
  .question-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:60px;align-items:center;}
  .question h2{font-size:clamp(30px,3.4vw,42px);margin:14px 0 20px;letter-spacing:-.015em;line-height:1.12;}
  .question p.lede{color:var(--muted);font-size:17px;line-height:1.7;max-width:480px;margin-bottom:30px;}
  .question .cta-row{display:flex;gap:14px;flex-wrap:wrap;}
  .q-panel{
    background:var(--white);border-radius:var(--radius-l);padding:38px;
    box-shadow:var(--shadow-1);border:1px solid var(--line);position:relative;overflow:hidden;
  }
  .q-panel .arc-corner{position:absolute;top:-60px;right:-60px;width:200px;opacity:.7;}
  .q-hours{position:relative;z-index:1;}
  .q-hours h3{font-size:15px;text-transform:uppercase;letter-spacing:.08em;color:var(--navy-900);margin-bottom:18px;}
  .q-hours-row{display:flex;justify-content:space-between;padding:13px 0;border-bottom:1px solid var(--line);font-size:14.5px;}
  .q-hours-row:last-of-type{border-bottom:none;}
  .q-hours-row span:first-child{color:var(--muted);font-weight:500;}
  .q-hours-row span:last-child{color:var(--ink);font-weight:700;}
  .q-note{display:flex;gap:10px;align-items:flex-start;margin-top:20px;padding-top:20px;border-top:1px dashed var(--line);font-size:13.5px;color:var(--muted);}
  .q-note svg{flex:none;color:var(--lime-600);margin-top:2px;}

  @media (max-width:900px){
    .nav-inner { position: relative; justify-content: space-between; align-items: center; }
    .nav-toggle { display: inline-flex; position: relative; z-index: 10; }
    .logo { position: absolute; left: 50%; transform: translateX(-50%); max-width: 35%; display: flex; justify-content: center; z-index: 5; }
    .logo img { height: 28px; width: auto; max-width: 100%; object-fit: contain; }
    .nav-cta { position: relative; z-index: 10; }
    .nav-links{
      position:absolute;top:100%;left:0;right:0;background:var(--navy-950);
      flex-direction:column;align-items:flex-start;gap:0;padding:8px 32px 18px;
      display:none;
    }
    .nav-links.open{display:flex;}
    .nav-links a{width:100%;padding:12px 0;border-bottom:1px solid rgba(255,255,255,.08);}
  }

  /* ===== FOOTER ===== */
  footer{background:var(--navy-950);color:rgba(255,255,255,.72);padding:72px 0 28px;}
  .footer-top{
    display:grid;grid-template-columns:1.3fr .8fr .8fr 1.1fr;gap:48px;padding-bottom:52px;border-bottom:1px solid rgba(255,255,255,.1);
  }
  .footer-brand img{height:28px;margin-bottom:16px;}
  .footer-brand p{font-size:14px;line-height:1.6;color:rgba(255,255,255,.55);max-width:280px;}
  .footer-social{display:flex;gap:10px;margin-top:20px;}
  .footer-social a{
    width:36px;height:36px;border-radius:50%;border:1px solid rgba(255,255,255,.18);
    display:flex;align-items:center;justify-content:center;transition:background .15s,border-color .15s;
  }
  .footer-social a:hover{background:var(--lime-500);border-color:var(--lime-500);color:var(--navy-950);}
  .footer-col h4{color:var(--white);font-size:13px;text-transform:uppercase;letter-spacing:.08em;margin-bottom:18px;font-weight:700;}
  .footer-col ul{display:flex;flex-direction:column;gap:12px;}
  .footer-col a{font-size:14.5px;color:rgba(255,255,255,.65);transition:color .15s;}
  .footer-col a:hover{color:var(--lime-500);}
  .footer-hours div{display:flex;justify-content:space-between;font-size:14px;padding:6px 0;color:rgba(255,255,255,.65);}
  .footer-hours strong{color:rgba(255,255,255,.9);font-weight:600;}
  .newsletter-form{display:flex;gap:10px;margin-top:16px;}
  .newsletter-form input{
    flex:1;min-width:0;padding:12px 14px;border-radius:8px;border:1px solid rgba(255,255,255,.18);
    background:rgba(255,255,255,.06);color:var(--white);font-size:14px;
  }
  .newsletter-form input::placeholder{color:rgba(255,255,255,.45);}
  .newsletter-form button{
    background:var(--lime-500);color:var(--navy-950);border:none;border-radius:8px;padding:12px 18px;font-weight:700;font-size:14px;flex:none;
    transition:background .15s;
  }
  .newsletter-form button:hover{background:var(--lime-600);}
  .footer-bottom{
    display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;padding-top:26px;font-size:13px;color:rgba(255,255,255,.45);
  }

  @media (max-width:900px){
    .nav-inner { position: relative; justify-content: space-between; align-items: center; }
    .nav-toggle { display: inline-flex; position: relative; z-index: 10; }
    .logo { position: absolute; left: 50%; transform: translateX(-50%); max-width: 35%; display: flex; justify-content: center; z-index: 5; }
    .logo img { height: 28px; width: auto; max-width: 100%; object-fit: contain; }
    .nav-cta { position: relative; z-index: 10; }
    .nav-links{
      position:absolute;top:100%;left:0;right:0;background:var(--navy-950);
      flex-direction:column;align-items:flex-start;gap:0;padding:8px 32px 18px;
      display:none;
    }
    .nav-links.open{display:flex;}
    .nav-links a{width:100%;padding:12px 0;border-bottom:1px solid rgba(255,255,255,.08);}
  }
  @media (max-width:560px){
    .footer-top{grid-template-columns:1fr;}
    .wrap{padding:0 20px;}
    .hero{padding:64px 0 72px;}
    .process,.benefits,.leadership,.situations,.testimonials,.question{padding:64px 0;}
  }

  @media (prefers-reduced-motion:reduce){
    *{transition:none !important;scroll-behavior:auto !important;}
  }

/* ==========================================
   ADDITIONAL STYLES FOR SUBPAGES
   ========================================== */

/* Accordion Component */
.accordion-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.accordion-item {
  border-bottom: 1.5px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.accordion-item.active {
  box-shadow: var(--shadow-1);
  border-bottom-color: transparent;
}
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  cursor: pointer;
}
.accordion-icon {
  font-size: 24px;
  color: var(--lime-600);
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.accordion-inner {
  padding: 0 28px 28px 28px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
}
.accordion-inner p {
  margin-bottom: 12px;
}
.accordion-inner p:last-child {
  margin-bottom: 0;
}

/* Static Team Grid for About Page */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.team-grid .team-card {
  width: 100% !important;
  box-shadow: var(--shadow-1);
}

/* Rates & Booking Components */
.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}
.booking-topics {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
}
.booking-topics h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.booking-topics ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-topics li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.booking-topics svg {
  color: var(--lime-600);
  flex-shrink: 0;
  margin-top: 3px;
}
.rate-card {
  background: var(--white);
  border: 2px solid var(--lime-500);
  border-radius: var(--radius-l);
  padding: 44px 38px;
  box-shadow: var(--shadow-2);
  text-align: center;
  position: relative;
}
.rate-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-900);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.rate-card h3 {
  font-size: 22px;
  color: var(--muted);
  margin-bottom: 12px;
}
.rate-price {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 8px;
}
.rate-price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
}
.rate-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.rate-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rate-actions .btn {
  width: 100%;
}

/* Disclosure Banner */
.before-you-book {
  background: var(--navy-900);
  color: var(--white);
  padding: 48px;
  border-radius: var(--radius-l);
  margin: 64px auto;
  max-width: var(--maxw);
}
.before-you-book-content {
  max-width: 860px;
  margin: 0 auto;
}
.before-you-book-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.before-you-book-header svg {
  color: var(--lime-500);
  flex-shrink: 0;
}
.before-you-book-header h2 {
  color: var(--white);
  font-size: 28px;
  margin: 0;
}
.before-you-book p.warning-lede {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--lime-500);
}
.before-you-book p.warning-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.before-you-book p.warning-text:last-child {
  margin-bottom: 0;
}

/* Bottom Call to Action Section with Image Split */
.cta-split {
  background: var(--white);
  padding: 96px 0;
  border-top: 1px solid var(--line);
}
.cta-split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.cta-split h2 {
  font-size: clamp(32px, 3.8vw, 44px);
  margin-bottom: 20px;
  line-height: 1.15;
}
.cta-split p.lede {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-split .cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-split-photo {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  aspect-ratio: 4/3;
  border: 6px solid var(--white);
}
.cta-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Services Comparison Grid */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}
.comparison-col {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-l);
  padding: 44px 38px;
}
.comparison-col h3 {
  font-size: 24px;
  margin-bottom: 24px;
  font-family: 'Fraunces', serif;
}
.comparison-col.is h3 {
  color: var(--lime-500);
}
.comparison-col.is-not h3 {
  color: #ff7676; /* Soft red for "Is Not" list */
}
.comparison-col ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comparison-col li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.comparison-col.is svg {
  color: var(--lime-500);
}
.comparison-col.is-not svg {
  color: #ff7676;
}

/* Services Cards & Nested Examples */
.services-card-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.scenarios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.scenario-card {
  background: var(--lime-050);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 18px 20px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.5;
}

/* Page Hero Adjustments */
.hero.subpage-hero {
  padding: 100px 0 108px;
}

/* Media Queries for new components */
@media (max-width: 900px) {
  .cta-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-split-photo {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 860px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .scenarios-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .before-you-book {
    padding: 32px 24px;
    margin: 48px 20px;
  }
}


/* ══════════════════════════════════════════════════
   Premium Team Grid — About Page
   ══════════════════════════════════════════════════ */
.team-grid-improved {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* ── Card shell ─── */
.team-member-card {
  position: relative;
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-950) 100%);
  border: 1px solid rgba(200, 255, 80, 0.12);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(.25,.8,.25,1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.team-member-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,255,80,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.team-member-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 255, 80, 0.4);
  box-shadow: 0 24px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,255,80,0.15);
}

/* ── Photo container with name overlay ─── */
.team-member-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
  flex-shrink: 0;
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s cubic-bezier(.25,.8,.25,1);
}

.team-member-card:hover .team-member-photo img {
  transform: scale(1.07);
}

/* Gradient overlay at bottom of photo */
.team-member-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top,
    rgba(8, 15, 35, 0.95) 0%,
    rgba(8, 15, 35, 0.7) 40%,
    transparent 100%);
  pointer-events: none;
}

/* Name + role pinned at bottom of photo */
.team-member-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.4rem 1.1rem;
  z-index: 2;
}

.team-member-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.team-member-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(200, 255, 80, 0.15);
  border: 1px solid rgba(200, 255, 80, 0.35);
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #c8ff50;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.team-member-role-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8ff50;
  flex-shrink: 0;
}

/* ── Bio below photo ─── */
.team-member-info {
  padding: 1rem 1.4rem 1.4rem;
  flex: 1;
  z-index: 1;
  position: relative;
}

.team-member-bio {
  font-size: 0.875rem;
  color: rgba(180, 195, 230, 0.85);
  line-height: 1.6;
  margin: 0;
 text-align: justify; }

/* ── Initials fallback ─── */
.team-member-photo--initials {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-member-photo--initials span {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  font-family: var(--font-display);
  position: relative;
  z-index: 3;
  text-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

/* ── Responsive ─── */
@media (max-width: 960px) {
  .team-grid-improved {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 580px) {
  .team-grid-improved {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .team-member-name {
    font-size: 1.15rem;
  }
}

/* ── Fix homepage carousel team-photo images ─── */
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}


/* ── Michelle CSS Avatar ──────────────────────────────────────── */
.team-member-photo--avatar {
  background: linear-gradient(160deg, #0f2a5c 0%, #071527 50%, #0a1e3d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.avatar-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Background decorative circle */
.avatar-bg-circle {
  position: absolute;
  width: 65%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,255,80,0.12) 0%, transparent 70%);
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

/* Subtle arc sweep */
.avatar-bg-arc {
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  border: 1px solid rgba(200,255,80,0.08);
  top: -30%;
  left: -10%;
  z-index: 0;
}

/* Full body container */
.avatar-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  padding-bottom: 28%;
}

/* Head */
.avatar-head {
  position: relative;
  width: 42%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-hair-back {
  position: absolute;
  width: 100%;
  height: 115%;
  background: #2c1a0e;
  border-radius: 50% 50% 40% 40%;
  bottom: -5%;
  z-index: 1;
}

.avatar-hair {
  position: absolute;
  width: 95%;
  height: 55%;
  background: #3d2410;
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  top: -2%;
  z-index: 3;
}

.avatar-face {
  position: absolute;
  width: 84%;
  height: 84%;
  background: linear-gradient(160deg, #f5c9a0, #e8a878);
  border-radius: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12%;
  top: 8%;
}

.avatar-eye {
  position: absolute;
  width: 14%;
  height: 14%;
  background: #2c1a0e;
  border-radius: 50%;
  top: 38%;
}
.avatar-eye--left  { left: 25%; }
.avatar-eye--right { right: 25%; }

.avatar-smile {
  position: absolute;
  width: 40%;
  height: 20%;
  border: 3px solid #c0835a;
  border-top: none;
  border-radius: 0 0 50px 50px;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
}

/* Neck */
.avatar-neck {
  width: 20%;
  height: 10%;
  background: linear-gradient(to bottom, #e8a878, #d49060);
  border-radius: 0 0 4px 4px;
  margin-top: -1%;
  position: relative;
  z-index: 2;
}

/* Shoulders / blazer */
.avatar-shoulders {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: -2%;
}

.avatar-blazer {
  width: 90%;
  height: 60px;
  background: linear-gradient(160deg, #1a3a6e 0%, #0d2244 100%);
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
  position: relative;
  z-index: 2;
}

.avatar-shirt {
  position: absolute;
  width: 20%;
  height: 55px;
  background: linear-gradient(to bottom, #ffffff, #e8edf5);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 4px 4px;
  z-index: 3;
}

/* Floating decorative icons */
.avatar-icon {
  position: absolute;
  z-index: 4;
  opacity: 0.6;
  animation: avatar-float 3s ease-in-out infinite;
  color: #c8ff50;
  font-size: clamp(0.8rem, 2vw, 1.1rem);
}

.avatar-icon--1 { top: 12%; left: 10%; animation-delay: 0s;    opacity: 0.5; }
.avatar-icon--2 { top: 18%; right: 8%; animation-delay: 1.1s;  opacity: 0.45; font-size: clamp(0.9rem, 2.2vw, 1.3rem); }
.avatar-icon--3 { top: 48%; right: 6%; animation-delay: 2s;    opacity: 0.4; }

@keyframes avatar-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-8px) rotate(8deg); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* Minimal side scroll indicator */
.scroll-indicator-side {
  position: absolute;
  right: 4%;
  bottom: 10%;
  height: 80px;
  width: 1px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 10;
}

.scroll-line-side {
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.scroll-line-side::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--lime-400);
  animation: scrollDownLine 2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes scrollDownLine {
  0% { top: -50%; }
  100% { top: 100%; }
}

@media (max-width: 768px) {
  .scroll-indicator-side {
    display: none; /* Hide on mobile so it doesn't overlap text */
  }
}

/* ── Footer email contact ──────────────────────────────────────── */
.footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-top: 0.25rem;
  font-weight: 500;
}
.footer-email-link svg {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.footer-email-link:hover {
  color: #c8ff50;
}
.footer-email-link:hover svg {
  opacity: 1;
  stroke: #c8ff50;
}

/* ═══════════════════════════════════════════════════
   REVIEW CAROUSEL
═══════════════════════════════════════════════════ */
.review-carousel-wrapper {
  position: relative;
  margin: 0 auto;
  padding: 0 2.75rem;
}

.review-clip {
  overflow: hidden;
  border-radius: 20px;
}

.review-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.review-slide {
  min-width: 100%;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 3rem 3.5rem 2.5rem;
  backdrop-filter: blur(12px);
  position: relative;
  transition: box-shadow 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.review-quote-icon {
  margin-bottom: 1.5rem;
}

.review-text {
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.88);
  margin: 0 0 2.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(168,205,58,0.55);
  box-shadow: 0 0 0 4px rgba(168,205,58,0.10);
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

.review-title {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* Navigation arrows */
.review-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(8px);
}

.review-nav:hover {
  background: rgba(168,205,58,0.20);
  border-color: rgba(168,205,58,0.50);
  transform: translateY(-50%) scale(1.08);
}

.review-prev { left: 0.25rem; }
.review-next { right: 0.25rem; }

/* Dots */
.review-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.review-dot.active {
  background: #A8CD3A;
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 640px) {
  .review-carousel-wrapper { padding: 0 2rem; }
  .review-card {
    padding: 1.75rem 1.25rem 1.5rem;
  }
  .review-prev { left: 0; }
  .review-next { right: 0; }
  .review-text { font-size: 0.95rem; }
}


@media (max-width: 900px) {
  .question-grid, .leadership-grid { grid-template-columns: 1fr !important; gap: 48px; }
  .lead-photo-wrap { margin: 0 auto 30px; max-width: 320px; }
  .lead-photo-wrap .arc-behind { left: -10px; width: 180px; }
  .lead-cred { left: 0px; bottom: -30px; padding: 16px 20px; right: 0px; width: 90%; margin: 0 auto; }
  .q-panel { margin: 0 auto; width: 100%; max-width: 400px; }
}

