
/*
  VERSION B — "The Weight to the Light"
  CONCEPT: The page itself enacts Richard's therapy arc.
  You arrive in darkness (the exhausted client). Pain panels are
  pure dark-field typography — no image-text boxes, just words
  hitting like they do at 2am. The bridge pivot is where amber
  cuts through: "We change." The page then LIGHTENS — bio, approach,
  and final CTA live in warmth and ivory. By the time you reach the
  form, you feel the shift. The design is the argument.
*/
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

a[href^="tel:"], a[href^="mailto:"] { text-decoration: none; }

:root{
  --ink:#0D1C38;           /* much deeper than standard cobalt — opening darkness */
  --cobalt:#1E4080;
  --cobalt-mid:#2A5299;
  --amber:#B86010;
  --gold:#D4870A;
  --ivory:#FAF8F2;
  --cream:#F4EFE4;
  --white:#FEFCF8;
  --text:#1A1918;
  --muted:#6B6560;
  --rule:rgba(30,64,128,.13);
}

html{scroll-behavior:smooth}

body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:var(--ink);  /* page opens dark */
  font-size:clamp(.95rem,.65vw + .78rem,1.05rem);
  line-height:1.72;
  text-wrap:pretty;
  padding-bottom:0;
}
/* Inner pages: light ivory background — NOT the dark ink opening */
body.page,
body.single,
body.blog,
body.search {
  background:var(--ivory);
}



h1,h2,h3,h4{
  font-family:'DM Serif Display',Georgia,serif;
  text-wrap:balance;
  line-height:1.15;
}

img{display:block}

/* ── NAV ── */
.site-nav{
  position:fixed;
  top:0;left:0;right:0;
  z-index:200;
  background:var(--ink);
  border-bottom:1px solid rgba(255,255,255,.07);
}

.nav-bar{
  max-width:1400px;
  margin:0 auto;
  padding:0 2.5rem;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
}

.nav-logo{
  display:flex;
  align-items:center;
  gap:.75rem;
  text-decoration:none;
  flex-shrink:0;
}

.nav-logo img{height:34px;width:auto}

.nav-logo-text{
  font-family:'Inter',sans-serif;
  font-weight:600;
  font-size:.8rem;
  color:#fff;
  letter-spacing:.05em;
  text-transform:uppercase;
  line-height:1.2;
}

.nav-logo-text small{
  display:block;
  font-weight:300;
  font-size:.64rem;
  letter-spacing:.1em;
  opacity:.5;
  margin-top:.2rem;
  text-transform:uppercase;
}

.nav-links{
  display:flex;
  align-items:center;
  list-style:none;
  flex:1;
  justify-content:center;
  gap:0;
}

.nav-links>li{position:relative}

.nav-links>li>a{
  display:block;
  padding:.45rem .8rem;
  color:rgba(255,255,255,.6);
  text-decoration:none;
  font-size:.7rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  font-weight:500;
  transition:color .2s;
  white-space:nowrap;
}
.nav-links>li>a:hover{color:rgba(255,255,255,.92)}

/* TPA_Nav_Walker outputs: li.dropdown + a.dropdown-toggle + ul.dropdown-menu */
.nav-links .dropdown>.dropdown-toggle{cursor:default;pointer-events:none}
.nav-links .dropdown>.dropdown-toggle::after{content:' ▾';font-size:.55rem;opacity:.55}

.nav-links .dropdown-menu{
  display:none;
  position:absolute;
  top:100%;left:0;
  background:#1E4080;
  border-top:2px solid #B86010;
  min-width:220px;
  list-style:none;
  box-shadow:0 8px 32px rgba(0,0,0,.5);
  z-index:9999;
}

.nav-links .dropdown-menu li{list-style:none}

.nav-links .dropdown-menu a{
  display:block;
  padding:.6rem 1.35rem;
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-size:.72rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-weight:400;
  transition:color .15s,background .15s;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.nav-links .dropdown-menu a:hover{color:#fff;background:rgba(255,255,255,.08)}

.nav-links .dropdown:hover>.dropdown-menu,
.nav-links .dropdown:focus-within>.dropdown-menu{display:block}

/* ── NAV TWIN BUTTONS (matches Version A) ── */
.nav-twinbtn{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.nav-tb-phone,
.nav-tb-cta{
  font-family:'Inter',sans-serif;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  text-decoration:none;
  white-space:nowrap;
  padding:.45rem 1.1rem;
  line-height:1;
  border:1.5px solid var(--amber);
  transition:background .25s,color .25s;
}

.nav-tb-phone{
  background:var(--cobalt-dark);
  color:rgba(255,255,255,.88);
  border-right:none;
}
.nav-tb-phone:hover{background:#fff;color:var(--cobalt)}

.nav-tb-cta{
  background:var(--amber);
  color:#fff;
}
.nav-tb-cta:hover{background:var(--gold)}

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;border:none;
  cursor:pointer;padding:.4rem;
}
.hamburger span{display:block;width:22px;height:2px;background:#fff;transition:all .3s}

.mobile-nav{display:none;background:rgba(13,28,56,.97)}
.mobile-nav.open{display:block}
.mobile-nav a{
  display:block;
  padding:.72rem 1.5rem;
  color:rgba(255,255,255,.72);
  text-decoration:none;
  font-size:.88rem;
  border-bottom:1px solid rgba(255,255,255,.07);
  letter-spacing:.04em;
  transition:color .15s;
}
.mobile-nav a:hover{color:#fff}
.mobile-sub a{padding-left:2.5rem;font-size:.8rem;color:rgba(255,255,255,.5)}

/* ─────────────────────────────────────
   DARK ZONE (hero + pain sections)
   Background: var(--ink) — already set on body
───────────────────────────────────── */

/* ── HERO — diagonal clip-path split ── */
.hero{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:flex-end;
  padding-top:64px;
  overflow:hidden;
  background:var(--ink);
}

/* Full-bleed image at strong opacity — actually shows */
.hero-image-bleed{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  overflow:hidden;
}

.hero-image-bleed img{
  width:100%;height:100%;
  object-fit:cover;
  object-position:center 25%;
  /* Was .75. The hero copy sits on the solid --ink diagonal (z-index 1), not
     on the photo, so desktop contrast is fixed at 5.95:1 regardless of this
     value — it is purely how much photograph shows. */
  opacity:.90;
  display:block;
}

/* No gradient mask — image shows clean */
.hero-image-bleed::before{display:none}

/* Cobalt diagonal zone: full-width at top, narrows to 40% at bottom */
.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:var(--ink);
  clip-path:polygon(0 0, 62% 0, 40% 100%, 0 100%);
  z-index:1;
}

/* Thin amber accent line at the diagonal edge */
.hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:var(--amber);
  clip-path:polygon(62% 0, calc(62% + 3px) 0, calc(40% + 3px) 100%, 40% 100%);
  z-index:2;
  opacity:.9;
}

.hero-content{
  position:relative;
  z-index:3;
  width:42%;
  padding:0 2.5rem clamp(5rem,9vw,9rem) clamp(3.5rem,7%,7rem);
}

.hero-amber-line{
  width:48px;height:2px;
  background:var(--amber);
  margin-bottom:2.25rem;
}

.hero h1{
  font-size:clamp(2.8rem,5.5vw,5.5rem);
  color:#fff;
  max-width:14ch;
  font-style:italic;
  letter-spacing:-.01em;
  margin-bottom:2rem;
  font-weight:400;
}

/* Horizontal amber rule under h1 */
.hero-h1-rule{
  width:100%;
  max-width:520px;
  height:1px;
  background:linear-gradient(to right,var(--amber) 0%,rgba(184,96,16,0) 100%);
  margin-bottom:1.75rem;
}

.hero-sub{
  font-size:clamp(.9rem,1.2vw,1rem);
  color:rgba(255,255,255,.55);
  max-width:48ch;
  line-height:1.65;
  margin-bottom:.5rem;
  font-weight:300;
  letter-spacing:.02em;
}

.hero-location{
  font-size:.68rem;
  letter-spacing:.14em;
  /* Was .28 — that measured 2.58:1 on the solid --ink diagonal, i.e. a
     pre-existing failure against the 4.5:1 small-text bar, and it would have
     disappeared entirely once the photo was lightened. .62 gives 7.23:1. */
  color:rgba(255,255,255,.62);
  text-transform:uppercase;
  margin-bottom:2.75rem;
}

.hero-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:.85rem;
  align-items:center;
}

.btn-dark{
  display:inline-block;
  font-family:'Inter',sans-serif;
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  text-decoration:none;
  border:none;
  cursor:pointer;
  transition:all .2s;
}

.btn-amber-d{background:var(--amber);color:#fff;padding:.78rem 1.75rem}
.btn-amber-d:hover{background:var(--gold)}

.btn-outline-b{
  background:transparent;
  color:rgba(255,255,255,.65);
  border:1px solid rgba(255,255,255,.25);
  padding:.72rem 1.5rem;
}
.btn-outline-b:hover{color:#fff;border-color:rgba(255,255,255,.5)}

.btn-ghost-d{
  background:transparent;
  color:rgba(255,255,255,.58);
  border:1px solid rgba(255,255,255,.2);
  padding:.72rem 1.5rem;
}
.btn-ghost-d:hover{color:#fff;border-color:rgba(255,255,255,.45)}

/* ── PAIN SECTIONS — PURE DARK TYPOGRAPHY ── */
/*
  No image-text splits. The pain is IN the words.
  Each section is words on darkness, fragmented
  and deliberately sized — some lines big, some whispered.
  The client's actual background image bleeds in at low opacity
  as atmosphere, not illustration.
*/

.pain-dark{
  position:relative;
  overflow:hidden;
  padding:clamp(5rem,10vw,10rem) 0;
  background:var(--ink);
}

/* Faint atmosphere image */
.pain-dark-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:.07;
}

.pain-dark-inner{
  position:relative;
  z-index:1;
  max-width:900px;
  margin:0 auto;
  padding:0 2.5rem;
}

.pain-section-label{
  font-size:.62rem;
  font-weight:700;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:var(--amber);
  margin-bottom:2.5rem;
  display:flex;
  align-items:center;
  gap:.75rem;
}

.pain-section-label::before{
  content:'';
  display:block;
  width:32px;height:1.5px;
  background:var(--amber);
  flex-shrink:0;
}

/* The opening line is large — sets the emotional key */
.pain-lead{
  font-family:'DM Serif Display',serif;
  font-size:clamp(2rem,4vw,3.5rem);
  color:#fff;
  font-style:italic;
  line-height:1.2;
  margin-bottom:2.5rem;
}

/* Regular copy — white, open leading */
.pain-prose p{
  color:rgba(255,255,255,.72);
  font-size:clamp(.95rem,1.1vw,1.05rem);
  line-height:1.82;
  margin-bottom:.7rem;
}

/* Occasional emphasis — back to white */
.pain-prose .white{color:rgba(255,255,255,.95);font-weight:500}

/* The emotional "stab" lines — fragments set large, centered, italicized */
.pain-stab{
  font-family:'DM Serif Display',serif;
  font-size:clamp(1.4rem,2.5vw,2.2rem);
  color:rgba(255,255,255,.88);
  font-style:italic;
  text-align:center;
  margin:2.5rem 0;
  line-height:1.35;
  padding:0 1rem;
}

.pain-stab.amber{color:var(--gold)}

/* CTA link at end of pain section */
.pain-link{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  margin-top:2rem;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--amber);
  text-decoration:none;
  transition:gap .2s,color .2s;
}
.pain-link:hover{gap:.9rem;color:var(--gold)}

/* Thin horizontal rule between pain sections */
.pain-rule{
  border:none;
  border-top:1px solid rgba(255,255,255,.07);
  max-width:500px;
  margin:0 auto;
}

/* ── BRIDGE: DARKNESS TO AMBER ── */
/*
  The emotional pivot. Design transitions:
  dark → amber → light. "We change." is the turning point.
*/
.bridge-b{
  background:linear-gradient(to bottom,
    var(--ink) 0%,
    #1A2D55 25%,
    #2A3F70 50%,
    var(--cobalt) 75%,
    var(--amber) 100%);
  padding:clamp(6rem,12vw,12rem) 2.5rem clamp(8rem,14vw,14rem);
  text-align:center;
  position:relative;
  overflow:hidden;
}


.bridge-b-inner{
  position:relative;
  z-index:1;
  max-width:800px;
  margin:0 auto;
}

.bridge-honest{
  font-size:.62rem;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:rgba(255,255,255,.35);
  margin-bottom:3rem;
  font-weight:600;
}

.bridge-setup{
  font-family:'DM Serif Display',serif;
  font-size:clamp(1.3rem,2.5vw,2rem);
  font-style:italic;
  color:rgba(255,255,255,.65);
  margin-bottom:.5rem;
}

.bridge-punchline{
  font-family:'DM Serif Display',serif;
  font-size:clamp(1.1rem,2vw,1.6rem);
  font-style:italic;
  color:var(--gold);
  margin-bottom:3rem;
}

.bridge-big{
  font-family:'DM Serif Display',serif;
  font-size:clamp(4.5rem,10vw,10rem);
  color:#fff;
  line-height:.95;
  letter-spacing:-.02em;
  margin-bottom:.75rem;
  font-style:italic;
}

.bridge-echo{
  font-size:clamp(.9rem,1.3vw,1.1rem);
  color:rgba(255,255,255,.55);
  font-style:italic;
  margin-bottom:3.5rem;
}

.bridge-prose{
  max-width:56ch;
  margin:0 auto 3.5rem;
  font-size:clamp(.95rem,1.2vw,1.05rem);
  color:rgba(255,255,255,.72);
  line-height:1.85;
}
.bridge-prose p{margin-bottom:.7rem}
.bridge-prose .bright{color:#fff;font-weight:600}
.bridge-prose .warm{color:var(--gold)}

/* ─────────────────────────────────────
   LIGHT ZONE (bio onwards)
   The page has pivoted. Now: warmth, ivory, breath.
───────────────────────────────────── */

/* SVG arch from amber → ivory */
.zone-transition{
  display:block;line-height:0;overflow:hidden;
  background:var(--amber);margin-bottom:-1px;
}
.zone-transition svg{display:block;width:100%}

/* ── BIO — WARM, OPEN, EARNED ── */
.bio-b{
  background:var(--ivory);
  padding:clamp(5.5rem,9vw,9rem) 0 clamp(5rem,8vw,8rem);
}

.bio-b-inner{
  max-width:1300px;
  margin:0 auto;
  padding:0 2.5rem;
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:clamp(3rem,6vw,7rem);
  align-items:start;
}

.bio-photo-wrap{
  opacity:1;
  transform:none;
}

.bio-photo-wrap img{
  width:100%;height:auto;
  box-shadow:0 24px 64px rgba(30,64,128,.14);
}

/* Amber overline above the photo */
.bio-photo-rule{
  width:48px;height:2px;
  background:var(--amber);
  margin-bottom:1.5rem;
}

.bio-credential-line{
  margin-top:1rem;
  font-size:.67rem;
  font-weight:500;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
}

.bio-text-b{}

.bio-kicker{
  font-size:.62rem;
  font-weight:700;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--amber);
  margin-bottom:1.25rem;
  display:flex;
  align-items:center;
  gap:.75rem;
}
.bio-kicker::before{
  content:'';
  display:block;
  width:28px;height:1.5px;
  background:var(--amber);flex-shrink:0;
}

.bio-greeting{
  font-family:'DM Serif Display',serif;
  font-size:clamp(2.2rem,4vw,3.2rem);
  color:var(--cobalt);
  margin-bottom:2rem;
  font-style:italic;
}

.bio-text-b p{
  margin-bottom:.9rem;
  font-size:.95rem;
  color:var(--text);
  line-height:1.78;
}

/* The promise — sits inside a warm ivory block, no border-left per memory rule */
.bio-promise{
  margin-top:2.5rem;
  background:var(--cobalt);
  padding:1.75rem 2rem;
  position:relative;
}

/* Amber overline on promise block */
.bio-promise::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:2px;
  background:var(--amber);
}

.bio-promise p{
  font-family:'DM Serif Display',serif;
  font-size:clamp(1.05rem,1.7vw,1.25rem);
  color:#fff;
  line-height:1.5;
  margin:0;
}

.bio-promise p+p{
  margin-top:1rem;
}

.bio-promise strong{
  font-style:normal;
  color:var(--gold);
  font-weight:400;
}

.bio-cta-b{margin-top:2rem}

/* ── SERVICES ── */
.services-b{
  background:var(--ink);
  padding:6rem 0 5rem;
}

.services-b-inner{
  max-width:1300px;
  margin:0 auto;
  padding:0 2.5rem;
}

.svc-header{
  text-align:center;
  margin-bottom:3.5rem;
  padding-bottom:2rem;
}

.svc-header h2{
  font-size:4rem;
  color:#fff;
  font-family:'DM Serif Display',serif;
  font-style:italic;
  font-weight:400;
  line-height:1.1;
  display:inline-block;
  position:relative;
}

/* Thin white rule, exactly text-wide */
.svc-header h2::after{
  content:'';
  display:block;
  width:100%;
  height:1px;
  background:#fff;
  margin-top:.45rem;
  opacity:.45;
}

.svc-header-note{display:none}

/* Three services: staggered cards at 55% width */
.svc-list{display:flex;flex-direction:column;gap:1.25rem}

.svc-item{
  display:flex;
  align-items:center;
  gap:0;
  padding:0;
  position:relative;
  overflow:hidden;
  /* Base amber = the 3px diagonal line, always visible */
  background:var(--amber);
  opacity:0;
  transform:translateY(14px);
  transition:opacity .6s ease, transform .6s ease;
  cursor:pointer;
  text-decoration:none;
  color:inherit;
  width:68%;
}

.svc-item.visible{opacity:1;transform:translateY(0)}
.svc-item:nth-child(1){align-self:flex-start;margin-left:5%}
.svc-item:nth-child(2){transition-delay:.08s;align-self:flex-end;margin-right:5%}
.svc-item:nth-child(3){transition-delay:.16s;align-self:flex-start;margin-left:5%}

/* Left cobalt zone — proportional per title length */
.svc-item::before{
  content:'';
  position:absolute;
  inset:0;
  background:var(--ink);
  /* Individual (18ch) + Couples (15ch): 63% top / 55% bottom */
  clip-path:polygon(1.5px 1.5px, calc(63% - 3px) 1.5px, calc(55% - 3px) calc(100% - 1.5px), 1.5px calc(100% - 1.5px));
  z-index:0;
  transition:background .55s ease;
}

/* Right amber zone */
.svc-item::after{
  content:'';
  position:absolute;
  inset:0;
  background:var(--amber);
  clip-path:polygon(calc(63% + 3px) 0, 100% 0, 100% 100%, calc(55% + 3px) 100%);
  z-index:0;
  transition:background .55s ease;
}

/* On hover: left flips to amber */
.svc-item:hover::before{background:var(--amber)}

/* Right zone on hover: cobalt fill, inset 4px on outer edges so amber base
   shows as a proper border tracing the full parallelogram shape */
.svc-item:hover::after{
  background:var(--cobalt);
  clip-path:polygon(
    calc(63% + 3px) 4px,
    calc(100% - 4px) 4px,
    calc(100% - 4px) calc(100% - 4px),
    calc(55% + 3px) calc(100% - 4px)
  );
}

/* Somatic item hover — wider zone, same inset treatment */
.svc-item:nth-child(3):hover::after{
  clip-path:polygon(
    calc(78% + 3px) 4px,
    calc(100% - 4px) 4px,
    calc(100% - 4px) calc(100% - 4px),
    calc(70% + 3px) calc(100% - 4px)
  );
}

/* Somatic & Holistic Therapy (26ch) — wider cobalt zone to contain the longer title */
.svc-item:nth-child(3)::before{
  clip-path:polygon(1.5px 1.5px, calc(78% - 3px) 1.5px, calc(70% - 3px) calc(100% - 1.5px), 1.5px calc(100% - 1.5px));
}
.svc-item:nth-child(3)::after{
  clip-path:polygon(calc(78% + 3px) 0, 100% 0, 100% 100%, calc(70% + 3px) 100%);
}

/* Content and arrow sit above background layers */
.svc-content{
  position:relative;
  z-index:1;
  flex:1;
  padding:2.5rem 2rem 2.5rem 2.5rem;
}

.svc-content h3{
  font-family:'DM Serif Display',serif;
  font-size:clamp(1.75rem,3vw,2.5rem);
  font-style:normal;
  font-weight:700;
  color:rgba(255,255,255,.92);
  margin-bottom:.75rem;
  line-height:1.05;
  letter-spacing:-.01em;
  transition:color .3s ease;
}

.svc-item:hover .svc-content h3{
  color:var(--cobalt);
}

.svc-content p{
  font-size:.88rem;
  color:rgba(255,255,255,.62);
  line-height:1.90;
  max-width:40ch;
}

/* Right zone wrapper — arrow container */
.svc-zone-right{
  position:relative;
  z-index:1;
  flex-shrink:0;
  align-self:stretch;
  display:flex;
  align-items:center;
  padding:0 1.75rem;
}

.svc-arrow{
  position:relative;
  font-size:4.5rem;
  color:var(--ink);
  transition:transform .35s ease, color .55s ease;
  font-family:'DM Serif Display',serif;
}
.svc-item:hover .svc-arrow{
  transform:translateX(6px);
  color:#fff;
}

/* ── TESTIMONIALS — VERTICAL STACK, IVORY ── */
.testimonials-b{
  background:var(--cream);
  padding:4rem 0;
  border-top:2px solid var(--amber);
}

.t-b-inner{
  max-width:800px;
  margin:0 auto;
  padding:0 2.5rem;
}

/* No header — quote speaks for itself */
.t-b-header{display:none}

/* Single-quote slide carousel */
.t-carousel{position:relative}

.t-carousel-wrap{
  display:grid; /* all slides stacked in same cell */
}

.t-slide{
  grid-area:1 / 1;
  opacity:0;
  transform:translateX(40px);
  transition:opacity .55s ease, transform .55s cubic-bezier(.25,.46,.45,.94);
  pointer-events:none;
}

.t-slide.active{
  opacity:1;
  transform:translateX(0);
  pointer-events:auto;
}

.t-slide.exiting{
  opacity:0;
  transform:translateX(-40px);
  transition:opacity .4s ease, transform .4s ease;
}

/* Amber overline above each quote */
.t-slide::before{
  content:'';
  display:block;
  width:36px;
  height:2px;
  background:var(--amber);
  margin-bottom:1.5rem;
}

.t-text{
  font-family:'DM Serif Display',serif;
  font-size:clamp(1.25rem,2vw,1.65rem);
  color:var(--cobalt);
  font-style:italic;
  line-height:1.6;
  margin-bottom:1.5rem;
}

.t-text::before{content:'\201C';color:var(--amber)}
.t-text::after{content:'\201D';color:var(--amber)}

.t-by{
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--amber);
  padding-top:1rem;
  border-top:1px solid rgba(30,64,128,.15);
  display:block;
}

.t-carousel-controls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:2.5rem;
}

.t-prev-b,.t-next-b{
  background:transparent;
  border:1px solid var(--rule);
  color:var(--cobalt);
  width:40px;height:40px;
  cursor:pointer;
  font-size:.85rem;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .2s, border-color .2s, color .2s;
}
.t-prev-b:hover,.t-next-b:hover{
  background:var(--amber);
  border-color:var(--amber);
  color:#fff;
}

.t-dots-b{display:flex;gap:.5rem;align-items:center}

.t-dot-b{
  width:6px;height:6px;
  border-radius:50%;
  background:rgba(30,64,128,.2);
  border:none;
  cursor:pointer;
  transition:background .25s, transform .25s;
  padding:0;
}
.t-dot-b.active{
  background:var(--amber);
  transform:scale(1.4);
}

/* ── APPROACH — PULL QUOTE SYSTEM ── */
/*
  Left column: pull quotes in Richard's voice, large, italic.
  Right column: the prose, normal size.
  The pull quotes are fragments that speak to the reader DIRECTLY.
*/
.approach-b{
  background:var(--ivory);
  padding:2rem 0 7rem;
}

.approach-b-inner{
  max-width:1300px;
  margin:0 auto;
  padding:0 2.5rem;
}

.approach-header-b{
  margin-bottom:clamp(3.5rem,6vw,6rem);
  max-width:600px;
}

.approach-kicker{
  font-size:.62rem;
  font-weight:700;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--amber);
  margin-bottom:1rem;
  display:flex;
  align-items:center;
  gap:.75rem;
}


.approach-header-b h2{
  font-size:clamp(2rem,3.8vw,3rem);
  color:var(--cobalt);
  margin-bottom:.75rem;
}

.approach-header-b p{
  color:var(--muted);
  font-size:.88rem;
  line-height:1.65;
}

/* Heading inside the prose column — above all the content */
/* Section heading — slightly larger than subheads to anchor the section */
.approach-b-section-heading{
  font-family:'DM Serif Display',serif;
  font-size:clamp(2.2rem,3.8vw,3.5rem);
  color:var(--cobalt);
  font-weight:400;
  font-style:italic;
  line-height:1.15;
  text-wrap:balance;
  margin-bottom:1.75rem;
}

/* Elevated direct statements — Richard's voice at its most direct */
.approach-statement{
  font-family:'DM Serif Display',serif;
  font-size:clamp(1.2rem,1.8vw,1.55rem);
  font-style:italic;
  font-weight:400;
  color:var(--cobalt);
  line-height:1.5;
  margin:1.75rem 0 1rem;
  text-wrap:balance;
}

/* Warm accent moments — amber italic, conversational register */
.approach-warm{
  font-style:italic;
  color:var(--amber);
}

/* The closing invitation */
.approach-closing{
  font-family:'DM Serif Display',serif;
  font-size:clamp(1.3rem,2vw,1.65rem);
  font-style:italic;
  font-weight:400;
  color:var(--cobalt);
  line-height:1.45;
  margin-top:2rem;
  text-wrap:balance;
}

.approach-pair{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:clamp(3rem,6vw,7rem);
  align-items:start;
  margin-bottom:clamp(4rem,7vw,7rem);
}

.approach-pair:last-child{margin-bottom:0}

/* Image-paired variant — image matches text height */
.approach-pair--img{
  align-items:stretch;
}

.approach-pair--img .approach-img-b{
  position:relative;
  min-height:0;
}

.approach-pair--img .approach-img-b img{
  position:absolute;
  inset:0;
  width:100%;height:100%;
  object-fit:cover;
  object-position:center;
  box-shadow:0 16px 48px rgba(30,64,128,.1);
}

/* Pull quote column */
.pull-col{}

.pull-quote{
  font-family:'DM Serif Display',serif;
  font-size:clamp(1.6rem,3vw,2.5rem);
  color:var(--cobalt);
  font-style:italic;
  line-height:1.3;
  position:relative;
  padding-top:1.5rem;
}

.pull-quote::before{
  content:'';
  position:absolute;
  top:0;left:0;
  width:48px;height:2px;
  background:var(--amber);
}

.pull-attrib{
  margin-top:1.25rem;
  font-size:.7rem;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
}

/* Approach image */
.approach-img-b img{
  width:100%;height:auto;
  box-shadow:0 12px 40px rgba(30,64,128,.1);
}

/* Prose column */
.prose-col p{
  font-size:.95rem;
  color:var(--text);
  line-height:1.78;
  margin-bottom:.75rem;
}

.prose-subhead{
  font-family:'DM Serif Display',serif;
  font-size:clamp(1.8rem,3vw,2.75rem);
  color:var(--cobalt);
  font-weight:400;
  font-style:italic;
  line-height:1.2;
  text-wrap:balance;
  margin:2.5rem 0 1.25rem;
  padding-top:2rem;
  border-top:1px solid var(--rule);
}

/* ── FINAL CTA — CENTERED, OPEN, WARM ── */
/*
  After the arc from dark to light, the final CTA is NOT a diptych.
  It's open and centered — a clearing after the journey.
  Cobalt background, form centered on the page.
*/
.final-b{
  background:var(--cobalt);
  padding:3rem 2.5rem;
  position:relative;
  overflow:hidden;
}


.final-b-inner{
  position:relative;
  z-index:1;
  max-width:760px;
  margin:0 auto;
  text-align:center;
}


.final-b h2{
  font-family:'DM Serif Display',serif;
  font-size:clamp(2.2rem,4vw,3.4rem);
  color:#fff;
  font-style:italic;
  margin-bottom:1.25rem;
  line-height:1.2;
}

.final-b-body{
  color:rgba(255,255,255,.7);
  font-size:1rem;
  line-height:1.82;
  margin-bottom:2.5rem;
}
.final-b-body p{margin-bottom:.5rem}
.final-b-mud{font-family:'DM Serif Display',serif;font-style:italic;color:rgba(255,255,255,.9);font-size:1.1em}

.final-contact{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:2.5rem;
  margin-bottom:3.5rem;
  flex-wrap:wrap;
}

.final-contact a{
  font-size:1rem;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:color .2s;
  display:flex;
  align-items:center;
  gap:.5rem;
}
.final-contact a:hover{color:var(--gold)}
.final-contact-icon{color:var(--gold)}

/* Form — wider, centered */
.form-b-center{
  background:var(--ivory);
  padding:2.5rem;
  text-align:left;
  max-width:560px;
  margin:0 auto;
  border:2px solid var(--amber);
}

.form-b-center h3{
  font-family:'DM Serif Display',serif;
  font-size:1.3rem;
  color:var(--cobalt);
  margin-bottom:1.5rem;
  font-style:italic;
  font-weight:400;
}

.fg-b{margin-bottom:1.2rem}

.fg-b label{
  display:block;
  font-size:.64rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:.4rem;
}

.fg-b input,
.fg-b textarea{
  width:100%;
  padding:.7rem .9rem;
  border:1.5px solid rgba(30,64,128,.16);
  background:#fff;
  font-family:'Inter',sans-serif;
  font-size:.95rem;
  color:var(--text);
  outline:none;
  transition:border-color .2s;
  appearance:none;
}
.fg-b input:focus,
.fg-b textarea:focus{border-color:var(--cobalt)}
.fg-b textarea{height:105px;resize:vertical}

.btn-submit-b{
  width:100%;
  padding:.88rem;
  background:var(--cobalt);
  color:#fff;
  border:none;
  font-family:'Inter',sans-serif;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .2s;
}
.btn-submit-b:hover{background:var(--amber)}

/* ── VERSION A FINAL CTA (injected into BA) ── */
.container{
  max-width:1340px;
  margin:0 auto;
  padding:0 2rem;
}

.final-cta{
  background:var(--cobalt);
  padding:clamp(5rem,10vw,9rem) 2rem;
}

.final-cta-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(3rem,5vw,7rem);
  align-items:start;
}

.cta-title{
  font-family:'DM Serif Display',serif;
  font-size:clamp(2rem,3.8vw,3rem);
  color:#fff;
  margin-bottom:1.25rem;
  line-height:1.2;
  text-wrap:balance;
}

.cta-body{
  color:rgba(255,255,255,.78);
  line-height:1.85;
  margin-bottom:2rem;
}

.cta-body p{margin-bottom:.5rem}

.cta-mud{
  font-family:'DM Serif Display',serif;
  font-style:italic;
  font-size:1.05em;
  color:rgba(255,255,255,.92);
}

.contact-direct{margin-top:2.75rem}

.contact-direct p{margin-bottom:1rem;
  font-size:1rem;
  color:rgba(255,255,255,.72);
  margin-bottom:.65rem;
  display:flex;
  align-items:center;
  gap:.65rem;
}

.contact-direct a{
  color:#fff;
  text-decoration:none;
  font-weight:700;
  transition:color .2s;
}
.contact-direct a:hover{color:var(--gold)}

.contact-icon{
  color:var(--gold);
  font-size:1rem;
  flex-shrink:0;
}

.form-card{
  background:var(--ivory);
  padding:2.5rem;
  border:2px solid var(--amber);
}

.form-card h3{
  font-family:'DM Serif Display',serif;
  font-size:1.35rem;
  color:var(--cobalt);
  margin-bottom:1.75rem;
  font-style:italic;
  font-weight:400;
}

.fg{margin-bottom:1.25rem}

.fg label{
  display:block;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:.4rem;
}

.fg input,
.fg textarea{
  width:100%;
  padding:.72rem 1rem;
  border:1.5px solid rgba(30,64,128,.18);
  background:#fff;
  font-family:'Inter',sans-serif;
  font-size:.95rem;
  color:var(--text);
  outline:none;
  transition:border-color .2s;
  appearance:none;
}

.fg input:focus,
.fg textarea:focus{border-color:var(--cobalt)}
.fg textarea{height:115px;resize:vertical}

.form-submit-a{
  width:100%;
  padding:.9rem;
  background:var(--amber);
  color:#fff;
  border:none;
  font-family:'Inter',sans-serif;
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .2s;
}
.form-submit-a:hover{background:var(--gold)}

@media(max-width:768px){
  .final-cta-grid{grid-template-columns:1fr}
}

/* ── FOOTER ── */
footer{
  background:var(--ink);
  border-top:2px solid var(--amber);
  padding:2.25rem 2.5rem 1.75rem;
}

.footer-inner{
  max-width:1340px;
  margin:0 auto;
}

.footer-top-b{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
  flex-wrap:wrap;
  padding-bottom:1.5rem;
  border-bottom:1px solid rgba(255,255,255,.07);
  margin-bottom:0;
}

.footer-nav{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:2rem 0;
  padding:2.25rem 30px 2.25rem calc(36px + .85rem);
  border-bottom:1px solid rgba(255,255,255,.07);
}

.footer-col:nth-child(2){justify-self:center}
.footer-col:nth-child(3){justify-self:end}

.footer-col-title{
  font-family:'Inter',sans-serif;
  font-size:.6rem;
  font-weight:700;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--amber);
  margin-bottom:1rem;
}

.footer-col ul{
  list-style:none;
  padding:0;margin:0;
  display:flex;
  flex-direction:column;
  gap:0;
}

.footer-col ul a{
  font-size:.75rem;
  color:rgba(255,255,255,.48);
  text-decoration:none;
  transition:color .2s;
  line-height:1.55;
  display:block;
  padding:.1rem 0;
}
.footer-col ul a:hover{color:rgba(255,255,255,.85)}

.footer-brand{
  display:flex;
  align-items:center;
  gap:.85rem;
  text-decoration:none;
}
.footer-brand:hover{text-decoration:none}

.footer-brand img{height:32px;width:auto}

.footer-brand-name{
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.72);
}

.footer-brand-cred{
  font-size:.62rem;
  color:rgba(255,255,255,.32);
  letter-spacing:.05em;
  margin-top:.2rem;
}

.footer-pt a{
  font-size:.62rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:rgba(255,255,255,.35);
  text-decoration:none;
  border:1px solid rgba(255,255,255,.15);
  padding:.3rem .75rem;
  transition:all .2s;
}
.footer-pt a:hover{color:rgba(255,255,255,.75);border-color:rgba(255,255,255,.3)}

.footer-bottom{
  max-width:1400px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}

.footer-legal{
  display:flex;gap:1.5rem;list-style:none;flex-wrap:wrap;
}
.footer-legal a{
  font-size:.65rem;
  color:rgba(255,255,255,.3);
  text-decoration:none;
  letter-spacing:.06em;
  transition:color .2s;
}
.footer-legal a:hover{color:rgba(255,255,255,.65)}

.footer-copy{
  font-size:.62rem;
  color:rgba(255,255,255,.2);
}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .footer-nav{grid-template-columns:repeat(2,1fr)}
  .svc-item{grid-template-columns:1fr auto}
  .bio-b-inner{grid-template-columns:1fr 1fr;gap:3rem}
  .approach-pair{grid-template-columns:1fr}
  .approach-pair.flip .pull-col{order:0}
  .approach-pair.flip .prose-col{order:0}
}

@media(max-width:768px){
  .nav-links,.nav-twinbtn{display:none}
  .hamburger{display:flex}

  /* On mobile: remove diagonal, use full dark overlay.
     Eased 2026-07-31. The diagonal is gone here, so the copy sits directly on
     the photo and this is the binding case for the whole hero. Was .55 image
     under a .78 veil — only 12% of the photograph survived. At .72 under .58
     that is 30%, i.e. 2.5x more image, with h1 at 6.67:1 (bar 3.0).
     .hero-sub and .hero-location are lifted below because at .55/.28 white
     they, not the photo, were what forced the veil this heavy. */
  .hero::before{clip-path:none;background:rgba(13,28,56,.58)}
  .hero::after{display:none}
  .hero-image-bleed img{opacity:.72}
  .hero-sub{color:rgba(255,255,255,.80)}      /* 4.98:1 — was .55 at 3.28:1 */
  .hero-location{color:rgba(255,255,255,.80)} /* 4.98:1 — was .28 at 1.92:1 */
  .hero-content{width:100%;padding-left:1.75rem;padding-right:1.75rem}

  .bio-b-inner{grid-template-columns:1fr}
  .bio-photo-wrap{max-width:340px}

  .svc-item{
    grid-template-columns:1fr;
    gap:.75rem;
  }
  .svc-arrow{display:none}

  .t-item{grid-template-columns:1fr}
  .t-meta{text-align:left}

  .svc-header{grid-template-columns:1fr}

  .final-contact{flex-direction:column;gap:1rem;align-items:center}

  .t-b-header{flex-direction:column;align-items:flex-start;gap:.75rem}
  .t-b-header p{text-align:left}
}

@media(max-width:480px){
  .hero h1{font-size:2.4rem}
  .bridge-big{font-size:3.5rem}
  .pull-quote{font-size:1.4rem}
}

@media(hover:none)and(pointer:coarse){
  body{font-size:1rem}
  .footer-legal a,
  .footer-copy,
  .footer-brand-cred,
  .pain-section-label,
  .btn-submit-b,
  .nav-tb-phone,
  .nav-tb-cta,
  .hero-location,          /* .68rem = 10.9px — under the 14px touch floor */
  .inner-hero-back,
  .inner-hero--post .post-meta{
    font-size:max(.875rem,14px)!important
  }
}


/* ========== FORCE-VISIBLE: HERO ABOVE-FOLD SAFETY NET ========== */
@keyframes forceVisible {
  to { opacity: 1; transform: none; }
}

/* Hero content must be visible before JS runs */
.hero-content {
  animation: forceVisible 0s 0s forwards;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

/* ========== MOBILE RESPONSIVE INVARIANTS — DO NOT REMOVE ========== */
html, body { overflow-x: clip; }

@media (max-width: 768px) {
  .nav-logo { min-width: 0; flex: 1 1 auto; }
  .nav-logo-text, .nav-logo-text small { white-space: normal; min-width: 0; }
  .hamburger { flex-shrink: 0; margin-left: auto; }
  .nav-links > li { white-space: normal; }
  .nav-links .dropdown-menu,
  .nav-links .dropdown-menu li,
  .nav-links .dropdown-menu a { white-space: normal; }
}

.mobile-nav,
.mobile-nav ul,
.mobile-nav .sub-menu,
.mobile-nav .dropdown-menu {
  list-style: none !important;
  padding: 0;
  margin: 0;
}
.mobile-nav li,
.mobile-nav .sub-menu li,
.mobile-nav .dropdown-menu li {
  list-style: none !important;
}
.mobile-nav .sub-menu,
.mobile-nav .dropdown-menu {
  display: none;
  padding-left: 20px;
  margin: 4px 0 8px 0;
  border-left: 2px solid var(--amber);
}
.mobile-nav .sub-menu.open,
.mobile-nav .dropdown-menu.open {
  display: block;
}
.mobile-nav .sub-menu li a,
.mobile-nav .dropdown-menu li a {
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0 10px 16px;
  border-bottom: 1px solid rgba(184,96,16,0.3);
}

/* Mobile nav close button */
.mobile-nav-close {
  position: absolute; top: 10px; right: 10px;
  width: 44px; height: 44px;
  background: transparent; border: 0; cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: transform .25s ease;
}
.mobile-nav-close:hover { transform: rotate(90deg); }
.mobile-nav-close svg { width: 22px; height: 22px; display: block; }

/* Mobile nav drawer height */
.mobile-nav {
  height: 100vh;
  height: 100dvh;
}

/* Chevron toggle */
.mobile-nav-toggle {
  position: absolute; right: 0; top: 0;
  height: 44px; display: flex; align-items: center;
  background: none; border: none; padding: 0 8px;
  cursor: pointer; color: rgba(255,255,255,.6); line-height: 0;
}
.mobile-nav-toggle svg { transition: transform 0.25s ease; }
.mobile-nav-toggle.open svg { transform: rotate(180deg); }
.mobile-nav li.has-submenu { position: relative; }
.mobile-nav li.has-submenu > a { padding-right: 40px; }

/* ========== TOUCH-DEVICE ACCESSIBILITY ========== */
@media (hover: none) and (pointer: coarse) {
  .nav-logo { min-height: 44px; padding: 6px 0; box-sizing: border-box; }
  .nav-logo-text { font-size: 14px !important; }
  .nav-logo-text small { font-size: 14px !important; }

  .nav-links > li > a {
    font-size: 14px !important; min-height: 44px; min-width: 44px;
    padding: 12px 4px !important; box-sizing: border-box;
    display: inline-flex; align-items: center; justify-content: center;
  }

  .nav-tb-phone, .nav-tb-cta {
    font-size: 14px !important; min-height: 44px;
    box-sizing: border-box;
  }

  .btn-dark, .btn-amber-d, .btn-outline-b {
    font-size: 14px !important; min-height: 44px;
    box-sizing: border-box; display: inline-flex;
    align-items: center; justify-content: center;
  }

  .footer-copy, .footer-brand-cred, .footer-col ul a {
    font-size: max(.875rem, 14px) !important;
  }

  .footer a, .footer-legal a {
    min-height: 44px; padding: 12px 0;
    display: inline-block; box-sizing: border-box;
  }

  a[href^="tel:"], a[href^="mailto:"] {
    min-height: 44px; padding: 12px 0;
    display: inline-block; box-sizing: border-box;
  }

  .hamburger {
    min-width: 44px !important; min-height: 44px !important;
  }

  .wpforms-form .wpforms-submit,
  button[type="submit"].wpforms-submit {
    min-height: 44px !important;
    padding-top: 12px !important; padding-bottom: 12px !important;
    box-sizing: border-box !important;
  }

  .wpforms-container .wpforms-field-label,
  .wpforms-container.wpforms-container .wpforms-field-label {
    font-size: 14px !important;
  }

  .hero-bg { background-attachment: scroll !important; }
}

/* ========== SHORT LANDSCAPE PHONES ========== */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 0; height: auto;
    padding-top: 96px; padding-bottom: 32px;
  }
  .hero-content { padding: 24px 28px; }
}

/* ========== LEGAL PAGES: NEVER FADE IN ========== */
body.page-terms-and-conditions .reveal,
body.page-terms-conditions .reveal,
body.page-privacy-policy .reveal {
  opacity: 1 !important; transform: none !important;
  animation: none !important; transition: none !important;
}



/* ========== INNER PAGE CTA BUTTON ========== */
.inner-page-cta-wrap{
  text-align:center;
  padding:3.5rem 0 1.5rem;
  border-top:1px solid rgba(30,64,128,.1);
  margin-top:3rem;
}

.inner-page-cta-btn{
  display:inline-block;
  background:var(--amber);
  color:#fff;
  padding:.9rem 2.75rem;
  font-family:'Inter',sans-serif;
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  text-decoration:none;
  transition:background .2s;
}

.inner-page-cta-btn:hover{background:var(--gold)}

/* ========== INNER PAGE TEMPLATES ========== */
.inner-hero{
  position:relative;
  /* 2026-07-31: was a flat 400px, which at 1440 is a 3.6:1 letterbox — too
     shallow for any hero whose subject is a person (the couples pair was the
     case that showed it). Phones keep the 400px floor, where the box is already
     near-square; desktop opens up to 520. Sources re-cropped to 1400x520. */
  min-height:clamp(400px,34vw,520px);
  display:flex;
  align-items:flex-end;
  padding-top:64px;
  background-size:cover;
  background-position:center 25%;
  overflow:hidden;
}
.inner-hero-overlay{
  position:absolute;inset:0;
  /* Eased 2026-07-31 (was .92/.55/.25, then .72/.34/.05). Measured by
     compositing image + this gradient in code, never by sampling a screenshot.

     The gain here is the SHAPE, not just lower alpha. The H1 glyph band sits
     18-34% up from the bottom (flex-end, 72px pad, 56px type), so the veil is
     held through 35% to protect the title and then collapses hard above it.
     That drops mean veil over the upper 60% of the frame — the part read as
     "the photograph" — from 26.4% to 12.1%, less than half, while the title
     band itself barely moves.

     Worst hero is the grief swing at 3.37:1 under the glyph band against a
     3.0:1 AA large-text bar. The measurement ignores text-shadow, and the H1
     now carries one, so real margin is larger than stated. */
  background:linear-gradient(to top,
    rgba(13,28,56,.60) 0%,
    rgba(13,28,56,.42) 32%,
    rgba(13,28,56,.08) 60%,
    rgba(13,28,56,.02) 100%);
}
.inner-hero--generic{
  background:var(--cobalt);
  min-height:280px;
}
.inner-hero-content{
  position:relative;z-index:2;
  padding:clamp(3rem,5vw,5rem) 2rem;
  max-width:1340px;width:100%;margin:0 auto;
  color:#fff;
}
.inner-hero-back,.inner-hero-breadcrumb{
  font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;
  color:rgba(255,255,255,.62);margin-bottom:1rem;display:block;
}
.inner-hero-back:hover,.inner-hero-breadcrumb a:hover{color:var(--gold)}
.inner-hero-breadcrumb a{color:rgba(255,255,255,.62);text-decoration:none}
.inner-hero h1{font-family:'DM Serif Display',serif;font-size:clamp(2rem,4.5vw,3.5rem);font-style:italic;font-weight:400;color:#fff;line-height:1.15;
  /* Real margin on top of the measured ratio — the contrast sweep that set the
     overlay alpha deliberately ignores text-shadow, so this is pure buffer. */
  text-shadow:0 2px 14px rgba(6,14,30,.55)}
.inner-hero-lede{font-size:1.05rem;color:rgba(255,255,255,.85);margin-top:.75rem}
.inner-hero--post .post-meta{display:flex;gap:1.25rem;font-size:.75rem;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.55);margin-bottom:1rem}

/* Service / inner body */
.service-body{padding:4rem 0 5rem}
.service-body h2{font-family:'DM Serif Display',serif;font-size:clamp(1.5rem,2.5vw,2rem);font-style:italic;color:var(--cobalt);margin:2.5rem 0 1.5rem}
.service-body h3{font-family:'DM Serif Display',serif;font-size:clamp(1.15rem,1.8vw,1.4rem);font-style:italic;color:var(--cobalt);margin:2rem 0 .75rem}
.service-body p{margin-bottom:.75rem;line-height:1.78;color:var(--text)}
.service-body .svc-img-section{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:stretch;margin:3rem 0}
.service-body .svc-img-section.svc-img-section--reverse .svc-img-col{order:-1}
.service-body .svc-text-col{display:flex;flex-direction:column;justify-content:flex-start}
.service-body .svc-text-col>h2:first-child{margin-top:0}

.service-body .svc-img-col{position:relative;min-height:0}
.service-body .svc-img-col img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;border-radius:0;box-shadow:0 12px 40px rgba(30,64,128,.12)}
@media(max-width:768px){.service-body .svc-img-section{grid-template-columns:1fr}.service-body .svc-img-section.svc-img-section--reverse .svc-img-col{order:0}.service-body .svc-img-col{min-height:280px}}

/* Contact page */
.contact-section{padding:5rem 0}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:start}
.contact-info-col h2,.contact-form-col h2{font-family:'DM Serif Display',serif;font-size:clamp(1.5rem,2.5vw,2rem);font-style:italic;color:var(--cobalt);margin-bottom:1.25rem}
.contact-info-col > p{color:var(--muted);line-height:1.75;margin-bottom:2rem}
.contact-details{display:flex;flex-direction:column;gap:1.5rem}
.contact-detail{display:flex;align-items:flex-start;gap:1rem}
.contact-detail-icon{font-size:1.2rem;color:var(--amber);flex-shrink:0;margin-top:.1rem}
.contact-detail-label{font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);margin-bottom:.2rem}
.contact-detail-value{font-size:1rem;color:var(--cobalt);text-decoration:none;font-weight:600}
.contact-detail-value:hover{color:var(--amber)}
.contact-detail-note{font-size:.82rem;color:var(--muted);margin-top:.25rem}
@media(max-width:768px){.contact-grid{grid-template-columns:1fr;gap:3rem}}

/* Blog styles */
/* Featured post — dark cobalt band */
.blog-featured-wrap{background:var(--cobalt)}
.blog-featured{display:flex;align-items:stretch;max-width:1340px;margin:0 auto;max-height:520px}
.blog-featured-content{flex:1;padding:clamp(2.5rem,5vw,4.5rem) clamp(1.5rem,4vw,4rem);display:flex;flex-direction:column;justify-content:center}
.blog-feat-tag{font-family:'Inter',sans-serif;font-size:.65rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--amber);margin-bottom:.75rem;display:block}
.blog-feat-date{font-family:'Inter',sans-serif;font-size:.72rem;font-weight:500;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.5);margin-bottom:1.25rem;display:block}
.blog-feat-title{font-family:'DM Serif Display',serif;font-size:clamp(1.8rem,3.5vw,2.8rem);font-weight:400;font-style:italic;color:#fff;line-height:1.2;margin-bottom:1.25rem}
.blog-feat-title a{color:inherit;text-decoration:none;transition:color .2s}.blog-feat-title a:hover{color:var(--amber)}
.blog-feat-excerpt{font-family:'Inter',sans-serif;font-size:1rem;line-height:1.75;color:rgba(255,255,255,.72);margin-bottom:2rem}
.blog-feat-cta{display:inline-block;padding:.7rem 1.75rem;border:1.5px solid var(--amber);color:var(--amber);font-family:'Inter',sans-serif;font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;text-decoration:none;transition:background .2s,color .2s}.blog-feat-cta:hover{background:var(--amber);color:#fff}
.blog-feat-img{flex:0 0 46%;display:block;overflow:hidden}.blog-feat-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s ease}.blog-feat-img:hover img{transform:scale(1.03)}
/* More articles section */
.blog-more-section{padding:4rem clamp(1rem,3vw,3rem) 5rem;max-width:1340px;margin:0 auto}
.blog-more-header{display:flex;align-items:center;gap:1.5rem;margin-bottom:3rem}
.blog-more-label{font-family:'Inter',sans-serif;font-size:.72rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--cobalt);white-space:nowrap}
.blog-more-rule{flex:1;height:1px;background:rgba(30,64,128,.15)}
/* Card grid */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2.5rem;margin-bottom:3rem}
.blog-card{display:flex;flex-direction:column;border-bottom:2px solid transparent;transition:border-color .2s}.blog-card:hover{border-bottom-color:var(--amber)}
.blog-card-img{display:block;overflow:hidden;aspect-ratio:3/2}.blog-card-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s ease}.blog-card:hover .blog-card-img img{transform:scale(1.04)}
.blog-card-body{padding:1.5rem 0;flex:1;display:flex;flex-direction:column}
.blog-card-date{font-family:'Inter',sans-serif;font-size:.68rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--amber);margin-bottom:.6rem;display:block}
.blog-card__title{font-family:'DM Serif Display',serif;font-size:clamp(1.15rem,1.8vw,1.45rem);font-weight:400;font-style:italic;color:var(--cobalt);margin-bottom:.75rem;line-height:1.3}
.blog-card__title a{color:inherit;text-decoration:none;transition:color .2s}.blog-card__title a:hover{color:var(--amber)}
.blog-card-excerpt{font-family:'Inter',sans-serif;font-size:.9rem;line-height:1.72;color:var(--muted);margin-bottom:1.25rem;flex:1}
.blog-read-more{font-family:'Inter',sans-serif;font-size:.7rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--cobalt);text-decoration:none;transition:color .2s;margin-top:auto;display:inline-block}.blog-read-more:hover{color:var(--amber)}
.blog-empty{color:var(--muted);text-align:center;padding:4rem 0;font-family:'Inter',sans-serif}
/* Pagination */
.blog-pagination{margin-top:2.5rem}.blog-pagination ul{display:flex;gap:.5rem;list-style:none;padding:0;margin:0}
.blog-pagination .page-numbers{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border:1.5px solid rgba(30,64,128,.2);color:var(--cobalt);text-decoration:none;font-family:'Inter',sans-serif;font-size:.82rem;font-weight:600;transition:background .2s,border-color .2s,color .2s}
.blog-pagination .page-numbers.current{background:var(--cobalt);color:#fff;border-color:var(--cobalt)}
.blog-pagination .page-numbers:hover:not(.current){background:var(--cobalt);color:#fff;border-color:var(--cobalt)}
.blog-pagination .page-numbers.dots{border:none;width:auto;padding:0 4px;pointer-events:none}
@media(max-width:900px){.blog-featured{flex-direction:column}.blog-feat-img{flex:none;min-height:280px}}
@media(max-width:768px){.blog-grid{grid-template-columns:repeat(2,1fr);gap:1.75rem}}
@media(max-width:480px){.blog-grid{grid-template-columns:1fr}}

/* Single post */
.post-body{padding:4rem 0 5rem}
.post-content{max-width:720px}
.post-content p{margin-bottom:1rem;line-height:1.85;font-size:1.05rem;color:var(--text)}
.post-content h2{font-family:'DM Serif Display',serif;font-size:clamp(1.4rem,2.2vw,1.8rem);font-style:italic;color:var(--cobalt);margin:2.5rem 0 1rem}
.post-content h3{font-family:'DM Serif Display',serif;font-size:clamp(1.1rem,1.6vw,1.35rem);font-style:italic;color:var(--cobalt);margin:2rem 0 .75rem}
.post-content blockquote{margin:2rem 0;padding:.75rem 0 .75rem 1.5rem;border-left:3px solid var(--amber);font-family:'DM Serif Display',serif;font-size:clamp(1.15rem,1.8vw,1.45rem);font-style:italic;color:var(--cobalt);line-height:1.5}
.post-content > p:first-of-type::first-letter{font-family:'DM Serif Display',serif;font-size:3.5rem;font-style:normal;float:left;line-height:.8;margin:0 .12em .1em 0;color:var(--amber)}
.post-footer{margin-top:3rem;padding-top:1.5rem;border-top:1px solid rgba(30,64,128,.12)}
.post-back-link{font-size:.75rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--cobalt);text-decoration:none;transition:color .2s}.post-back-link:hover{color:var(--amber)}

/* ========== WPFORMS OVERRIDES — match mockup .fg / .form-card exactly ========== */

/* Strip WPForms default spacing and sizing */
.form-card .wpforms-form .wpforms-field-container { padding: 0; }
.form-card .wpforms-form .wpforms-field {
  margin-bottom: 1.25rem !important;
  padding: 0 !important;
}

/* Labels — exact match to .fg label */
.form-card .wpforms-form .wpforms-field-label,
.form-card .wpforms-form label {
  display: block !important;
  font-family: 'Inter', sans-serif !important;
  font-size: .7rem !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  color: #6B6560 !important;
  margin-bottom: .4rem !important;
  line-height: 1.3 !important;
}

/* Inputs and textarea — exact match to .fg input, .fg textarea */
.form-card .wpforms-form input[type=text],
.form-card .wpforms-form input[type=email],
.form-card .wpforms-form input[type=tel],
.form-card .wpforms-form input[type=number],
.form-card .wpforms-form textarea {
  width: 100% !important;
  padding: .72rem 1rem !important;
  border: 1.5px solid rgba(30,64,128,.18) !important;
  background: #fff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: .95rem !important;
  color: #1A1918 !important;
  outline: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: border-color .2s !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  height: auto !important;
  min-height: 0 !important;
}

.form-card .wpforms-form input:focus,
.form-card .wpforms-form textarea:focus {
  border-color: #1E4080 !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Textarea — exact height from mockup */
.form-card .wpforms-form textarea {
  height: 115px !important;
  resize: vertical !important;
}

/* Submit button — exact match to .form-submit-a */
.form-card .wpforms-form .wpforms-submit-container {
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
}
.form-card .wpforms-form button[type=submit],
.form-card .wpforms-form .wpforms-submit {
  width: 100% !important;
  padding: .9rem !important;
  background: #B86010 !important;
  color: #fff !important;
  border: none !important;
  font-family: 'Inter', sans-serif !important;
  font-size: .75rem !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  border-radius: 0 !important;
  transition: background .2s !important;
  display: block !important;
  line-height: 1 !important;
  height: auto !important;
}
.form-card .wpforms-form button[type=submit]:hover,
.form-card .wpforms-form .wpforms-submit:hover { background: #D4870A !important; }

/* Hide WPForms error messages default styling override */
.form-card .wpforms-form .wpforms-field-error {
  color: #B86010;
  font-size: .75rem;
  margin-top: .25rem;
}

/* Contact page form — same treatment */
.contact-form-col .wpforms-form .wpforms-field { margin-bottom: 1.25rem !important; padding: 0 !important; }
.contact-form-col .wpforms-form .wpforms-field-label,
.contact-form-col .wpforms-form label { font-size: .7rem !important; font-weight: 700 !important; letter-spacing: .1em !important; text-transform: uppercase !important; color: #6B6560 !important; margin-bottom: .4rem !important; }
.contact-form-col .wpforms-form input:not([type=submit]),
.contact-form-col .wpforms-form textarea { width: 100% !important; padding: .72rem 1rem !important; border: 1.5px solid rgba(30,64,128,.18) !important; background: #fff !important; font-size: .95rem !important; border-radius: 0 !important; box-shadow: none !important; height: auto !important; }
.contact-form-col .wpforms-form textarea { height: 115px !important; resize: vertical !important; }
.contact-form-col .wpforms-form button[type=submit],
.contact-form-col .wpforms-form .wpforms-submit { width: 100% !important; padding: .9rem !important; background: #B86010 !important; color: #fff !important; border: none !important; font-size: .75rem !important; font-weight: 700 !important; letter-spacing: .14em !important; text-transform: uppercase !important; border-radius: 0 !important; cursor: pointer !important; }
.contact-form-col .wpforms-form button[type=submit]:hover { background: #D4870A !important; }



/* ========== INNER PAGE CTA BUTTON ========== */
.inner-page-cta-wrap{
  text-align:center;
  padding:3.5rem 0 1.5rem;
  border-top:1px solid rgba(30,64,128,.1);
  margin-top:3rem;
}

.inner-page-cta-btn{
  display:inline-block;
  background:var(--amber);
  color:#fff;
  padding:.9rem 2.75rem;
  font-family:'Inter',sans-serif;
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  text-decoration:none;
  transition:background .2s;
}

.inner-page-cta-btn:hover{background:var(--gold)}

/* ========== INNER PAGE TEMPLATES ========== */
.inner-hero{
  position:relative;
  /* 2026-07-31: was a flat 400px, which at 1440 is a 3.6:1 letterbox — too
     shallow for any hero whose subject is a person (the couples pair was the
     case that showed it). Phones keep the 400px floor, where the box is already
     near-square; desktop opens up to 520. Sources re-cropped to 1400x520. */
  min-height:clamp(400px,34vw,520px);
  display:flex;
  align-items:flex-end;
  padding-top:64px;
  background-size:cover;
  background-position:center 25%;
  overflow:hidden;
}
.inner-hero-overlay{
  position:absolute;inset:0;
  /* Eased 2026-07-31 (was .92/.55/.25, then .72/.34/.05). Measured by
     compositing image + this gradient in code, never by sampling a screenshot.

     The gain here is the SHAPE, not just lower alpha. The H1 glyph band sits
     18-34% up from the bottom (flex-end, 72px pad, 56px type), so the veil is
     held through 35% to protect the title and then collapses hard above it.
     That drops mean veil over the upper 60% of the frame — the part read as
     "the photograph" — from 26.4% to 12.1%, less than half, while the title
     band itself barely moves.

     Worst hero is the grief swing at 3.37:1 under the glyph band against a
     3.0:1 AA large-text bar. The measurement ignores text-shadow, and the H1
     now carries one, so real margin is larger than stated. */
  background:linear-gradient(to top,
    rgba(13,28,56,.60) 0%,
    rgba(13,28,56,.42) 32%,
    rgba(13,28,56,.08) 60%,
    rgba(13,28,56,.02) 100%);
}
.inner-hero--generic{
  background:var(--cobalt);
  min-height:280px;
}
.inner-hero-content{
  position:relative;z-index:2;
  padding:clamp(3rem,5vw,5rem) 2rem;
  max-width:1340px;width:100%;margin:0 auto;
  color:#fff;
}
.inner-hero-back,.inner-hero-breadcrumb{
  font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;
  color:rgba(255,255,255,.62);margin-bottom:1rem;display:block;
}
.inner-hero-back:hover,.inner-hero-breadcrumb a:hover{color:var(--gold)}
.inner-hero-breadcrumb a{color:rgba(255,255,255,.62);text-decoration:none}
.inner-hero h1{font-family:'DM Serif Display',serif;font-size:clamp(2rem,4.5vw,3.5rem);font-style:italic;font-weight:400;color:#fff;line-height:1.15;
  /* Real margin on top of the measured ratio — the contrast sweep that set the
     overlay alpha deliberately ignores text-shadow, so this is pure buffer. */
  text-shadow:0 2px 14px rgba(6,14,30,.55)}
.inner-hero-lede{font-size:1.05rem;color:rgba(255,255,255,.85);margin-top:.75rem}
.inner-hero--post .post-meta{display:flex;gap:1.25rem;font-size:.75rem;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.55);margin-bottom:1rem}

/* Service / inner body */
.service-body{padding:4rem 0 5rem}
.service-body h2{font-family:'DM Serif Display',serif;font-size:clamp(1.5rem,2.5vw,2rem);font-style:italic;color:var(--cobalt);margin:2.5rem 0 1.5rem}
.service-body h3{font-family:'DM Serif Display',serif;font-size:clamp(1.15rem,1.8vw,1.4rem);font-style:italic;color:var(--cobalt);margin:2rem 0 .75rem}
.service-body p{margin-bottom:.75rem;line-height:1.78;color:var(--text)}
.service-body .svc-img-section{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:stretch;margin:3rem 0}
.service-body .svc-img-section.svc-img-section--reverse .svc-img-col{order:-1}
.service-body .svc-text-col{display:flex;flex-direction:column;justify-content:flex-start}
.svc-text-col ul,.svc-text-block ul{padding-left:1.2em}
.service-body .svc-img-col{position:relative;min-height:0}
.service-body .svc-img-col img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;border-radius:0;box-shadow:0 12px 40px rgba(30,64,128,.12)}
@media(max-width:768px){.service-body .svc-img-section{grid-template-columns:1fr}.service-body .svc-img-section.svc-img-section--reverse .svc-img-col{order:0}.service-body .svc-img-col{min-height:280px}}

/* Contact page */
.contact-intro{padding-top:4rem}
.contact-section{padding:5rem 0}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:start}
.contact-info-col h2,.contact-form-col h2{font-family:'DM Serif Display',serif;font-size:clamp(1.5rem,2.5vw,2rem);font-style:italic;color:var(--cobalt);margin-bottom:1.25rem}
.contact-info-col > p{color:var(--muted);line-height:1.75;margin-bottom:2rem}
.contact-details{display:flex;flex-direction:column;gap:1.5rem}
.contact-detail{display:flex;align-items:flex-start;gap:1rem}
.contact-detail-icon{font-size:1.2rem;color:var(--amber);flex-shrink:0;margin-top:.1rem}
.contact-detail-label{font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);margin-bottom:.2rem}
.contact-detail-value{font-size:1rem;color:var(--cobalt);text-decoration:none;font-weight:600}
.contact-detail-value:hover{color:var(--amber)}
.contact-detail-note{font-size:.82rem;color:var(--muted);margin-top:.25rem}
@media(max-width:768px){.contact-grid{grid-template-columns:1fr;gap:3rem}}

/* ========== WPFORMS OVERRIDES — match mockup form-card styling ========== */
/* Final CTA form-card context (cobalt bg → ivory card) */
.form-card .wpforms-form .wpforms-field-label,
.form-card .wpforms-form label {
  display:block;
  font-size:.7rem !important;
  font-weight:700 !important;
  letter-spacing:.1em !important;
  text-transform:uppercase !important;
  color:#6B6560 !important;
  margin-bottom:.4rem !important;
  font-family:'Inter',sans-serif !important;
}

.form-card .wpforms-form input[type="text"],
.form-card .wpforms-form input[type="email"],
.form-card .wpforms-form input[type="tel"],
.form-card .wpforms-form textarea,
.form-card .wpforms-form input:not([type="submit"]) {
  width:100% !important;
  padding:.72rem 1rem !important;
  border:1.5px solid rgba(30,64,128,.18) !important;
  background:#fff !important;
  font-family:'Inter',sans-serif !important;
  font-size:.95rem !important;
  color:#1A1918 !important;
  outline:none !important;
  border-radius:0 !important;
  box-shadow:none !important;
  transition:border-color .2s !important;
}

.form-card .wpforms-form input:focus,
.form-card .wpforms-form textarea:focus {
  border-color:#1E4080 !important;
  box-shadow:none !important;
}

.form-card .wpforms-form textarea {
  height:115px !important;
  resize:vertical !important;
}

.form-card .wpforms-form .wpforms-submit-container,
.form-card .wpforms-form button[type="submit"],
.form-card .wpforms-form .wpforms-submit {
  width:100% !important;
  padding:.9rem !important;
  background:#B86010 !important;
  color:#fff !important;
  border:none !important;
  font-family:'Inter',sans-serif !important;
  font-size:.75rem !important;
  font-weight:700 !important;
  letter-spacing:.14em !important;
  text-transform:uppercase !important;
  cursor:pointer !important;
  border-radius:0 !important;
  transition:background .2s !important;
  display:block !important;
}

.form-card .wpforms-form button[type="submit"]:hover,
.form-card .wpforms-form .wpforms-submit:hover {
  background:#D4870A !important;
}

.form-card .wpforms-form .wpforms-field { margin-bottom:1.25rem !important; }
.form-card .wpforms-form .wpforms-field-error { color:#B86010; font-size:.78rem; margin-top:.25rem; }

/* Contact page form context (white bg) */
.contact-form-col .wpforms-form .wpforms-field-label,
.contact-form-col .wpforms-form label {
  font-size:.7rem !important;
  font-weight:700 !important;
  letter-spacing:.1em !important;
  text-transform:uppercase !important;
  color:#6B6560 !important;
  margin-bottom:.4rem !important;
}

.contact-form-col .wpforms-form input:not([type="submit"]),
.contact-form-col .wpforms-form textarea {
  width:100% !important;
  padding:.72rem 1rem !important;
  border:1.5px solid rgba(30,64,128,.18) !important;
  background:#fff !important;
  font-size:.95rem !important;
  border-radius:0 !important;
  box-shadow:none !important;
}

.contact-form-col .wpforms-form button[type="submit"],
.contact-form-col .wpforms-form .wpforms-submit {
  width:100% !important;
  padding:.9rem !important;
  background:#B86010 !important;
  color:#fff !important;
  border:none !important;
  font-size:.75rem !important;
  font-weight:700 !important;
  letter-spacing:.14em !important;
  text-transform:uppercase !important;
  cursor:pointer !important;
  border-radius:0 !important;
}

.contact-form-col .wpforms-form button[type="submit"]:hover {
  background:#D4870A !important;
}

.contact-form-col .wpforms-form .wpforms-field { margin-bottom:1.25rem !important; }


/* ═══════════════════════════════════════════════════════════════════════════
   HEADSHOT (--photo modifier) — definitive fix
   ───────────────────────────────────────────────────────────────────────────
   WHY THIS WORKS: The base rule .service-body .svc-img-section has specificity
   (0,2,0). All previous attempts used .svc-img-section--photo at (0,1,0) and
   lost. This uses .service-body .svc-img-section--photo at (0,2,0) — same
   specificity, but later in the cascade, so it wins. No !important needed.
   ═══════════════════════════════════════════════════════════════════════════ */

/* Grid layout — narrow fixed col for the headshot */
.service-body .svc-img-section--photo {
  align-items: start;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
}

/* Explicit column placement (overrides order trick from --reverse) */
.service-body .svc-img-section--photo .svc-img-col {
  grid-column: 1;
  grid-row: 1;
  position: static;
  min-height: 0;
}
.service-body .svc-img-section--photo .svc-text-col {
  grid-column: 2;
  grid-row: 1;
}

/* Image itself — natural proportions, no absolute fill */
/* Specificity (0,3,1) beats base (0,2,1) — no !important needed */
.service-body .svc-img-section--photo .svc-img-col img {
  position: static;
  inset: auto;
  width: 100%;
  height: auto;
  object-fit: fill;
  display: block;
  box-shadow: 0 16px 44px rgba(30,64,128,.15);
  border-bottom: 3px solid var(--amber);
}

@media (max-width: 768px) {
  .service-body .svc-img-section--photo {
    grid-template-columns: 1fr;
  }
  .service-body .svc-img-section--photo .svc-img-col,
  .service-body .svc-img-section--photo .svc-text-col {
    grid-column: auto;
    grid-row: auto;
  }
  .service-body .svc-img-section--photo .svc-img-col {
    max-width: 220px;
  }
}

/* ── Blog + single-post heroes ────────────────────────────────────────────
   These two templates put small tracked caps (back link, post meta) high in
   the hero, where the eased site-wide scrim leaves them over bright sky. They
   keep a heavier veil AND stronger text alphas. Both elements were already
   BELOW the 4.5:1 small-text bar before the scrim change (3.68 and 3.37);
   composited against .86/.50/.20 they now measure 4.69 and 4.90. */
.page-blog .inner-hero-overlay,
.inner-hero--post .inner-hero-overlay{
  background:linear-gradient(to top,rgba(13,28,56,.86) 0%,rgba(13,28,56,.50) 60%,rgba(13,28,56,.20) 100%);
}
.inner-hero-back,
.inner-hero--post .inner-hero-breadcrumb{color:rgba(255,255,255,.85)}
.inner-hero--post .post-meta{color:rgba(255,255,255,.92)}

/* Grief & Loss hero is the one bright outlier — a backlit sunset where the
   title crosses the sun itself. At the site-wide alpha it measures 2.97:1
   against the 3.0 bar while every other hero clears 3.4-6.5, so it alone
   keeps a heavier veil (3.52:1) rather than dragging all eleven down. */
body.page-grief-loss .inner-hero-overlay{
  background:linear-gradient(to top,
    rgba(13,28,56,.66) 0%,
    rgba(13,28,56,.46) 35%,
    rgba(13,28,56,.10) 60%,
    rgba(13,28,56,.02) 100%);
}
