/* ═══════════════════════════════════════════════════════════
   Angela Lazăr — Expert în legislația muncii
   ═══════════════════════════════════════════════════════════ */

/* ---------- Fonts (self-hosted, no third-party requests) ---------- */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/playfair-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/playfair-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308,
    U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url('/fonts/sourcesans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url('/fonts/sourcesans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308,
    U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Tokens ---------- */
:root {
  --ink:        #1B0508;
  --deep:       #24070D;
  --burgundy:   #350B15;
  --burgundy-2: #4A0F1D;
  --burgundy-3: #64142A;

  --gold:       #C99A3A;
  --gold-lite:  #E7C273;
  --gold-glow:  #F4DCA0;
  --gold-deep:  #9A6F1F;

  --cream:      #F7F1E5;
  --cream-2:    #EFE6D5;
  --cream-3:    #E2D5BC;

  --text-dark:  #2A1D14;
  --text-mid:   #5C4A3B;
  --text-light: rgba(247, 241, 229, 0.82);
  --text-faint: rgba(247, 241, 229, 0.58);

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Source Sans 3', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1180px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  --shadow-soft: 0 18px 50px -20px rgba(20, 4, 8, 0.55);
  --shadow-card: 0 24px 60px -28px rgba(20, 4, 8, 0.45);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(16px, 0.42vw + 15px, 17.5px);
  line-height: 1.68;
  color: var(--text-dark);
  background: var(--deep);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.14; margin: 0; letter-spacing: -0.012em; }
p { margin: 0 0 1rem; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }

::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold-lite);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--ink);
  padding: .7rem 1.2rem; font-weight: 700; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, 820px); }

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; position: relative; }
.section-cream { background: var(--cream); color: var(--text-dark); }
.section-dark  { background: var(--burgundy); color: var(--cream); }
.section-deep  { background: var(--deep); color: var(--cream); }

.section-cream::before,
.section-dark::before {
  content: ''; position: absolute; inset: 0 0 auto; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
  opacity: .5;
}

/* ---------- Common bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-lite); margin: 0 0 1.1rem;
}
.eyebrow-dark { color: var(--gold-deep); }
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; box-shadow: 0 0 0 4px rgba(201, 154, 58, .18);
}
.gold {
  background: linear-gradient(102deg, var(--gold) 0%, var(--gold-glow) 45%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.section-head { max-width: 720px; margin: 0 auto clamp(2.75rem, 5vw, 4rem); text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.section-sub { color: var(--text-mid); font-size: 1.04rem; margin: 0; }
.section-dark .section-sub, .section-deep .section-sub { color: var(--text-light); }

.rule { display: flex; align-items: center; justify-content: center; gap: .8rem; color: var(--gold); font-size: .7rem; margin: 1.4rem 0; }
.rule span { height: 1px; width: 54px; background: linear-gradient(90deg, transparent, var(--gold)); }
.rule span:last-of-type { background: linear-gradient(90deg, var(--gold), transparent); }
.rule-wide span { width: min(160px, 24vw); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: 999px;
  font-weight: 700; font-size: .95rem; letter-spacing: .012em;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold) 40%, var(--gold-glow) 72%, var(--gold));
  color: #2A1405;
  box-shadow: 0 10px 30px -12px rgba(201, 154, 58, .7);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(201, 154, 58, .85); }
.btn-ghost { border-color: rgba(231, 194, 115, .45); color: var(--gold-lite); background: rgba(231, 194, 115, .05); }
.btn-ghost:hover { background: rgba(231, 194, 115, .14); transform: translateY(-2px); }
.section-cream .btn-ghost { border-color: rgba(154, 111, 31, .4); color: var(--gold-deep); }
.btn-outline { border-color: rgba(231, 194, 115, .5); color: var(--gold-lite); padding: .7rem 1.4rem; font-size: .88rem; }
.btn-outline:hover { background: rgba(231, 194, 115, .12); }
.btn-sm { padding: .68rem 1.3rem; font-size: .87rem; }
.btn-xs { padding: .38rem .85rem; font-size: .76rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(27, 5, 8, .92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(201, 154, 58, .22), 0 12px 34px -20px rgba(0, 0, 0, .8);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: .85rem 0; }

.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; color: var(--cream); }
.brand-mark { border-radius: 50%; box-shadow: 0 0 0 1px rgba(201, 154, 58, .45); flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-family: var(--serif); font-size: 1.16rem; font-weight: 700; letter-spacing: .01em; }
.brand-text em {
  font-style: normal; font-size: .66rem; letter-spacing: .17em; text-transform: uppercase;
  color: var(--gold-lite); margin-top: .18rem;
}

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav > a:not(.btn) {
  text-decoration: none; color: var(--text-light); font-size: .93rem; font-weight: 600;
  position: relative; padding: .3rem 0; transition: color .25s var(--ease);
}
.nav > a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-glow));
  transition: width .3s var(--ease);
}
.nav > a:not(.btn):hover { color: var(--cream); }
.nav > a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid rgba(231, 194, 115, .35);
  background: rgba(231, 194, 115, .07); border-radius: var(--r-sm); cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 19px; height: 1.8px; background: var(--gold-lite); transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: clamp(8rem, 15vw, 11rem) 0 0;
  background:
    radial-gradient(120% 80% at 85% 5%, rgba(100, 20, 42, .55) 0%, transparent 55%),
    radial-gradient(90% 70% at 10% 95%, rgba(74, 15, 29, .5) 0%, transparent 60%),
    linear-gradient(165deg, var(--burgundy) 0%, var(--ink) 55%, var(--deep) 100%);
  color: var(--cream); overflow: hidden;
}
.hero-glow {
  position: absolute; top: -18%; right: -8%; width: 60vw; height: 60vw; max-width: 780px; max-height: 780px;
  background: radial-gradient(circle, rgba(201, 154, 58, .2) 0%, transparent 62%);
  filter: blur(28px); pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(201, 154, 58, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 154, 58, .035) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(80% 60% at 50% 30%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(80% 60% at 50% 30%, #000 0%, transparent 78%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.35fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}
.hero h1 {
  font-size: clamp(2.6rem, 6.6vw, 4.6rem); font-weight: 800; margin-bottom: 1.4rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}
.lede { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--text-light); max-width: 56ch; margin-bottom: 1.9rem; }
.lede strong { color: var(--cream); font-weight: 600; }

.free-banner {
  border: 1px solid rgba(201, 154, 58, .4); border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(201, 154, 58, .13), rgba(201, 154, 58, .04));
  padding: 1.15rem 1.35rem; margin-bottom: 2.1rem; max-width: 560px;
}
.free-banner-head { display: flex; align-items: baseline; flex-wrap: wrap; gap: .6rem; margin-bottom: .45rem; }
.free-tag {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 800; letter-spacing: .01em;
  background: linear-gradient(100deg, var(--gold), var(--gold-glow), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.free-year { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-lite); font-weight: 600; }
.free-banner p { margin: 0; font-size: .93rem; color: var(--text-light); }

.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.3rem; }

.hero-assurances { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; font-size: .87rem; color: var(--text-faint); }
.hero-assurances li { display: flex; align-items: center; gap: .5rem; }
.hero-assurances svg { width: 17px; height: 17px; fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* Hero card */
.hero-card { position: relative; }
.hero-card::before {
  content: ''; position: absolute; inset: -14px; border-radius: calc(var(--r-lg) + 12px);
  background: linear-gradient(150deg, rgba(201, 154, 58, .32), transparent 45%, rgba(201, 154, 58, .18));
  filter: blur(1px);
}
.hero-card-inner {
  position: relative; text-align: center; padding: 2.6rem 1.9rem 2.3rem;
  border-radius: var(--r-lg); border: 1px solid rgba(201, 154, 58, .32);
  background: linear-gradient(170deg, rgba(53, 11, 21, .96), rgba(27, 5, 8, .98));
  box-shadow: var(--shadow-card);
}
.hero-seal { margin: 0 auto 1.1rem; border-radius: 50%; box-shadow: 0 0 0 1px rgba(201, 154, 58, .5), 0 12px 34px -14px rgba(0, 0, 0, .9); }
.hero-card-kicker { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-lite); margin: 0 0 .3rem; }
.hero-card-title { font-size: 1.7rem; font-weight: 700; color: var(--cream); }
.hero-card-body { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--text-light); margin-bottom: 1.4rem; }
.hero-card-list { display: grid; gap: .65rem; text-align: left; font-size: .89rem; color: var(--text-light); }
.hero-card-list li { position: relative; padding-left: 1.4rem; }
.hero-card-list li::before {
  content: ''; position: absolute; left: 0; top: .62em; width: 7px; height: 7px;
  border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(201, 154, 58, .16);
}

/* Values strip */
.values-strip {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(201, 154, 58, .25);
  background: rgba(0, 0, 0, .28);
}
.values-inner {
  display: flex; flex-wrap: wrap; justify-content: space-around; gap: 1rem 1.6rem; padding: 1.15rem 0;
}
.values-inner span {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-lite);
}
.values-inner svg { width: 19px; height: 19px; fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Cards (servicii) ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); gap: 1.4rem; }
.card {
  position: relative; padding: 2.1rem 1.8rem 1.9rem;
  background: #fff; border: 1px solid var(--cream-3); border-radius: var(--r-md);
  box-shadow: 0 2px 4px rgba(42, 29, 20, .04);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
  overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0 0 auto; height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-glow));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: rgba(201, 154, 58, .5); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 1.25rem;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(201, 154, 58, .18), rgba(201, 154, 58, .05));
  border: 1px solid rgba(201, 154, 58, .3);
}
.card-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--gold-deep); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .6rem; }
.card p { margin: 0; font-size: .95rem; color: var(--text-mid); }

/* ---------- Split (pentru cine) ---------- */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.6rem; }
.split-card {
  padding: 2.3rem 2rem; border-radius: var(--r-lg);
  border: 1px solid rgba(201, 154, 58, .28);
  background: linear-gradient(165deg, rgba(100, 20, 42, .34), rgba(27, 5, 8, .5));
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.split-card:hover { border-color: rgba(201, 154, 58, .55); transform: translateY(-4px); }
.split-icon {
  width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 1.3rem; border-radius: 50%;
  background: linear-gradient(140deg, rgba(201, 154, 58, .22), rgba(201, 154, 58, .06));
  border: 1px solid rgba(201, 154, 58, .38);
}
.split-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--gold-lite); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.split-card h3 { font-size: 1.5rem; font-weight: 700; color: var(--cream); margin-bottom: 1.25rem; }

.ticks { display: grid; gap: .8rem; }
.ticks li { position: relative; padding-left: 2rem; font-size: .95rem; color: var(--text-light); }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: .35em; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(201, 154, 58, .16); border: 1px solid rgba(201, 154, 58, .45);
}
.ticks li::after {
  content: ''; position: absolute; left: 5.5px; top: .72em; width: 7px; height: 3.5px;
  border-left: 1.8px solid var(--gold-lite); border-bottom: 1.8px solid var(--gold-lite);
  transform: rotate(-45deg);
}

.mediation {
  display: flex; gap: 1.6rem; align-items: flex-start; margin-top: 1.6rem;
  padding: 2rem 2.1rem; border-radius: var(--r-lg);
  background: linear-gradient(120deg, rgba(201, 154, 58, .13), rgba(201, 154, 58, .03));
  border: 1px solid rgba(201, 154, 58, .3);
}
.mediation-icon { flex: none; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 14px; background: rgba(201, 154, 58, .16); }
.mediation-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--gold-lite); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.mediation h3 { font-size: 1.35rem; color: var(--cream); margin-bottom: .5rem; }
.mediation p { margin: 0; color: var(--text-light); font-size: .96rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; counter-reset: s; }
.step {
  position: relative; padding: 2.2rem 1.6rem 1.7rem;
  background: #fff; border: 1px solid var(--cream-3); border-radius: var(--r-md);
}
.step-num {
  position: absolute; top: -.72rem; left: 1.5rem;
  font-family: var(--serif); font-size: .95rem; font-weight: 800; letter-spacing: .05em;
  padding: .22rem .75rem; border-radius: 999px; color: #2A1405;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-glow));
  box-shadow: 0 6px 16px -8px rgba(201, 154, 58, .9);
}
.step h3 { font-size: 1.16rem; font-weight: 700; margin-bottom: .5rem; }
.step p { margin: 0; font-size: .93rem; color: var(--text-mid); }

/* ---------- Why free ---------- */
.why { max-width: 760px; margin-inline: auto; text-align: center; position: relative; }
.why-mark { display: grid; place-items: center; width: 70px; height: 70px; margin: 0 auto 1.5rem; border-radius: 50%;
  border: 1px solid rgba(201, 154, 58, .4); background: rgba(201, 154, 58, .1); }
.why-mark svg { width: 34px; height: 34px; fill: none; stroke: var(--gold-lite); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.why blockquote {
  margin: 0; font-family: var(--serif); font-size: clamp(1.35rem, 3vw, 1.95rem);
  line-height: 1.5; color: var(--cream); font-style: italic; position: relative;
}
.why blockquote::before {
  content: '\201E'; font-size: 4.5rem; color: rgba(201, 154, 58, .3);
  position: absolute; left: -.15em; top: -.35em; line-height: 1;
}
.why-sign { margin: 1.4rem 0 0; color: var(--gold-lite); letter-spacing: .12em; font-size: .84rem; text-transform: uppercase; font-weight: 700; }
.why-note { margin: 0; color: var(--text-faint); font-size: .93rem; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-frame {
  text-align: center; padding: 2.6rem 1.8rem; border-radius: var(--r-lg);
  background: linear-gradient(170deg, var(--burgundy-2), var(--ink));
  border: 1px solid rgba(201, 154, 58, .35); box-shadow: var(--shadow-soft);
}
.about-frame img { margin: 0 auto 1.3rem; border-radius: 50%; box-shadow: 0 0 0 1px rgba(201, 154, 58, .45); }
.about-name { font-family: var(--serif); font-size: 1.55rem; font-weight: 700; color: var(--cream); margin: 0 0 .25rem; }
.about-role { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-lite); margin: 0 0 1.1rem; }
.about-loc { display: inline-flex; align-items: center; gap: .45rem; font-size: .88rem; color: var(--text-faint); margin: 0; }
.about-loc svg { width: 16px; height: 16px; fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.about-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-weight: 700; margin-bottom: 1.2rem; }
.about-copy p { color: var(--text-mid); }
.about-copy strong { color: var(--text-dark); font-weight: 700; }

.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-top: 1.9rem; }
.pillar {
  padding: 1.1rem 1.2rem; border-radius: var(--r-sm);
  background: rgba(201, 154, 58, .09); border-left: 3px solid var(--gold);
}
.pillar strong { display: block; font-family: var(--serif); font-size: 1.05rem; margin-bottom: .18rem; }
.pillar span { font-size: .85rem; color: var(--text-mid); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .75rem; }
.faq details {
  border: 1px solid rgba(201, 154, 58, .26); border-radius: var(--r-md);
  background: rgba(0, 0, 0, .2); overflow: hidden;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.faq details[open] { border-color: rgba(201, 154, 58, .5); background: rgba(0, 0, 0, .32); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 3.2rem 1.15rem 1.5rem;
  font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--cream);
  position: relative; transition: color .25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold-lite); }
.faq summary::after {
  content: ''; position: absolute; right: 1.5rem; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: translateY(-70%) rotate(45deg); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq details p { margin: 0; padding: 0 1.6rem 1.35rem; color: var(--text-light); font-size: .95rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.8rem; align-items: start; }

.intake {
  padding: 2rem 1.9rem; border-radius: var(--r-lg);
  background: linear-gradient(170deg, rgba(53, 11, 21, .8), rgba(27, 5, 8, .92));
  border: 1px solid rgba(201, 154, 58, .32);
  box-shadow: var(--shadow-card);
}
.intake-title { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; color: var(--cream); margin: 0 0 1.4rem; }

.field { margin: 0 0 1.15rem; border: 0; padding: 0; }
.field > label, .field legend {
  display: block; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-lite); margin-bottom: .5rem; padding: 0;
}
.field input[type="text"], .field select, .field textarea {
  width: 100%; padding: .8rem 1rem; font: inherit; font-size: .95rem;
  color: var(--cream); background: rgba(0, 0, 0, .34);
  border: 1px solid rgba(201, 154, 58, .3); border-radius: var(--r-sm);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 118px; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: rgba(247, 241, 229, .35); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(0, 0, 0, .5);
}
.field select { appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%;
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
  padding-right: 2.6rem;
}
.field select option { background: var(--burgundy); color: var(--cream); }

.radios { display: flex; flex-wrap: wrap; gap: .6rem; }
.radios label { position: relative; cursor: pointer; }
.radios input { position: absolute; opacity: 0; width: 0; height: 0; }
.radios span {
  display: inline-block; padding: .55rem 1.15rem; border-radius: 999px; font-size: .9rem; font-weight: 600;
  color: var(--text-light); border: 1px solid rgba(201, 154, 58, .3); background: rgba(0, 0, 0, .3);
  transition: all .25s var(--ease);
}
.radios input:checked + span {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold)); color: #2A1405;
  border-color: transparent; box-shadow: 0 6px 18px -8px rgba(201, 154, 58, .8);
}
.radios input:focus-visible + span { outline: 2px solid var(--gold-lite); outline-offset: 2px; }

.intake-out { margin: 1.4rem 0 1.2rem; border: 1px solid rgba(201, 154, 58, .24); border-radius: var(--r-sm); background: rgba(0, 0, 0, .34); overflow: hidden; }
.intake-out-head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .6rem .75rem .6rem 1rem; border-bottom: 1px solid rgba(201, 154, 58, .2);
  font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 700; color: var(--gold-lite);
}
#preview {
  margin: 0; padding: 1rem; max-height: 210px; overflow: auto;
  font-family: var(--sans); font-size: .88rem; line-height: 1.62;
  color: var(--text-light); white-space: pre-wrap; word-break: break-word;
}
.intake-hint { margin: .7rem 0 0; text-align: center; font-size: .82rem; color: var(--text-faint); transition: color .3s var(--ease); }
.intake-hint.ok { color: var(--gold-lite); font-weight: 600; }

.contact-side { display: grid; gap: 1.1rem; }
.contact-box {
  padding: 1.7rem 1.6rem; border-radius: var(--r-md);
  border: 1px solid rgba(201, 154, 58, .26); background: rgba(100, 20, 42, .2);
}
.contact-box-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; margin-bottom: 1rem;
  background: rgba(201, 154, 58, .15); border: 1px solid rgba(201, 154, 58, .3); }
.contact-box-icon svg { width: 23px; height: 23px; fill: none; stroke: var(--gold-lite); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact-box h3 { font-size: 1.18rem; font-weight: 700; color: var(--cream); margin-bottom: .5rem; }
.contact-box p { font-size: .92rem; color: var(--text-light); margin-bottom: 1rem; }
.contact-box p:last-child { margin-bottom: 0; }
.contact-box-muted { background: rgba(0, 0, 0, .22); }
.contact-box-muted p { color: var(--text-faint); font-size: .87rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--text-light); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; border-top: 1px solid rgba(201, 154, 58, .28); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr 1.1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-brand { display: flex; gap: 1rem; align-items: flex-start; }
.footer-brand img { border-radius: 50%; box-shadow: 0 0 0 1px rgba(201, 154, 58, .4); flex: none; }
.footer-brand > div { display: flex; flex-direction: column; gap: .18rem; }
.footer-brand strong { font-family: var(--serif); font-size: 1.24rem; color: var(--cream); }
.footer-brand span { font-size: .85rem; color: var(--text-faint); }

.footer-h { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-lite); font-weight: 700; margin: 0 0 .9rem; }
.footer-nav { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a { text-decoration: none; font-size: .92rem; color: var(--text-faint); transition: color .25s var(--ease); width: fit-content; }
.footer-nav a:hover { color: var(--gold-lite); }
.footer-contact a { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; font-size: .92rem; color: var(--text-light); transition: color .25s var(--ease); }
.footer-contact a:hover { color: var(--gold-lite); }
.footer-contact .fb { width: 22px; height: 22px; fill: var(--gold); stroke: none; flex: none; }
.footer-loc { margin: .9rem 0 0; font-size: .85rem; color: var(--text-faint); }

.footer-bottom { border-top: 1px solid rgba(201, 154, 58, .16); padding-top: 1.6rem; display: grid; gap: .6rem; }
.footer-bottom p { margin: 0; font-size: .82rem; color: var(--text-faint); }
.footer-legal { font-size: .78rem; opacity: .8; max-width: 78ch; }

/* ---------- Floating action ---------- */
.fab {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90;
  display: none; align-items: center; gap: .55rem;
  padding: .85rem 1.35rem; border-radius: 999px; text-decoration: none;
  font-weight: 700; font-size: .92rem; color: #2A1405;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold) 45%, var(--gold-glow));
  box-shadow: 0 12px 32px -10px rgba(0, 0, 0, .8);
}
.fab svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ═══════════════ Responsive ═══════════════ */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 480px; margin-inline: auto; width: 100%; }
  .about { grid-template-columns: 1fr; }
  .about-frame { max-width: 420px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav {
    position: fixed; inset: 0 0 auto; top: 0; z-index: -1;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 5.6rem 1.5rem 2rem;
    background: linear-gradient(175deg, var(--burgundy), var(--ink));
    border-bottom: 1px solid rgba(201, 154, 58, .3);
    box-shadow: 0 22px 50px -20px rgba(0, 0, 0, .9);
    transform: translateY(-100%); opacity: 0; visibility: hidden;
    transition: transform .38s var(--ease), opacity .28s var(--ease), visibility .38s;
  }
  .nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav > a:not(.btn) { padding: .95rem .2rem; border-bottom: 1px solid rgba(201, 154, 58, .14); font-size: 1.02rem; }
  .nav > a:not(.btn)::after { display: none; }
  .nav .btn { margin-top: 1.2rem; }
  .nav-toggle { display: flex; }
  .site-header { background: rgba(27, 5, 8, .9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
  .fab { display: inline-flex; }
  body { padding-bottom: 0; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 1.75rem, var(--wrap)); }
  .hero { padding-top: 6.5rem; }
  .hero h1 { font-size: clamp(2.25rem, 9vw, 3rem); }
  .hero-actions .btn { width: 100%; }
  .hero-assurances { gap: .8rem; flex-direction: column; }
  .values-inner { justify-content: flex-start; gap: .85rem 1.4rem; }
  .values-inner span { font-size: .72rem; letter-spacing: .1em; }
  .mediation { flex-direction: column; gap: 1.1rem; padding: 1.6rem 1.4rem; }
  .card, .split-card, .intake { padding-left: 1.4rem; padding-right: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why blockquote::before { display: none; }
  .fab span { display: none; }
  .fab { padding: 1rem; }
}
