  :root {
    --navy: #0b2538;
    --navy-deep: #061620;
    --navy-soft: #234156;
    --gold: #c9973f;
    --gold-light: #e3c483;
    --leaf: #6f8a4c;
    --leaf-deep: #4d6536;
    --cream: #f6f2ea;
    --warm-white: #fbf9f5;
    --ink: #232821;
    --ink-soft: #5b6359;
    --line: rgba(11,37,56,0.12);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; scroll-padding-top: 120px; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--ink);
    overflow-x: hidden;
  }

  img { display: block; width: 100%; height: 100%; object-fit: cover; }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0.9rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(251, 249, 245, 0.94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
    animation: fadeDown 0.8s ease both;
  }

  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-logo { width: 168px; flex-shrink: 0; }
  .nav-logo img { object-fit: contain; }

  nav ul { list-style: none; display: flex; gap: 2.4rem; align-items: center; }

  nav ul a {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--navy-soft);
    transition: color 0.2s;
  }
  nav ul a:hover { color: var(--gold); }

  .nav-cta { background: var(--navy) !important; color: var(--cream) !important; padding: 0.6rem 1.5rem; border-radius: 2px; }
  .nav-cta:hover { background: var(--gold) !important; color: var(--navy-deep) !important; }

  /* mobile menu toggle (hidden on desktop) */
  .nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 34px; height: 34px; background: none; border: none; padding: 0; cursor: pointer; flex-shrink: 0; }
  .nav-toggle span { display: block; width: 100%; height: 2px; background: var(--navy); transition: transform 0.25s ease, opacity 0.25s ease; }
  nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-eyebrow a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
  .hero-eyebrow a:hover, .hero-eyebrow a:focus { border-bottom-color: currentColor; }

  /* HERO */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    padding-top: 76px;
    background: var(--cream);
  }

  .hero-left {
    padding: 6rem 4rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeUp 1s ease 0.3s both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }

  .hero-h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 400; line-height: 1.16; color: var(--navy); margin-bottom: 1.7rem; }
  .hero-h1 em { font-style: italic; color: var(--leaf); }

  .hero-p { font-size: 1rem; font-weight: 300; line-height: 1.8; color: var(--ink-soft); max-width: 440px; margin-bottom: 2.6rem; }

  .btn-group { display: flex; gap: 1.1rem; align-items: center; flex-wrap: wrap; }

  .btn-primary {
    background: var(--navy);
    color: var(--cream);
    padding: 0.9rem 2.1rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.25s;
  }
  .btn-primary:hover { background: var(--gold); color: var(--navy-deep); }

  .btn-secondary { color: var(--navy-soft); font-size: 0.85rem; text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: color 0.2s; }
  .btn-secondary:hover { color: var(--gold); }

  .hero-right { position: relative; padding: 3rem 3.5rem 3rem 0; display: flex; align-items: center; }

  .hero-photo-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 900 / 918;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(11,37,56,0.35);
  }
  .hero-photo-frame::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,0.25); pointer-events: none; }

  .hero-badge {
    position: absolute;
    bottom: -26px;
    left: -34px;
    background: var(--navy);
    color: var(--cream);
    padding: 1.3rem 1.6rem;
    border-radius: 2px;
    box-shadow: 0 20px 40px -16px rgba(11,37,56,0.5);
    max-width: 230px;
  }
  .hero-badge p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; line-height: 1.5; color: var(--gold-light); }

  /* SECTION HEADERS */
  .section-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; }
  .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 4.6vw, 2.7rem); font-weight: 400; color: var(--navy); line-height: 1.2; }
  .section-title em { font-style: italic; color: var(--leaf); }

  /* SERVICES */
  #services { padding: 6.5rem 4rem 5.5rem; background: var(--warm-white); }
  .section-header { text-align: center; margin-bottom: 4rem; max-width: 640px; margin-left: auto; margin-right: auto; }
  .section-header p.sub { margin-top: 1rem; font-size: 0.95rem; color: var(--ink-soft); font-weight: 300; line-height: 1.7; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--line);
    border: 1px solid var(--line);
    max-width: 1140px;
    margin: 0 auto;
  }

  .service-card { background: var(--warm-white); padding: 2.8rem 2.4rem; transition: background 0.3s; position: relative; }
  .service-card:hover { background: var(--cream); }
  .service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.4s ease; }
  .service-card:hover::after { width: 100%; }

  .service-icon { width: 40px; height: 40px; margin-bottom: 1.6rem; }
  .service-name { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 500; color: var(--navy); margin-bottom: 0.7rem; }

  .service-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--leaf-deep);
    background: #eef1e6;
    padding: 0.25rem 0.65rem;
    border-radius: 1px;
    margin-bottom: 1.1rem;
  }
  .service-card.coaching .service-tag { color: var(--gold); background: #f7eedc; }
  .service-card.wide { grid-column: span 2; }

  .service-desc { font-size: 0.87rem; font-weight: 300; line-height: 1.72; color: var(--ink-soft); }

  /* PRACTICE BANDS */
  .practice-band { display: grid; grid-template-columns: 1fr 1fr; background: var(--cream); }
  .practice-band.reverse .practice-img { order: 2; }
  .practice-band.reverse .practice-text { order: 1; }

  .practice-img { position: relative; min-height: 480px; }
  .practice-text { padding: 5rem 4.5rem; display: flex; flex-direction: column; justify-content: center; }
  .practice-text h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 4.2vw, 2.1rem); font-weight: 400; color: var(--navy); margin-bottom: 1.2rem; line-height: 1.25; }
  .practice-text h3 em { font-style: italic; color: var(--leaf); }
  .practice-text p { font-size: 0.92rem; font-weight: 300; line-height: 1.8; color: var(--ink-soft); margin-bottom: 1rem; max-width: 420px; }
  .practice-text .tagline { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }

  /* APPROACH */
  #approach { padding: 6.5rem 4rem; background: var(--navy); color: var(--cream); }
  #approach .section-label { color: var(--gold-light); }
  #approach .section-title { color: var(--cream); }
  #approach .section-title em { color: var(--gold-light); }

  .approach-inner { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4.5rem; align-items: center; }
  .approach-photo { position: relative; border-radius: 3px; overflow: hidden; height: 560px; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4); }

  .approach-pillars { display: flex; flex-direction: column; gap: 1.9rem; }
  .pillar { display: flex; gap: 1.6rem; align-items: flex-start; }
  .pillar-num { font-family: 'Cormorant Garamond', serif; font-size: 2.3rem; font-weight: 400; color: var(--gold); line-height: 1; flex-shrink: 0; width: 2.2rem; }
  .pillar-text h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-weight: 500; color: var(--cream); margin-bottom: 0.4rem; }
  .pillar-text p { font-size: 0.86rem; font-weight: 300; line-height: 1.7; color: rgba(251,249,245,0.65); }

  /* ADVISORY & SPEAKING */
  #advisory { padding: 6.5rem 4rem; background: var(--cream); }
  .advisory-intro { max-width: 720px; margin: 1rem auto 0; }
  .advisory-grid { max-width: 1140px; margin: 3.6rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
  .advisory-col h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 400; color: var(--navy); line-height: 1.28; margin-bottom: 0.6rem; padding-top: 1.3rem; border-top: 2px solid var(--gold); }
  .advisory-col .col-lead { font-size: 0.85rem; font-weight: 300; line-height: 1.7; color: var(--ink-soft); margin-bottom: 1.3rem; }
  .advisory-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
  .advisory-list li { font-size: 0.84rem; font-weight: 300; color: var(--ink); padding-left: 1.05rem; position: relative; line-height: 1.5; }
  .advisory-list li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
  .advisory-footer { max-width: 760px; margin: 4rem auto 0; text-align: center; }
  .advisory-footer p { font-size: 0.95rem; font-weight: 300; line-height: 1.7; color: var(--ink-soft); margin-bottom: 1.8rem; }
  .advisory-footer p em { font-style: italic; color: var(--leaf-deep); }

  /* TESTIMONIALS */
  #testimonials { padding: 6.5rem 4rem; background: var(--warm-white); }
  .testimonials-grid { max-width: 1140px; margin: 3.4rem auto 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.6rem; }
  .t-card { position: relative; background: var(--cream); border: 1px solid var(--line); border-radius: 4px; padding: 2.4rem 2rem 1.9rem; display: flex; flex-direction: column; }
  .t-mark { font-family: 'Cormorant Garamond', serif; font-size: 3.4rem; line-height: 0.6; color: var(--gold-light); height: 1.4rem; }
  .t-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-style: italic; font-weight: 400; line-height: 1.5; color: var(--navy); margin: 0 0 1.4rem; }
  .t-card figcaption { margin-top: auto; display: flex; flex-direction: column; gap: 0.15rem; }
  .t-name { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gold); }
  .t-detail { font-size: 0.8rem; font-weight: 300; color: var(--ink-soft); }

  /* FOUNDERS */
  #founders { padding: 6.5rem 4rem; background: var(--warm-white); }

  .founders-intro { max-width: 1100px; margin: 0 auto 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
  .founders-photo { border-radius: 3px; overflow: hidden; height: 380px; box-shadow: 0 24px 50px -18px rgba(11,37,56,0.3); }
  .founders-intro-text .section-label { margin-bottom: 0.8rem; }
  .founders-intro-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 4.6vw, 2.4rem); font-weight: 400; color: var(--navy); line-height: 1.25; margin-bottom: 1.1rem; }
  .founders-intro-text h2 em { font-style: italic; color: var(--leaf); }
  .founders-intro-text p { font-size: 0.92rem; font-weight: 300; line-height: 1.8; color: var(--ink-soft); }

  .founders-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  .founder-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    border: 1px solid var(--line);
    border-radius: 2px;
    overflow: hidden;
    transition: box-shadow 0.3s, border-color 0.3s;
  }
  .founder-card:hover { border-color: var(--gold); box-shadow: 0 18px 40px -16px rgba(11,37,56,0.18); }
  .founder-photo { height: 100%; min-height: 280px; }
  .founder-bio { padding: 2rem 1.7rem; display: flex; flex-direction: column; justify-content: center; }
  .founder-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500; color: var(--navy); margin-bottom: 0.3rem; }
  .founder-role { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; }
  .founder-bio p { font-size: 0.84rem; font-weight: 300; line-height: 1.7; color: var(--ink-soft); }

  .rob-carousel-wrap { max-width: 560px; margin: 3.2rem auto 0; text-align: center; }
  .carousel-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
  .carousel { position: relative; aspect-ratio: 1; border-radius: 4px; overflow: hidden; box-shadow: 0 24px 50px -18px rgba(11,37,56,0.3); }
  .carousel-track { display: flex; width: 100%; height: 100%; transition: transform 0.55s cubic-bezier(0.65,0,0.35,1); }
  .carousel-slide { width: 100%; height: 100%; flex-shrink: 0; }
  .carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 42px; height: 42px; border-radius: 50%; border: none;
    background: rgba(11,37,56,0.78); color: var(--cream);
    font-size: 1.5rem; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, transform 0.2s; z-index: 2;
  }
  .carousel-arrow:hover { background: var(--gold); color: var(--navy-deep); }
  .carousel-arrow.prev { left: 14px; }
  .carousel-arrow.next { right: 14px; }
  .carousel-dots { display: flex; gap: 0.55rem; justify-content: center; margin-top: 1.2rem; }
  .dot { width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; background: var(--line); cursor: pointer; transition: background 0.2s, transform 0.2s; }
  .dot.active { background: var(--gold); transform: scale(1.25); }
  .carousel-caption { font-size: 0.84rem; font-style: italic; font-weight: 300; color: var(--ink-soft); margin-top: 1.2rem; line-height: 1.6; }

  /* CONTACT */
  #contact { padding: 6.5rem 4rem; background: var(--navy-deep); color: var(--cream); }
  .contact-inner { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4rem; align-items: start; }

  .contact-photo { border-radius: 3px; overflow: hidden; height: 100%; min-height: 560px; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5); }

  .contact-right { display: flex; flex-direction: column; gap: 2.2rem; }

  .contact-left h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 5vw, 2.6rem); font-weight: 400; line-height: 1.2; color: var(--cream); margin-bottom: 1.3rem; }
  .contact-left h2 em { font-style: italic; color: var(--gold-light); }
  .contact-left p { font-size: 0.9rem; font-weight: 300; line-height: 1.8; color: rgba(251,249,245,0.6); margin-bottom: 2rem; }

  .contact-detail { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.9rem; font-size: 0.87rem; color: rgba(251,249,245,0.72); }
  .contact-detail span:first-child { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); min-width: 3.6rem; }

  .contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
  .form-field { display: flex; flex-direction: column; gap: 0.5rem; }
  .form-field label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(251,249,245,0.45); }
  .form-field input, .form-field select, .form-field textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--cream);
    padding: 0.8rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }
  .form-field input::placeholder, .form-field textarea::placeholder { color: rgba(251,249,245,0.28); }
  .form-field select option { background: var(--navy-deep); color: var(--cream); }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); }
  .form-field textarea { resize: vertical; min-height: 100px; }

  .form-submit {
    background: var(--gold);
    color: var(--navy-deep);
    border: none;
    padding: 0.95rem 2.3rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.25s;
    align-self: flex-start;
  }
  .form-submit:hover { background: var(--gold-light); }

  /* FOOTER */
  footer { padding: 1.8rem 4rem; background: #050f17; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(251,249,245,0.32); }
  footer a { color: rgba(251,249,245,0.42); text-decoration: none; }
  footer a:hover { color: var(--gold-light); }

  /* PHOTO STREAM (full-bleed scrolling ribbon) */
  .photo-stream { width: 100%; overflow: hidden; background: var(--navy-deep); padding: 0; line-height: 0; }
  .stream-track { display: flex; width: max-content; gap: 4px; animation: streamScroll 55s linear infinite; }
  .stream-track img { height: 170px; width: auto; flex: none; object-fit: cover; display: block; }
  .photo-stream:hover .stream-track { animation-play-state: paused; }
  @keyframes streamScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @media (max-width: 900px) { .stream-track img { height: 120px; } .stream-track { gap: 3px; } }
  @media (prefers-reduced-motion: reduce) { .stream-track { animation: none; } }

  .divider { width: 40px; height: 1px; background: var(--gold); margin: 1.3rem 0; opacity: 0.6; }

  /* SCROLL REVEAL */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 900px) {

    nav { padding: 0.7rem 1.25rem; flex-wrap: wrap; align-items: center; }
    .nav-logo { width: 118px; }
    nav ul { gap: 0.7rem; }
    nav ul li a:not(.nav-cta) { display: none; }
    .nav-cta { padding: 0.6rem 1.1rem; font-size: 0.72rem; order: 2; }

    /* mobile nav: hamburger + dropdown panel with the page links */
    .nav-toggle { display: flex; order: 3; margin-left: 0.7rem; }
    nav.nav-open { align-items: flex-start; }
    nav.nav-open ul {
      order: 4;
      flex-basis: 100%;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      margin-top: 0.9rem;
      background: var(--warm-white);
      border-top: 1px solid var(--line);
    }
    nav.nav-open ul li a:not(.nav-cta) {
      display: block;
      padding: 0.9rem 0.2rem;
      border-bottom: 1px solid var(--line);
      font-size: 0.85rem;
    }
    nav.nav-open ul li:last-child { margin-top: 0.9rem; text-align: center; }

    /* Explore Counselling / Explore Coaching CTA: make it impossible to miss on mobile */
    .practice-text .btn-primary {
      display: block;
      width: 100%;
      text-align: center;
      margin-top: 1.6rem;
      background: var(--gold);
      color: var(--navy-deep);
      padding: 1rem 1.7rem;
      font-size: 0.85rem;
    }
    .practice-text .btn-primary:hover, .practice-text .btn-primary:active { background: var(--gold-light); }
    .practice-text .btn-primary::after { content: " \2192"; }

    #hero { grid-template-columns: 1fr; min-height: auto; padding-top: 104px; }
    .hero-left { padding: 2.4rem 1.4rem 1rem; }
    .hero-right { padding: 0.5rem 1.4rem 3.4rem; display: block; }
    .hero-photo-frame { width: 100%; }
    .hero-badge { position: static; left: 0; bottom: 0; margin-top: 1.1rem; max-width: 100%; width: 100%; }
    .hero-p { max-width: 100%; }
    .btn-group { gap: 0.9rem; }
    .btn-primary { padding: 0.85rem 1.7rem; }

    #services { padding: 3.5rem 1.3rem 3rem; }
    .section-header { margin-bottom: 2.6rem; padding: 0 0.4rem; }
    .services-grid { grid-template-columns: 1fr; max-width: 100%; }
    .service-card.wide { grid-column: auto; }
    .service-card { padding: 2.2rem 1.6rem; }

    .practice-band, .practice-band.reverse { grid-template-columns: 1fr; }
    .practice-band .practice-img,
    .practice-band.reverse .practice-img { order: 1; min-height: 280px; }
    .practice-band .practice-text,
    .practice-band.reverse .practice-text { order: 2; padding: 2.4rem 1.4rem; }
    .practice-text p { max-width: 100%; }

    #approach { padding: 3.6rem 1.3rem; }
    .approach-inner { grid-template-columns: 1fr; gap: 2.4rem; }
    .approach-photo { height: 300px; }
    .approach-pillars { gap: 1.6rem; }

    #advisory { padding: 3.6rem 1.3rem; }
    .advisory-grid { grid-template-columns: 1fr; gap: 2.4rem; margin-top: 2.6rem; }
    .advisory-footer { margin-top: 2.8rem; }

    #testimonials { padding: 3.6rem 1.3rem; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 1.3rem; margin-top: 2.6rem; }

    #founders { padding: 3.6rem 1.3rem; }
    .founders-intro { grid-template-columns: 1fr; gap: 1.8rem; margin-bottom: 2.6rem; }
    .founders-photo { height: 260px; }
    .founders-grid { grid-template-columns: 1fr; gap: 1.6rem; }
    .founder-card { grid-template-columns: 1fr; }
    .founder-photo { min-height: 260px; }
    .founder-bio { padding: 1.6rem 1.4rem; }
    .founder-credibility { justify-content: center; }
    .rob-carousel-wrap { margin-top: 2.4rem; max-width: 100%; }
    .carousel-arrow { width: 36px; height: 36px; font-size: 1.3rem; }

    #contact { padding: 3.6rem 1.3rem; }
    .contact-inner { grid-template-columns: 1fr; gap: 2.2rem; }
    .contact-photo { min-height: 260px; }
    .contact-left p { max-width: 100%; }

    footer { flex-direction: column; gap: 0.8rem; text-align: center; padding: 1.7rem 1.3rem; }
  }

  @media (max-width: 480px) {
    .hero-eyebrow { font-size: 0.68rem; }
    .form-row { grid-template-columns: 1fr; }
    .founder-card { grid-template-columns: 1fr; }
    .founder-photo { min-height: 220px; }
    .approach-photo { height: 260px; }
    .practice-img { min-height: 230px; }
  }


  /* ===== Restructure additions ===== */
  nav ul a.nav-active { color: var(--gold); }
  .practice-text .btn-primary, .practice-text .btn-secondary { margin-top: 1.4rem; }
  .founder-bio .btn-secondary { display: inline-block; margin-top: 1.1rem; }
  .page-cta { max-width: 760px; margin: 5.5rem auto 4.5rem; text-align: center; padding: 0 1.5rem; }
  .page-cta .section-label { justify-content: center; }
  .page-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 400; color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
  .page-cta h2 em { font-style: italic; color: var(--leaf-deep); }
  .page-cta p { font-size: 0.95rem; font-weight: 300; line-height: 1.7; color: var(--ink-soft); margin: 0 auto 1.8rem; max-width: 600px; }
  @media (max-width: 900px) { .page-cta { margin-top: 3.5rem; } }

/* clear hero quote badge above the Two Paths section */
#paths { padding-top: 6rem; }
@media (max-width: 900px) { #paths { padding-top: 1.6rem; } }

/* ===== Counselling page additions ===== */
.cc-section { padding: 5.5rem 4rem; }
.cc-section.cream { background: var(--cream); }
.cc-note { max-width: 760px; margin: 2.4rem auto 0; text-align: center; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem; color: var(--navy-soft); line-height: 1.5; }

/* How I work — steps */
.steps-grid { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.step-card { background: var(--warm-white); border: 1px solid var(--line); border-radius: 3px; padding: 2.2rem 1.9rem; }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--gold); line-height: 1; margin-bottom: 0.7rem; }
.step-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--navy); margin-bottom: 0.25rem; }
.step-dur { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--leaf-deep); margin-bottom: 0.8rem; }
.step-card p { font-size: 0.88rem; font-weight: 300; line-height: 1.7; color: var(--ink-soft); }

/* Service detail blocks */
.svc-block { max-width: 1000px; margin: 0 auto 2.6rem; padding-bottom: 2.4rem; border-bottom: 1px solid var(--line); }
.svc-block:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.svc-block .tagline { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.svc-block h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 400; color: var(--navy); line-height: 1.25; margin-bottom: 1rem; }
.svc-block h3 em { font-style: italic; color: var(--leaf); }
.svc-block p { font-size: 0.92rem; font-weight: 300; line-height: 1.8; color: var(--ink-soft); margin-bottom: 1rem; max-width: 780px; }
.svc-areas-label { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy-soft); margin: 1.2rem 0 0.7rem; }
.svc-areas { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.6rem; }
.svc-areas li { position: relative; padding-left: 1.1rem; font-size: 0.88rem; font-weight: 300; line-height: 1.6; color: var(--ink-soft); }
.svc-areas li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

/* Pricing */
.price-grid { max-width: 1000px; margin: 0 auto 1.4rem; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
.price-card { background: var(--warm-white); border: 1px solid var(--line); border-radius: 3px; padding: 1.8rem 1.3rem; text-align: center; }
.price-card .pc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-weight: 500; color: var(--navy); margin-bottom: 0.3rem; }
.price-card .pc-dur { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.9rem; }
.price-card .pc-amt { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold); }
.packages { max-width: 1000px; margin: 1.6rem auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.package-card { background: var(--cream); border: 1px solid var(--line); border-radius: 3px; padding: 1.8rem; }
.package-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--navy); margin-bottom: 0.7rem; }
.pkg-row { display: flex; justify-content: space-between; padding: 0.55rem 0; border-top: 1px solid var(--line); font-size: 0.9rem; color: var(--ink-soft); }
.pkg-row strong { color: var(--gold); font-weight: 600; }
.price-note { max-width: 1000px; margin: 1.6rem auto 0; font-size: 0.82rem; font-style: italic; color: var(--ink-soft); text-align: center; }

/* FAQ */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.2rem 2rem 1.2rem 0; position: relative; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--navy); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 0.2rem; top: 0.95rem; font-size: 1.45rem; color: var(--gold); }
.faq-item[open] summary::after { content: '\2013'; }
.faq-a { padding: 0 0 1.3rem; font-size: 0.92rem; font-weight: 300; line-height: 1.8; color: var(--ink-soft); }

@media (max-width: 900px) {
  .cc-section { padding: 3.4rem 1.3rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .packages { grid-template-columns: 1fr; }
  .svc-areas { grid-template-columns: 1fr; }
}

/* Pricing buttons (Book / Buy -> Stripe) */
.pc-btn { display:inline-block; margin-top:1.1rem; background:var(--navy); color:var(--cream); font-size:0.7rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; padding:0.6rem 1.5rem; border-radius:2px; text-decoration:none; transition:background .25s,color .25s; }
.pc-btn:hover { background:var(--gold); color:var(--navy-deep); }
.pkg-buy { display:flex; gap:0.6rem; margin-top:1.1rem; }
.pkg-buy a { flex:1; text-align:center; background:var(--navy); color:var(--cream); font-size:0.66rem; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; padding:0.6rem 0.5rem; border-radius:2px; text-decoration:none; transition:background .25s,color .25s; }
.pkg-buy a:hover { background:var(--gold); color:var(--navy-deep); }

/* Netlify form honeypot */
.hidden-field { position:absolute !important; left:-9999px !important; height:0; overflow:hidden; }

/* Thank-you page */
.ty-wrap{max-width:640px;margin:0 auto;padding:7rem 1.5rem 6rem;text-align:center;}
.ty-wrap h1{font-family:'Cormorant Garamond',serif;font-weight:500;font-size:2.6rem;line-height:1.15;margin:0 0 1rem;color:var(--navy,#0b2538);}
.ty-wrap h1 em{font-style:italic;color:var(--gold,#c9973f);}
.ty-wrap p{font-family:'DM Sans',sans-serif;font-weight:300;font-size:1rem;line-height:1.8;color:var(--ink-soft,#4a4a4a);margin:0 auto 2rem;max-width:520px;}
