/* ==========================================================================
   Turkut Legal — Design System
   Deep navy + champagne gold, serif/sans pairing, quiet corporate confidence.
   ========================================================================== */

:root{
  /* Palette */
  --navy-950:#0b1526;
  --navy-900:#0f1d33;
  --navy-800:#152541;
  --navy-700:#1d3155;
  --navy-line:rgba(201,178,140,0.16);
  --cream:#f7f4ee;
  --cream-dim:#efeae0;
  --paper:#fffdf9;
  --ink:#1b2130;
  --ink-soft:#4b5468;
  --muted-on-navy:#a9b2c6;
  --faint-on-navy:#7c869d;
  --gold:#c9a24b;
  --gold-soft:#dcc188;
  --gold-deep:#a9813a;
  --line-on-cream:rgba(27,33,48,0.1);

  /* Type */
  --serif:'Playfair Display', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans:'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --serif-body:'Source Serif 4', 'Iowan Old Style', Georgia, 'Times New Roman', serif;

  /* Rhythm */
  --container:1180px;
  --gap:24px;
  --radius:2px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-family:var(--serif); font-weight:600; letter-spacing:-0.01em; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
input,textarea{ font-family:inherit; }

.wrap{
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px;
}
@media (max-width:640px){
  .wrap{ padding:0 28px; }
}

.eyebrow{
  font-family:var(--sans);
  font-size:12px;
  font-weight:600;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--gold);
  display:flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:28px;
  height:1px;
  background:var(--gold);
  display:inline-block;
}

/* Anchored sections (nav clicks, language-switch deep links) clear the
   sticky header instead of hiding under it. */
main section[id]{ scroll-margin-top:110px; }
@media (max-width:1024px){ main section[id]{ scroll-margin-top:84px; } }

.section{ padding:112px 0; }
.section--tight{ padding:88px 0; }
@media (max-width:720px){
  .section{ padding:72px 0; }
  .section--tight{ padding:56px 0; }
}

.section-head{
  max-width:640px;
  margin-bottom:56px;
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s ease, transform .7s ease;
}
.section-head.is-in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){
  .section-head{ transition:none; opacity:1; transform:none; }
}
.section-head h2{
  font-size:clamp(28px,3.4vw,40px);
  line-height:1.15;
  margin-top:16px;
  color:var(--ink);
}
.section-head.on-navy h2{ color:#fdfbf7; }
.section-head p{
  margin-top:18px;
  font-size:17px;
  line-height:1.65;
  color:var(--ink-soft);
}
.section-head.on-navy p{ color:var(--muted-on-navy); }

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 28px;
  font-size:14px;
  font-weight:600;
  letter-spacing:0.02em;
  border-radius:var(--radius);
  border:1px solid transparent;
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn-gold{
  background:var(--gold);
  color:var(--navy-950);
}
.btn-gold:hover{ background:var(--gold-soft); transform:translateY(-1px); }
.btn-line{
  border-color:rgba(255,255,255,0.32);
  color:#fdfbf7;
}
.btn-line:hover{ border-color:var(--gold); color:var(--gold-soft); }
.btn-line-dark{
  border-color:rgba(27,33,48,0.25);
  color:var(--ink);
}
.btn-line-dark:hover{ border-color:var(--gold-deep); color:var(--gold-deep); }
.btn svg{ width:16px; height:16px; flex:none; }
@media (hover:none){
  .btn:active{ transform:scale(.96); }
}

/* ---------- Header ---------- */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(15,29,51,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--navy-line);
}
.site-header .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:102px;
}
@media (max-width:1024px){
  .site-header .wrap{ height:78px; }
}
/* On phones the brand sits closer to the edge than the body gutter —
   it reads as pinned to the corner rather than floating. */
@media (max-width:640px){
  .site-header .wrap{ padding-left:16px; padding-right:18px; }
}
.brand{
  display:flex;
  align-items:center;
  gap:15px;
  color:#fdfbf7;
}
.brand-mark{ height:46px; width:auto; flex:none; }
.brand-wordmark{ display:flex; flex-direction:column; }
.wm-name{
  font-family:var(--serif);
  font-weight:500;
  font-size:21px;
  letter-spacing:0.17em;
  color:#fdfbf7;
  line-height:1;
  white-space:nowrap;
}
.wm-tag{
  font-family:var(--sans);
  font-size:8.5px;
  letter-spacing:0.2em;
  color:var(--gold-soft);
  margin-top:6px;
  white-space:nowrap;
}
.footer-brand .brand-mark{ height:44px; }
@media (max-width:1024px){
  .brand-mark{ height:40px; }
  .wm-name{ font-size:17px; letter-spacing:0.12em; }
  .wm-tag{ font-size:8px; letter-spacing:0.16em; }
}
@media (max-width:640px){
  .brand{ gap:10px; }
  .brand-mark{ height:36px; }
  .wm-name{ font-size:15.5px; letter-spacing:0.07em; }
  .wm-tag{ display:none; }
}
/* No room for the wordmark next to the flags + menu on the narrowest
   phones — the mark alone carries it there. */
@media (max-width:359px){
  .brand-wordmark{ display:none; }
}

.main-nav{ display:flex; align-items:center; gap:36px; }
.main-nav ul{ display:flex; gap:30px; }
.mobile-cta{ display:none; }
/* .main-nav a{color:...} would otherwise win on specificity and wash out
   the gold button's dark text — pin it back explicitly. */
.main-nav .mobile-cta{ color:var(--navy-950); }
.main-nav .mobile-cta:hover{ color:var(--navy-950); }
.main-nav a{
  font-size:15.5px;
  color:var(--muted-on-navy);
  transition:color .2s ease;
  position:relative;
  padding-bottom:4px;
}
.main-nav a:hover, .main-nav a.is-active{ color:#fdfbf7; }
.main-nav a.is-active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-4px;
  height:2px;
  background:var(--gold);
}

.head-actions{ display:flex; align-items:center; gap:18px; }
/* Fixed width so the header doesn't reflow when the label changes
   length between languages ("Get in Touch" / "İletişime Geçin" /
   "Kontakt aufnehmen"). */
.head-actions .btn-line{ min-width:196px; justify-content:center; }

.lang-switch{
  display:flex;
  align-items:center;
  gap:6px;
}
@media (max-width:640px){ .lang-switch{ gap:4px; } }
.lang-switch a{
  display:block;
  width:26px;
  height:18px;
  border-radius:3px;
  overflow:hidden;
  opacity:0.5;
  box-shadow:0 0 0 1px var(--navy-line);
  transition:opacity .2s ease, box-shadow .2s ease, transform .2s ease;
}
.lang-switch a svg{ display:block; width:100%; height:100%; }
.lang-switch a:hover{ opacity:0.85; }
.lang-switch a.is-active{ opacity:1; box-shadow:0 0 0 2px var(--gold); }
@media (max-width:640px){ .lang-switch a{ width:21px; height:15px; } }

.nav-toggle{
  display:none;
  width:38px; height:38px;
  border:1px solid var(--navy-line);
  background:transparent;
  border-radius:4px;
  align-items:center;
  justify-content:center;
}
.nav-toggle svg{ width:18px; height:18px; color:#fdfbf7; }

@media (max-width:1024px){
  .main-nav ul{ display:none; }
  .head-actions .btn-line{ display:none; }
  .nav-toggle{ display:flex; }
  .site-header.is-open .main-nav{
    display:block;
    position:absolute;
    top:78px; left:0; right:0;
    background:var(--navy-900);
    border-bottom:1px solid var(--navy-line);
    padding:8px 32px 24px;
  }
  @media (max-width:640px){
    .site-header.is-open .main-nav{ padding:8px 40px 24px; }
  }
  .site-header.is-open .main-nav ul{
    display:flex;
    flex-direction:column;
    gap:0;
  }
  .site-header.is-open .main-nav ul li + li{ border-top:1px solid var(--navy-line); }
  .site-header.is-open .main-nav ul a{ display:block; padding:16px 0; }
  /* In the desktop nav the active-link underline sits right under the
     word; stretched full-width in this stacked mobile list it reads as
     a second, redundant divider right on top of the row's own
     border-top. Mark the active row with color only here instead. */
  .site-header.is-open .main-nav ul a.is-active::after{ display:none; }
  .site-header.is-open .main-nav ul a.is-active{ color:var(--gold-soft); }
  .site-header.is-open .mobile-cta{
    display:flex;
    margin-top:20px;
    width:100%;
    justify-content:center;
    text-align:center;
  }
}

/* ---------- Hero ---------- */
/* Full-bleed institutional photo (a colonnaded building, not a stock
   office tower) — an architectural image is forgiving to crop at any
   viewport width, unlike the founder's portrait, which now lives in
   the About section instead where a fixed frame can show it whole. */
.hero{
  position:relative;
  background-size:cover;
  background-position:center 66%;
  color:#fdfbf7;
  overflow:hidden;
}
/* Reserve a fixed hero height on desktop so the eyebrow / headline /
   lede wrapping to a different number of lines per language doesn't
   shift everything below it when the visitor switches language. Content
   still flows from the top (clearing the sticky header); min-height
   only pads the bottom out to a constant. */
@media (min-width:961px){
  .hero{ min-height:722px; }
}
.hero::before{
  content:"";
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(100deg, rgba(9,17,30,0.95) 0%, rgba(9,17,30,0.82) 34%, rgba(9,17,30,0.45) 62%, rgba(9,17,30,0.5) 100%),
    linear-gradient(0deg, rgba(9,17,30,0.55) 0%, rgba(9,17,30,0) 45%);
}
.hero-content{
  position:relative;
  z-index:2;
  max-width:660px;
  padding-top:150px;
  padding-bottom:120px;
}
.hero-content .eyebrow{
  margin-bottom:26px;
  font-size:16px;
  letter-spacing:0.22em;
}
.hero-content .eyebrow::before{ width:36px; }
.hero-content h1{
  font-size:clamp(36px,4.6vw,54px);
  line-height:1.12;
  color:#fdfbf7;
}
.hero-content h1 em{
  font-style:normal;
  color:var(--gold-soft);
}
.hero-lede{
  margin-top:22px;
  font-family:var(--serif);
  font-size:19px;
  line-height:1.62;
  color:#f4efe6;
  max-width:560px;
}
.hero-byline{
  margin-top:20px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold-soft);
}
.hero-content p.desc{
  margin-top:14px;
  font-size:17px;
  line-height:1.7;
  color:var(--muted-on-navy);
  max-width:480px;
}

/* Compact proof layer: credible specialisms are visible before the visitor
   reaches the longer biography, without inventing case totals or awards. */
.trust-bar{ background:var(--paper); border-bottom:1px solid var(--line-on-cream); }
.trust-label{
  padding:26px 0 0;
  font-size:10px;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold-deep);
}
.trust-cols{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:stretch;
}
.trust-col{ display:flex; flex-direction:column; padding:22px 0; }
.trust-item{ padding:16px 30px; }
.trust-col:first-child .trust-item{ padding-left:0; }
.trust-col:last-child .trust-item{ padding-right:0; text-align:right; }
.trust-title{ font-family:var(--serif); font-size:16px; color:var(--ink); }
.trust-item p{ margin-top:6px; font-size:13px; line-height:1.5; color:var(--ink-soft); }
.trust-col--center{
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:28px 34px;
  border-left:1px solid var(--line-on-cream);
  border-right:1px solid var(--line-on-cream);
  background:#fffdf9;
}
.trust-center-label{
  font-size:10px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold-deep);
}
.trust-center-note{
  margin-top:10px;
  font-family:var(--serif);
  font-size:15px;
  line-height:1.5;
  color:var(--ink);
  max-width:230px;
}
.trust-center-stat{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid var(--line-on-cream);
  font-size:12px;
  font-weight:600;
  letter-spacing:0.03em;
  color:var(--gold-deep);
}
@media(max-width:840px){
  .trust-cols{ grid-template-columns:1fr; }
  .trust-col{ padding:6px 0; }
  .trust-col:last-child .trust-item{ text-align:left; padding-right:0; }
  .trust-item{ padding:16px 0; border-top:1px solid var(--line-on-cream); }
  .trust-col--center{
    order:-1;
    border:0;
    background:transparent;
    padding:22px 0;
    align-items:flex-start;
    text-align:left;
    border-bottom:1px solid var(--line-on-cream);
  }
  .trust-center-note{ max-width:none; }
}
.hero-actions{
  margin-top:36px;
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}
.btn-line svg{ width:15px; height:15px; }
.btn-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:48px; height:48px;
  flex:none;
  border:1px solid rgba(255,255,255,0.32);
  border-radius:50%;
  color:#fdfbf7;
  transition:border-color .2s ease, color .2s ease;
}
.btn-icon:hover{ border-color:var(--gold); color:var(--gold-soft); }
.btn-icon svg{ width:19px; height:19px; }

@media (max-width:900px){
  .hero{ background-position:70% center; }
  .hero::before{
    background:linear-gradient(180deg,
      rgba(9,17,30,0.4) 0%,
      rgba(9,17,30,0.62) 40%,
      rgba(9,17,30,0.95) 68%,
      rgba(9,17,30,0.98) 100%);
  }
  .hero-content{ padding-top:180px; padding-bottom:56px; max-width:none; }
}

/* Founder portrait card — reused in the About section. Fixed
   aspect-ratio + cover, tuned once, shows the same correct
   head-to-torso crop at every width (a full-bleed background was
   cropping a different, sometimes head-cutting-off, window of a
   PORTRAIT at every viewport size — architecture forgives that,
   a face doesn't). Thin gold corner brackets in the surrounding
   padding give it a curated, "placed" feel. */
.about-portrait{
  position:relative;
  padding:14px;
}
.about-portrait-frame{
  aspect-ratio:4/5;
  background-size:cover;
  background-position:68% center;
  border:0;
  position:relative;
  overflow:hidden;
  transition:transform .55s cubic-bezier(.2,.7,.2,1), box-shadow .55s ease;
}
.about-portrait:hover .about-portrait-frame{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(11,21,38,.12);
}
.about-portrait-frame::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(85% 70% at 50% 38%, transparent 55%, rgba(9,17,30,0.35) 100%),
    radial-gradient(60% 45% at 82% 6%, rgba(201,162,75,0.2), transparent 60%);
}
.about-portrait .corner{
  position:absolute;
  width:22px; height:22px;
  border:1.5px solid var(--gold-deep);
}
.about-portrait .corner.tl{ top:0; left:0; border-right:none; border-bottom:none; }
.about-portrait .corner.br{ bottom:0; right:0; border-left:none; border-top:none; }
.about-portrait-caption{
  margin-top:14px;
  text-align:center;
}
.about-portrait-caption .name{
  font-family:var(--serif);
  font-size:16px;
  color:var(--ink);
}
.about-portrait-caption .role{
  margin-top:2px;
  font-size:12px;
  letter-spacing:0.04em;
  color:var(--ink-soft);
}

/* ---------- Finder (interactive practice-area tool) ---------- */
/* A real, working tool rather than a static card — pick a situation,
   get a matching practice area and a way to act, right there. */
.finder{ background:var(--cream); }
.finder-inner{
  display:grid;
  grid-template-columns:1.25fr 0.55fr;
  gap:40px;
  align-items:center;
}
.finder-phone{
  display:flex;
  justify-content:center;
}
.finder-phone-frame{
  position:relative;
  width:200px;
  padding:10px;
  background:var(--navy-950);
  border-radius:26px;
  box-shadow:0 28px 56px rgba(9,17,30,0.22), 0 6px 16px rgba(9,17,30,0.14);
  transform:rotate(-3deg);
}
.finder-phone-notch{
  position:absolute;
  top:10px; left:50%;
  transform:translateX(-50%);
  width:56px; height:15px;
  background:var(--navy-950);
  border-radius:0 0 10px 10px;
  z-index:2;
}
.finder-phone-screen{
  aspect-ratio:9/19.5;
  border-radius:18px;
  overflow:hidden;
  background-size:cover;
  background-position:top center;
}
@media (max-width:900px){
  .finder-inner{ grid-template-columns:1fr; }
  .finder-phone{ display:none; }
}
.finder-box{
  background:var(--paper);
  border:1px solid var(--line-on-cream);
  padding:44px;
}
.finder-question{
  font-family:var(--serif);
  font-size:20px;
  color:var(--ink);
  margin-bottom:24px;
}
.finder-options{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.finder-opt{
  text-align:left;
  background:var(--cream);
  border:1px solid var(--line-on-cream);
  border-radius:2px;
  padding:18px 20px;
  font-family:var(--sans);
  font-size:14.5px;
  line-height:1.5;
  color:var(--ink);
  transition:border-color .2s ease, box-shadow .2s ease;
}
.finder-opt:hover{ border-color:var(--gold-deep); }
.finder-opt.is-active{
  border-color:var(--gold-deep);
  box-shadow:inset 0 0 0 1px var(--gold-deep);
  color:var(--ink);
  font-weight:600;
}
.finder-result{
  display:none;
  margin-top:28px;
  padding-top:28px;
  border-top:1px solid var(--line-on-cream);
  animation:finderFade .5s ease;
}
.finder-result.is-shown{ display:block; }
@keyframes finderFade{
  from{ opacity:0; transform:translateY(8px); }
  to{ opacity:1; transform:none; }
}
.finder-result .k{
  font-size:11px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--gold-deep);
  font-weight:700;
}
.finder-result p{
  margin-top:12px;
  font-size:16px;
  line-height:1.7;
  color:var(--ink-soft);
  max-width:640px;
}
.finder-cta{
  margin-top:22px;
  display:flex;
  align-items:center;
  gap:14px;
}
.finder-cta .btn-icon{
  width:44px; height:44px;
  border-color:var(--line-on-cream);
  color:var(--ink-soft);
}
.finder-cta .btn-icon:hover{ border-color:var(--gold-deep); color:var(--gold-deep); }
.finder-disclaimer{
  margin-top:28px;
  font-size:12.5px;
  font-style:italic;
  color:var(--ink-soft);
}
@media (max-width:640px){
  /* On a phone the phone-mockup half of this section is hidden
     entirely (see .finder-phone above), so the question card is the
     whole visual — give it its own presence instead of reading as a
     plain bordered box on the page. */
  .finder-box{
    padding:28px;
    border-color:var(--gold-soft);
    border-top:3px solid var(--gold-deep);
    box-shadow:0 20px 44px rgba(157,122,49,.14);
  }
  .finder-options{ grid-template-columns:1fr; }
  .finder-opt{ transition:border-color .2s ease, box-shadow .2s ease, transform .15s ease, background-color .2s ease; }
  .finder-opt:active{ transform:scale(.97); background:var(--paper); border-color:var(--gold-deep); }
  .finder-cta{ flex-wrap:wrap; }
}

/* ---------- Bridge (two systems, one partner) ---------- */
/* ---------- About ---------- */
.about{ background:var(--cream); }
.about-grid{
  display:grid;
  grid-template-columns:1.35fr 0.9fr;
  gap:56px;
  align-items:start;
}
.about-copy p{
  font-size:17px;
  line-height:1.75;
  color:var(--ink-soft);
}
.about-copy p + p{ margin-top:20px; }
.about-copy .eyebrow{ margin-bottom:18px; }
.about-copy h2{
  font-size:clamp(26px,3vw,34px);
  margin-bottom:10px;
  color:var(--ink);
}
.about-sub{
  font-family:var(--serif);
  font-size:19px;
  color:var(--ink);
  margin-bottom:24px;
}
/* Picks out one key word gold inside an otherwise plain-colored
   heading/subhead — used in the About section's h2 and subhead. */
.gold-word{ color:var(--gold-deep); }
.about-portrait-caption .note{
  margin-top:5px;
  font-size:11.5px;
  letter-spacing:0.02em;
  color:var(--ink-soft);
}

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

/* ---------- Photo band ---------- */
/* A quiet full-bleed image strip between About and Services — no
   caption; background-position nudged down so the top of the Berlin
   TV tower isn't cropped. */
.photo-band{
  position:relative;
  height:340px;
  background-size:cover;
  background-position:center 22%;
}
.photo-band::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(0deg, rgba(9,17,30,0.5), rgba(9,17,30,0.15) 55%, rgba(9,17,30,0.28));
}
@media (max-width:640px){
  .photo-band{ height:240px; }
}

/* ---------- Services ---------- */
.services{ background:var(--navy-900); color:#fdfbf7; }
.services .section-head p{ color:var(--muted-on-navy); }

.svc-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1px;
  background:var(--navy-line);
  border:1px solid var(--navy-line);
}
.svc-card{
  background:var(--navy-900);
  padding:40px;
  border-top:2px solid transparent;
  transition:background-color .3s ease, transform .3s ease, border-color .3s ease;
}
.svc-card:hover{ background:var(--navy-800); transform:translateY(-2px); border-top-color:var(--gold); }
/* An odd card count leaves the last card alone in its row next to an
   empty grid cell — span it across both columns instead, and lay its
   list out in two columns so the extra width doesn't read as wasted
   space. */
.svc-card:last-child:nth-child(odd){ grid-column:span 2; }
.svc-card:last-child:nth-child(odd) > .svc-body > ul{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:11px 48px;
}
.svc-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.svc-top .icon{
  display:flex;
  color:var(--gold);
}
.svc-top .icon svg{ width:26px; height:26px; }
.svc-card .num{
  font-family:var(--serif);
  font-size:14px;
  color:var(--gold-soft);
}
.svc-card h3{
  margin-top:18px;
  font-size:22px;
  color:#fdfbf7;
}
.svc-body{ margin-top:20px; }
.svc-card ul{ display:flex; flex-direction:column; gap:11px; }
.svc-subhead{
  font-family:var(--serif);
  font-size:14px;
  letter-spacing:0.03em;
  color:var(--gold-soft);
  margin-bottom:12px;
}
.svc-subhead + ul + .svc-subhead{ margin-top:22px; }
.svc-body ul + .svc-subhead{ margin-top:22px; }
.svc-card li{
  font-size:14.5px;
  line-height:1.55;
  color:var(--muted-on-navy);
  padding-left:16px;
  position:relative;
}
.svc-card li::before{
  content:"";
  position:absolute;
  left:0; top:8px;
  width:6px; height:1px;
  background:var(--gold);
}

.svc-toggle{ position:absolute; opacity:0; pointer-events:none; }
.svc-more{ display:none; }

@media (max-width:760px){
  .svc-grid{ grid-template-columns:1fr; }
  .svc-card{ padding:32px 28px; }
  .svc-card:last-child:nth-child(odd){ grid-column:auto; }
  .svc-card:last-child:nth-child(odd) > .svc-body > ul{ grid-template-columns:1fr; }

  /* Long practice-area bullet lists read as a wall of text stacked one
     card after another on a phone — collapse each to a short preview
     and let a tap expand it, rather than forcing a full scroll past
     every bullet in every card just to reach the next section. */
  .svc-body{
    max-height:110px;
    overflow:hidden;
    -webkit-mask-image:linear-gradient(180deg,#000 55%,transparent 100%);
    mask-image:linear-gradient(180deg,#000 55%,transparent 100%);
    transition:max-height .45s ease;
  }
  .svc-toggle:checked ~ .svc-body{
    max-height:900px;
    -webkit-mask-image:none;
    mask-image:none;
  }
  .svc-more{
    display:flex;
    margin-top:16px;
    font-size:13px;
    font-weight:600;
    letter-spacing:.03em;
    color:var(--gold-soft);
    cursor:pointer;
    align-items:center;
    gap:6px;
  }
  .svc-more .chevron{ transition:transform .3s ease; }
  .svc-more .show{ display:flex; align-items:center; gap:6px; }
  .svc-more .hide{ display:none; align-items:center; gap:6px; }
  .svc-toggle:checked ~ .svc-more .show{ display:none; }
  .svc-toggle:checked ~ .svc-more .hide{ display:flex; }
  .svc-toggle:checked ~ .svc-more .chevron{ transform:rotate(180deg); }
}

/* ---------- Why choose us ---------- */
.why{ background:var(--cream); }
.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:var(--gap);
}
.why-card{
  padding:32px 26px;
  background:var(--paper);
  border:1px solid var(--line-on-cream);
  border-top:2px solid var(--gold);
}
.why-card{ transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.why-card:hover{ transform:translateY(-4px); box-shadow:0 16px 34px rgba(11,21,38,.07); border-top-color:var(--gold-deep); }

/* Progressive enhancement: a restrained editorial entrance rather than
   decorative motion. Reduced-motion visitors always get static content. */
body.motion-ready .trust-item,
body.motion-ready .about-portrait,
body.motion-ready .svc-card,
body.motion-ready .why-card,
body.motion-ready .process-step,
body.motion-ready .contact-panel{
  opacity:0;
  transform:translateY(16px);
  transition-property:opacity, transform, background-color, box-shadow, border-color;
  transition-duration:.65s, .65s, .3s, .3s, .3s;
  transition-timing-function:ease, cubic-bezier(.2,.7,.2,1), ease, ease, ease;
  transition-delay:var(--reveal-delay, 0ms);
}
body.motion-ready .is-revealed{
  opacity:1;
  transform:none;
}
body.motion-ready .svc-card.is-revealed:hover{ transform:translateY(-2px); }
body.motion-ready .why-card.is-revealed:hover{ transform:translateY(-4px); }
@media(prefers-reduced-motion:reduce){
  body.motion-ready .trust-item,
  body.motion-ready .about-portrait,
  body.motion-ready .svc-card,
  body.motion-ready .why-card,
  body.motion-ready .process-step,
  body.motion-ready .contact-panel{
    opacity:1;
    transform:none;
    transition:none;
  }
  .about-portrait-frame,.svc-card,.why-card{ transition:none; }
}
.why-card h3{
  font-size:18px;
  color:var(--ink);
  margin-bottom:12px;
}
.why-card p{
  font-size:14.5px;
  line-height:1.65;
  color:var(--ink-soft);
}
@media (max-width:960px){
  .why-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:560px){
  .why-grid{ grid-template-columns:1fr; }
}

/* ---------- How we work (process) ---------- */
.process{ background:var(--cream); }
.process-grid{
  margin-top:8px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--line-on-cream);
  border:1px solid var(--line-on-cream);
}
.process-step{
  background:var(--paper);
  padding:36px 28px;
  position:relative;
}
.process-step .num{
  font-family:var(--serif);
  font-size:16px;
  color:var(--gold-deep);
}
.process-step h3{
  margin-top:18px;
  font-size:18px;
  line-height:1.35;
  color:var(--ink);
}
.process-step p{
  margin-top:10px;
  font-size:14px;
  line-height:1.6;
  color:var(--ink-soft);
}
@media (max-width:900px){
  .process-grid{ grid-template-columns:1fr; }
}

/* ---------- FAQ ---------- */
.faq{ background:var(--navy-900); color:#fdfbf7; }
.faq .section-head p{ color:var(--muted-on-navy); }
/* Standalone /faq.html: sits right under the .blog-hero, so drop the
   section's own big top padding and give the CTAs room. */
.faq-standalone{ padding-top:0; }
.faq-standalone .faq-list{ max-width:820px; margin-top:0; }
/* FAQ page: the hero already carries generous bottom padding, so the
   accordion can start closer to the intro. */
.faq-page .blog-hero{ padding-bottom:36px; }
.faq-cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top:44px; }
.faq-list{
  margin-top:16px;
  max-width:760px;
}
/* Accordion: each question is a <details>; closed by default, click to
   open. Native element — works with keyboard and with JS disabled. */
.faq-item{
  border-top:1px solid var(--navy-line);
}
.faq-item:last-child{ border-bottom:1px solid var(--navy-line); }
.faq-item summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:22px 0;
  cursor:pointer;
  list-style:none;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }
.faq-item h3{
  font-family:var(--sans);
  font-size:16.5px;
  font-weight:600;
  color:#fdfbf7;
  margin:0;
  transition:color .2s ease;
}
.faq-item summary:hover h3,
.faq-item[open] h3{ color:var(--gold-soft); }
.faq-ico{
  flex:none;
  width:11px; height:11px;
  border-right:2px solid var(--gold);
  border-bottom:2px solid var(--gold);
  transform:rotate(45deg);
  transition:transform .25s ease;
  margin-right:2px;
}
.faq-item[open] .faq-ico{ transform:rotate(-135deg); }
.faq-item p{
  margin:0 0 24px;
  font-size:14.5px;
  line-height:1.65;
  color:var(--muted-on-navy);
  max-width:640px;
}
@media (prefers-reduced-motion:reduce){ .faq-ico{ transition:none; } }

/* ---------- Blog teaser ---------- */
.blog-teaser{ background:var(--paper); }
.blog-teaser .section-head{ display:flex; align-items:flex-end; justify-content:space-between; max-width:none; gap:24px; flex-wrap:wrap; }
.blog-teaser .section-head .copy{ max-width:640px; }
.post-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:var(--gap);
}
.post-card{
  border:1px solid var(--line-on-cream);
  padding:28px;
  display:flex;
  flex-direction:column;
  gap:16px;
  transition:border-color .2s ease, transform .2s ease;
}
.post-card:hover{ border-color:var(--gold-deep); transform:translateY(-2px); }
.post-card .meta{
  display:flex;
  justify-content:space-between;
  font-size:11px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--gold-deep);
}
.post-card h3{
  font-size:19px;
  line-height:1.35;
  color:var(--ink);
}
.post-card p{
  font-size:14px;
  line-height:1.6;
  color:var(--ink-soft);
}
.post-card .read{
  margin-top:auto;
  font-size:13px;
  font-weight:600;
  color:var(--gold-deep);
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.post-card .read svg{ width:16px; height:16px; flex:none; }
@media (max-width:900px){
  .post-grid{ grid-template-columns:1fr; }
}

/* ---------- Contact ---------- */
.contact{ background:var(--navy-950); color:#fdfbf7; }
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:start;
}
.contact-left .contact-h2{
  margin-top:16px;
  font-size:clamp(26px,3vw,34px);
  line-height:1.2;
  color:#fdfbf7;
}
.contact-left .contact-lead{
  margin-top:16px;
  color:var(--muted-on-navy);
  font-size:15px;
  line-height:1.6;
  max-width:440px;
}
.contact-left .contact-form-fields{ margin-top:28px; }
.contact-left .contact-form-fields .botcheck-field{ position:absolute; opacity:0; pointer-events:none; height:0; width:0; }
.contact-left .contact-form-fields button[type="submit"]{ margin-top:8px; }
.contact-left .contact-form-fields button[type="submit"]:disabled{ opacity:.6; cursor:default; }
.contact-phone .label{
  font-size:11px;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--faint-on-navy);
}
.contact-phone a.big{
  display:inline-block;
  margin-top:14px;
  font-family:var(--serif);
  font-size:clamp(30px,4vw,44px);
  color:#fdfbf7;
  border-bottom:1px solid var(--navy-line);
  padding-bottom:14px;
}
.contact-phone p{
  margin-top:18px;
  color:var(--muted-on-navy);
  font-size:15px;
}
.contact-phone .btn{ margin-top:26px; }
.whatsapp-link{
  margin-top:20px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:600;
  color:var(--gold-soft);
  border-bottom:1px solid rgba(220,193,136,0.35);
  padding-bottom:2px;
}
.whatsapp-link:hover{ color:#fdfbf7; border-color:#fdfbf7; }
.whatsapp-link svg{ width:16px; height:16px; }

.contact-form{
  background:var(--navy-900);
  border:1px solid var(--navy-line);
  padding:36px;
}
.contact-form h3{
  font-size:18px;
  color:#fdfbf7;
  margin-bottom:6px;
}
.contact-form .hint{ font-size:14px; color:var(--muted-on-navy); margin-bottom:26px; }
.contact-panel{ position:relative; overflow:hidden; align-self:start; padding:46px; }
.contact-panel-mark{
  position:absolute; right:-10px; top:-46px;
  font-family:var(--serif); font-size:190px; line-height:1;
  color:rgba(201,162,75,.055); pointer-events:none;
}
.contact-panel h3{ position:relative; font-size:28px; line-height:1.25; max-width:390px; }
.contact-panel .hint{ position:relative; margin-top:18px; font-size:16px; line-height:1.65; max-width:480px; }
.contact-panel-actions{ position:relative; display:flex; flex-wrap:wrap; gap:12px; }
.privacy-note{ position:relative; margin-top:22px; padding-top:18px; border-top:1px solid var(--navy-line); color:var(--faint-on-navy); font-size:12.5px; line-height:1.5; }
.field{ margin-bottom:20px; }
.field label{
  display:block;
  font-size:11px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--faint-on-navy);
  margin-bottom:8px;
}
.field input, .field textarea{
  width:100%;
  background:transparent;
  border:1px solid var(--navy-line);
  color:#fdfbf7;
  padding:13px 14px;
  font-size:14.5px;
  border-radius:2px;
}
.field input::placeholder, .field textarea::placeholder{ color:var(--faint-on-navy); }
.field input:focus, .field textarea:focus{ outline:none; border-color:var(--gold); }
.field textarea{ resize:vertical; min-height:110px; }
/* Browser autofill would otherwise paint the field pale blue/yellow with
   dark text — override it back to the navy form's own colours. */
.field input:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field input:-webkit-autofill:focus,
.field textarea:-webkit-autofill{
  -webkit-text-fill-color:#fdfbf7;
  caret-color:#fdfbf7;
  -webkit-box-shadow:0 0 0 1000px var(--navy-900) inset;
  box-shadow:0 0 0 1000px var(--navy-900) inset;
  transition:background-color 9999s ease 0s;
}
.field input:autofill, .field textarea:autofill{
  -webkit-text-fill-color:#fdfbf7;
  box-shadow:0 0 0 1000px var(--navy-900) inset;
}
.form-note{
  font-size:12px;
  color:var(--faint-on-navy);
  margin-top:6px;
}
.form-status{ margin-top:14px; font-size:13.5px; line-height:1.5; color:var(--gold-soft); display:none; }
.form-status.is-visible{ display:block; }
.form-status.is-error{ color:#e08a7d; }
.form-status.is-pending{ color:var(--muted-on-navy); }
.contact-alt{
  margin-top:22px; padding-top:18px;
  border-top:1px solid var(--navy-line);
  font-size:13.5px; color:var(--muted-on-navy);
}
.contact-alt a{ color:var(--gold-soft); }
.contact-alt a:hover{ color:#fdfbf7; }

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

.legal-content{ background:var(--cream); }
.legal-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.legal-grid article{ background:var(--paper); border:1px solid var(--line-on-cream); padding:36px; }
.legal-grid h2{ font-size:26px; }
.legal-grid p{ margin-top:18px; color:var(--ink-soft); line-height:1.7; }
.legal-grid>.btn{ grid-column:1/-1; justify-self:start; margin-top:12px; }
@media(max-width:720px){ .legal-grid{ grid-template-columns:1fr; } }

/* ---------- Footer ---------- */
.site-footer{ background:var(--navy-950); color:var(--muted-on-navy); border-top:1px solid var(--navy-line); }
.footer-top{
  padding-top:64px;
  padding-bottom:48px;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:48px;
}
.footer-brand .brand{ margin-bottom:16px; }
.footer-brand p{ font-size:14px; line-height:1.7; color:var(--faint-on-navy); max-width:340px; }
.footer-contact{
  font-style:normal;
  margin-top:16px;
  font-size:13.5px;
  line-height:1.7;
  color:var(--faint-on-navy);
}
.footer-contact a:hover{ color:var(--gold-soft); }
.footer-col h4{
  font-family:var(--sans);
  font-size:11px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--faint-on-navy);
  margin-bottom:18px;
  font-weight:700;
}
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:14.5px; color:var(--muted-on-navy); }
.footer-col a:hover{ color:var(--gold-soft); }
.footer-bottom{
  border-top:1px solid var(--navy-line);
  padding-top:22px;
  padding-bottom:22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  font-size:12.5px;
  color:var(--faint-on-navy);
}
.footer-bottom .legal-links{ display:flex; gap:20px; }
.footer-bottom .legal-links a:hover{ color:var(--gold-soft); }

@media (max-width:760px){
  .footer-top{ grid-template-columns:1fr; gap:32px; }
}

/* ---------- Blog listing page ---------- */
.blog-hero{
  background:var(--navy-900);
  color:#fdfbf7;
  padding:96px 0 64px;
}
.blog-hero h1{
  margin-top:18px;
  font-size:clamp(32px,4.4vw,48px);
}
.blog-hero p{
  margin-top:20px;
  max-width:600px;
  font-size:17px;
  line-height:1.7;
  color:var(--muted-on-navy);
}
.blog-list{ background:var(--paper); padding:80px 0; }
.blog-list .post-grid{ grid-template-columns:repeat(2,1fr); }
.blog-list .post-card{ padding:32px; }
.blog-list .post-card h3{ font-size:22px; }
@media (max-width:760px){
  .blog-list .post-grid{ grid-template-columns:1fr; }
}
.blog-note{
  margin-top:56px;
  padding:22px 26px;
  border:1px dashed var(--line-on-cream);
  font-size:13.5px;
  line-height:1.6;
  color:var(--ink-soft);
}

/* ---------- Article (single post) ---------- */
/* Deliberately its own reading-mode look — a serif text face, a narrower
   measure, and a quieter palette than the marketing pages — so a post reads
   like an editorial page, not another card grid. */
.article-hero{
  background:var(--navy-900);
  color:#fdfbf7;
  padding:48px 0 64px;
}
.back-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:600;
  color:var(--gold-soft);
  border-bottom:1px solid transparent;
}
.back-link:hover{ border-color:var(--gold-soft); }
.article-meta-top{
  margin-top:32px;
  display:flex;
  align-items:center;
  gap:12px;
}
.article-meta-top .pill{
  font-size:11px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--gold);
  border:1px solid var(--navy-line);
  border-radius:20px;
  padding:5px 14px;
}
.article-meta-top .dot{ color:var(--faint-on-navy); }
.article-meta-top .date{ font-size:13px; color:var(--muted-on-navy); }
.article-hero h1{
  margin-top:20px;
  font-size:clamp(30px,4.2vw,46px);
  line-height:1.2;
  color:#fdfbf7;
  max-width:820px;
}
.article-excerpt{
  margin-top:18px;
  font-size:17px;
  line-height:1.6;
  color:var(--muted-on-navy);
  max-width:640px;
}

.article-body-wrap{ padding-top:64px; padding-bottom:32px; }
.article-body-wrap .blog-note{ max-width:700px; margin:0 0 48px; }
.article-body{
  max-width:700px;
  font-family:var(--serif-body);
  font-size:19px;
  line-height:1.85;
  color:var(--ink);
}
.article-body p{ margin:0 0 26px; }
.article-body h2{
  font-family:var(--serif);
  font-size:26px;
  line-height:1.3;
  color:var(--ink);
  margin:48px 0 20px;
  padding-top:28px;
  border-top:1px solid var(--line-on-cream);
}
.article-body h2:first-child{ margin-top:0; padding-top:0; border-top:none; }
.article-body ul{
  margin:0 0 26px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.article-body li{
  padding-left:22px;
  position:relative;
  font-size:18px;
}
.article-body li::before{
  content:"";
  position:absolute;
  left:0; top:11px;
  width:10px; height:1px;
  background:var(--gold-deep);
}
.article-body blockquote{
  margin:36px 0;
  padding:4px 0 4px 28px;
  border-left:2px solid var(--gold);
  font-family:var(--serif);
  font-style:italic;
  font-size:22px;
  line-height:1.5;
  color:var(--ink);
}
.article-body strong{ color:var(--ink); }

.article-footer{
  max-width:700px;
  margin:56px auto 0;
  padding-top:32px;
  border-top:1px solid var(--line-on-cream);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.firm-note{ display:flex; flex-direction:column; gap:2px; }
.firm-note strong{ font-family:var(--serif); font-size:17px; color:var(--ink); }
.firm-note span{ font-size:13px; color:var(--ink-soft); }

.article-related{ background:var(--cream); padding:64px 0 80px; margin-top:16px; }
.article-related h3{
  font-size:14px;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--ink-soft);
  margin-bottom:24px;
}
.related-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:var(--gap);
}
.related-card{
  display:block;
  background:var(--paper);
  border:1px solid var(--line-on-cream);
  padding:24px;
  transition:border-color .2s ease, transform .2s ease;
}
.related-card:hover{ border-color:var(--gold-deep); transform:translateY(-2px); }
.related-card .meta{
  font-size:11px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--gold-deep);
}
.related-card h4{
  margin-top:10px;
  font-size:16px;
  line-height:1.4;
  color:var(--ink);
}
@media (max-width:760px){
  .related-grid{ grid-template-columns:1fr; }
  .article-body{ font-size:18px; }
  .article-body blockquote{ font-size:20px; padding-left:20px; }
}

/* ---------- Persistent WhatsApp button ---------- */
.whatsapp-float{
  position:fixed;
  right:24px;
  bottom:96px;
  z-index:80;
  width:56px; height:56px;
  border-radius:50%;
  background:var(--navy-900);
  border:1px solid var(--gold);
  color:var(--gold-soft);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 28px rgba(9,17,30,0.4);
  transition:transform .2s ease, background .2s ease, color .2s ease;
}
.whatsapp-float:hover{
  background:var(--gold);
  color:var(--navy-950);
  transform:translateY(-2px);
}
.whatsapp-float svg{ width:24px; height:24px; }
@media (max-width:640px){
  .whatsapp-float{ right:16px; bottom:80px; width:50px; height:50px; }
  .whatsapp-float svg{ width:21px; height:21px; }
}

/* ---------- Utility ---------- */
.skip-link{
  position:absolute; left:-9999px; top:0;
  background:var(--gold); color:var(--navy-950);
  padding:10px 16px; z-index:100;
}
.skip-link:focus{ left:16px; top:16px; }
