/* about — page-specific styles, verbatim from the approved export. */

.hero-overlay{
    position:absolute;inset:0;z-index:1;
    background:
      linear-gradient(180deg,rgba(0,0,0,.55) 0%,rgba(0,0,0,.42) 35%,rgba(0,0,0,.55) 75%,rgba(0,0,0,.72) 100%),
      linear-gradient(110deg,rgba(15,15,15,.55) 0%,transparent 55%);
  }

/* ========== FHB PAGE ADDITIONS ========== */
  .nav-links a.active{color:#fff;position:relative}

.nav-links a.active::after{
    content:"";position:absolute;left:0;right:0;bottom:-6px;height:2px;
    background:var(--gold-bright);border-radius:2px;
  }

/* single-column hero for FHB — full screen height */
  .hero{min-height:100vh;padding:0}

.hero-single{
    position:relative;z-index:2;max-width:900px;
    min-height:100vh;display:flex;flex-direction:column;justify-content:center;
    padding:100px 0 80px;
  }

.hero-single .hero-copy{max-width:820px}

.hero-single .lead{max-width:680px}

.hero-single .hero-ctas{display:flex;gap:12px;margin-top:36px;flex-wrap:wrap}

.hero-single .btn svg{width:16px;height:16px}

/* gold eyebrow for dark backgrounds */
  .eyebrow-gold{color:var(--gold-bright)}

.eyebrow-gold::before{background:var(--gold-bright)}

/* glass button for dark bg */
  .btn-glass{
    background:rgba(255,255,255,.12);color:#fff;
    border:1.5px solid rgba(255,255,255,.34);backdrop-filter:blur(8px);
  }

.btn-glass:hover{background:rgba(255,255,255,.2);transform:translateY(-3px);color:#fff}

.selector .sub{font-size:14px;color:var(--ink-mid);margin-bottom:20px}

/* consultation section */
  .consult-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:60px;align-items:center}

.consult-img{border-radius:20px;overflow:hidden;box-shadow:var(--shadow);aspect-ratio:5/6;background:var(--cream-deep)}

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

.consult-copy h2{font-size:clamp(32px,3.6vw,44px);margin:14px 0 22px}

.consult-copy p{font-size:16px;color:var(--ink-mid);line-height:1.7;margin-bottom:16px;max-width:600px}

.italic-lead{font-family:var(--serif);font-style:italic;font-weight:500;font-size:19px !important;color:var(--gold-deep) !important;line-height:1.5 !important}

.check-list{list-style:none;margin-top:22px}

.check-list li{display:flex;gap:14px;padding:16px 0;border-bottom:1px dashed var(--line);font-size:15.5px;color:var(--ink-mid);line-height:1.6}

.check-list li:last-child{border:none}

.check-list svg{width:20px;height:20px;flex:none;color:var(--gold);margin-top:3px;padding:3px;background:var(--cream);border-radius:50%;box-sizing:content-box}

.check-list strong{color:var(--ink);font-weight:700}

/* perfect match section */
  .match-grid{display:grid;grid-template-columns:1fr 1.05fr;gap:60px;align-items:center}

.match-copy h2{font-size:clamp(32px,3.6vw,44px);margin:14px 0 22px}

.match-copy p{font-size:16px;color:var(--ink-mid);line-height:1.7;margin-bottom:16px;max-width:560px}

.match-collage{position:relative;height:520px}

.match-collage>div{position:absolute;border-radius:18px;overflow:hidden;box-shadow:var(--shadow)}

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

.mc-1{top:0;left:0;width:65%;height:70%;z-index:1}

.mc-2{bottom:0;right:0;width:60%;height:65%;z-index:2}

/* team section */
  .team-grid{
    display:flex;flex-wrap:wrap;gap:26px;justify-content:center;margin-top:8px;
  }

.team-card{
    background:var(--white);border-radius:20px;overflow:hidden;
    border:1px solid var(--line);box-shadow:var(--shadow-sm);
    display:flex;flex-direction:column;transition:.25s;
    flex:0 1 calc((100% - 52px) / 3);max-width:calc((100% - 52px) / 3);
  }

.team-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}

.team-photo{aspect-ratio:4/5;background:var(--cream-deep);overflow:hidden}

.team-photo img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s}

/* Rod: zoom in on the face */
  .team-photo-zoom img{transform:scale(1.35);transform-origin:center 30%}

/* Anthony: zoom in slightly with focus on upper area to reduce headroom */
  .team-photo-top img{
    transform:scale(1.12);
    transform-origin:center 25%;
  }

/* Sam: light zoom with focus on upper area */
  .team-photo-sam img{
    transform:scale(1.05);
    transform-origin:center 25%;
  }

/* Peter: shift crop toward left of source + slight zoom to center his face */
  .team-photo-peter img{
    transform:scale(1.08);
    transform-origin:center 25%;
    object-position:0% center;
  }

.team-photo-fallback{
    display:flex;align-items:center;justify-content:center;
    background:linear-gradient(135deg,#2a2620,#1a1a1a);
    font-family:var(--serif);font-size:56px;font-weight:500;
    color:var(--gold-bright);letter-spacing:-.04em;
  }

.team-info{padding:24px}

.team-info h3{font-size:22px;margin:0 0 4px}

.team-role{
    font-size:11.5px;font-weight:700;letter-spacing:.16em;
    text-transform:uppercase;color:var(--gold-deep);
    display:block;margin-bottom:14px;
  }

.team-info p{font-size:14.5px;color:var(--ink-mid);line-height:1.6}

/* why-fhb features */
  .fhb-features{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}

.fhb-feature{
    background:var(--white);border-radius:18px;padding:28px 24px;
    border:1px solid var(--line);box-shadow:var(--shadow-sm);transition:.25s;
  }

.fhb-feature:hover{transform:translateY(-4px);box-shadow:var(--shadow)}

.ff-ic{
    width:52px;height:52px;border-radius:14px;
    background:linear-gradient(135deg,var(--gold-bright),var(--gold));
    display:flex;align-items:center;justify-content:center;margin-bottom:18px;
  }

.ff-ic svg{width:26px;height:26px;color:#241a05}

.fhb-feature h4{font-size:17px;margin-bottom:8px;line-height:1.25}

.fhb-feature p{font-size:13.5px;color:var(--ink-mid);line-height:1.55}

/* contact section */
  .contact-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:60px;align-items:center}

.contact-copy h2{font-size:clamp(32px,3.6vw,44px);margin:14px 0 22px}

.contact-copy>p{font-size:16px;color:var(--ink-mid);line-height:1.7;margin-bottom:26px;max-width:520px}

.contact-details{display:flex;gap:34px;margin-bottom:30px;flex-wrap:wrap}

.cd-item{display:flex;flex-direction:column;gap:2px}

.cd-lbl{font-size:11.5px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--gold-deep)}

.cd-item a{font-size:16px;font-weight:600;color:var(--ink)}

.cd-item a:hover{color:var(--gold-deep)}

.offices{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;padding:24px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line);margin-bottom:26px}

.office h5{font-family:var(--serif);font-weight:600;font-size:14px;color:var(--ink);margin-bottom:6px}

.office p{font-size:13px;color:var(--ink-mid);line-height:1.5}

.contact-img{border-radius:20px;overflow:hidden;box-shadow:var(--shadow);aspect-ratio:4/5}

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

@media(max-width:980px){
    .consult-grid,.match-grid,.contact-grid{grid-template-columns:1fr;gap:40px}
    .team-grid,.fhb-features{grid-template-columns:1fr 1fr}
    .team-card{flex-basis:calc((100% - 26px) / 2);max-width:calc((100% - 26px) / 2)}
    .match-collage{height:420px}
    .offices{grid-template-columns:1fr 1fr}
  }

@media(max-width:680px){
    .team-grid,.fhb-features,.offices{grid-template-columns:1fr}
    .team-card{flex-basis:100%;max-width:100%}
    .match-collage{height:auto;position:static}
    .match-collage>div{position:relative;width:100%;height:auto;aspect-ratio:4/3;margin-bottom:16px}
    .contact-details{gap:20px}
  }

/* ========== ABOUT PAGE ADDITIONS ========== */
  /* Why Choose Us — image left, content right, 2x2 features */
  .why-grid{
    display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.1fr);gap:60px;align-items:center;
  }

.why-content{min-width:0}

.why-img{
    border-radius:20px;overflow:hidden;box-shadow:var(--shadow);
    aspect-ratio:1535/1024;background:var(--cream-deep);
  }

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

.why-features{
    display:flex;gap:18px;overflow-x:auto;padding-bottom:2px;
    scroll-snap-type:x mandatory;scroll-padding:0;min-width:0;
    scroll-behavior:smooth;
    /* Hide scrollbar - we use dots instead */
    scrollbar-width:none;-ms-overflow-style:none;
  }

.why-features::-webkit-scrollbar{display:none}

.why-features > .fhb-feature{
    flex:0 0 100%;scroll-snap-align:start;scroll-snap-stop:always;
  }

/* Carousel indicator dots */
  .why-dots{
    display:flex;gap:8px;justify-content:center;margin-top:20px;
  }

.why-dots button{
    width:10px;height:10px;border-radius:50%;
    border:none;padding:0;cursor:pointer;
    background:rgba(0,0,0,.15);
    transition:all .3s cubic-bezier(.4,0,.2,1);
  }

.why-dots button:hover{background:rgba(0,0,0,.3)}

.why-dots button.active{
    background:var(--gold-deep);
    width:30px;border-radius:999px;
  }

/* Carousel controls strip — arrows flanking dots */
  .why-controls{
    display:flex;align-items:center;justify-content:center;
    gap:14px;margin-top:20px;
  }

.why-arrow{
    width:32px;height:32px;
    border-radius:50%;border:none;padding:0;cursor:pointer;
    background:transparent;color:var(--ink);
    display:flex;align-items:center;justify-content:center;
    transition:all .2s;
  }

.why-arrow:hover{
    background:var(--gold);color:var(--ink);
  }

.why-arrow:disabled{
    opacity:.3;cursor:not-allowed;
  }

.why-arrow:disabled:hover{
    background:transparent;color:var(--ink);
  }

.why-arrow svg{width:18px;height:18px}

/* The dots keep their own margin-top setting from earlier — override to 0 since parent handles spacing */
  .why-controls .why-dots{margin-top:0}

@media(max-width:1100px){
    .why-grid{grid-template-columns:1fr;gap:40px}
    .why-img{aspect-ratio:1535/1024;max-width:720px;margin:0 auto}
  }

/* Local Experts, National Reach — centred callout on dark band */
  .reach-inner{max-width:820px;margin:0 auto;text-align:center}

.reach-inner h2{color:var(--cream);font-size:clamp(32px,3.8vw,44px);margin:14px 0 22px}

.reach-inner h2 em{color:var(--gold-bright)}

.reach-inner>p{
    color:#bdb5a4;font-size:17px;line-height:1.65;max-width:640px;
    margin:0 auto 40px;
  }

.reach-stats{
    display:grid;grid-template-columns:repeat(3,1fr);gap:26px;
    padding-top:32px;border-top:1px solid rgba(255,255,255,.1);
  }

.reach-stats>div{display:flex;flex-direction:column;gap:6px;align-items:center}

.reach-stats .rs-num{
    font-family:var(--serif);font-size:44px;font-weight:500;color:var(--gold-bright);
    line-height:1;letter-spacing:-.02em;
  }

.reach-stats .rs-lbl{
    font-size:13px;color:#bdb5a4;font-weight:500;letter-spacing:.02em;text-align:center;
  }

@media(max-width:680px){
    .reach-stats{grid-template-columns:1fr;gap:24px}
    .reach-stats .rs-num{font-size:36px}
  }
