/* ==========================================================================
   Elizabeth Tesfaye Law Office — Design System
   Navy #1B3654 / Gold #C4A35A on warm ivory
   ========================================================================== */

:root {
  --navy:        #1B3654;
  --navy-deep:   #102033;
  --navy-soft:   #2A4A6C;
  --gold:        #C4A35A;
  --gold-light:  #D4B878;
  --gold-pale:   #EFE3CC;
  --ivory:       #F7F3EA;
  --ivory-warm:  #EFE8DA;
  --paper:       #FFFcf7;
  --ink:         #161C24;
  --muted:       #5A6573;
  --line:        #E2D9C8;

  --font-display: "Cormorant Garamond", "Palatino Linotype", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap:      1180px;
  --wrap-text: 760px;

  --step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.4rem);
  --step-2:  clamp(1.5rem, 1.36rem + 0.7vw, 1.95rem);
  --step-3:  clamp(1.9rem, 1.66rem + 1.2vw, 2.7rem);
  --step-4:  clamp(2.3rem, 1.9rem + 2vw, 3.8rem);

  --space-section: clamp(3.5rem, 2.5rem + 4vw, 7rem);
  --radius: 2px;
  --shadow-sm: 0 1px 2px rgba(16, 32, 51, .06), 0 8px 24px rgba(16, 32, 51, .06);
  --shadow-md: 0 12px 40px rgba(16, 32, 51, .12);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.72;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p  { margin: 0 0 1.25em; }
a  { color: var(--navy); text-decoration-color: var(--gold); text-underline-offset: 3px; }
a:hover { color: var(--gold); }
ul, ol { padding-left: 1.3em; }
li { margin-bottom: .5em; }
strong { font-weight: 650; color: var(--navy-deep); }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

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

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
@media (max-width: 640px) { .wrap { width: min(100% - 2rem, var(--wrap)); } }
.section { padding-block: var(--space-section); }
.section--tight { padding-block: clamp(2.5rem, 2rem + 2vw, 4rem); }
.section--paper { background: var(--paper); }
.section--warm  { background: var(--ivory-warm); }
.section--navy  { background: var(--navy); color: #E8EDF3; }
.section--navy h2, .section--navy h3 { color: var(--paper); }
.section--navy a { color: var(--gold-light); }
.prose { max-width: var(--wrap-text); }
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff; padding: .75rem 1.25rem; z-index: 999;
}
.skip-link:focus { left: 0; }

/* ---------- Eyebrow + rule ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step--1);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 1rem;
  display: block;
}
.rule { width: 64px; height: 1px; background: var(--gold); border: 0; margin: 1.5rem 0; }
.rule--center { margin-inline: auto; }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem); }
.section-head--center { text-align: center; margin-inline: auto; }
.lead { font-size: var(--step-1); line-height: 1.6; color: var(--muted); font-weight: 350; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .95rem 1.85rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--gold   { background: var(--gold); color: #fff; }
.btn--gold:hover { background: #A67F3C; color: #fff; }
.btn--navy   { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-deep); color: #fff; }
.btn--ghost  { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--light  { border-color: rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn--light:hover { background: #fff; color: var(--navy); }
.btn--whatsapp { background: #128C7E; color: #fff; }
.btn--whatsapp:hover { background: #0E6E63; color: #fff; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.connect-row .btn { white-space: normal; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 244, .94);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 78px;
}
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; flex-shrink: 0; }
.brand svg { width: 48px; height: 48px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display); font-size: 1.16rem; font-weight: 600;
  color: var(--navy); letter-spacing: .01em; white-space: nowrap;
}
.brand-sub {
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a {
  font-size: .87rem; font-weight: 500; color: var(--navy);
  text-decoration: none; letter-spacing: .02em; position: relative; padding: .3rem 0;
  white-space: nowrap;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--gold); }
/* The in-menu CTA is for the mobile drawer only; on desktop the header
   already carries one, and showing both duplicates the call to action. */
.nav > .btn { display: none; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.lang-switch {
  display: inline-flex; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.lang-toggle {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  color: var(--muted); background: none; border: 0;
  padding: .45rem .7rem; cursor: pointer;
}
.lang-toggle.is-active { background: var(--navy); color: #fff; }
html[lang="am"] body { font-family: "Noto Sans Ethiopic", var(--font-body); }
.i18n-am { display: none; }
html[lang="am"] .i18n-en { display: none; }
html[lang="am"] .i18n-am { display: inline; }
html[lang="am"] .i18n-am.i18n-block,
html[lang="am"] p.i18n-am { display: block; }
.i18n-en.i18n-block { display: block; }
html[lang="am"] .i18n-en.i18n-block { display: none; }
.header-cta { padding: .78rem 1.4rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: .5rem;
  width: 44px; height: 44px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--navy);
  margin: 5px auto; transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1000px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 78px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); padding: 1rem 1.5rem 2rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height .35s var(--ease), visibility 0s .35s;
  }
  .nav.is-open { max-height: calc(100vh - 78px); overflow-y: auto; visibility: visible; transition: max-height .35s var(--ease); }
  .nav a { padding: .95rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav a::after { display: none; }
  .nav > .btn { display: inline-flex; margin-top: 1.25rem; justify-content: center; border-bottom: 0; }
  .header-actions .header-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(16,32,51,.97) 0%, rgba(27,54,84,.93) 55%, rgba(42,74,108,.9) 100%);
  color: #fff;
  overflow: hidden;
  padding-block: clamp(4.5rem, 3rem + 8vw, 9rem);
}
.hero--photo { min-height: min(88vh, 820px); display: flex; align-items: flex-end; padding-block: clamp(5rem, 8vw, 9rem) 4.5rem; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 20%; }
.hero--photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(16,32,51,.88) 0%, rgba(16,32,51,.62) 48%, rgba(16,32,51,.28) 100%),
    linear-gradient(180deg, rgba(16,32,51,.2) 0%, rgba(16,32,51,.55) 100%);
}
.hero--photo::after { display: none; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(196,163,90,.07) 0 1px, transparent 1px 92px);
  opacity: .9;
}
.hero::after {
  content: ""; position: absolute; right: -12%; top: 50%; transform: translateY(-50%);
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,163,90,.16) 0%, transparent 68%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-inner { max-width: 720px; }
.hero h1 { color: #fff; margin-bottom: .5em; }
.hero .eyebrow { color: var(--gold-light); }
.hero-lead {
  font-size: var(--step-1); line-height: 1.65; color: #D6DEE8;
  font-weight: 350; max-width: 62ch;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.25rem 2.5rem;
  margin-top: 2.75rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero-meta div { min-width: 150px; }
.hero-meta dt {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600; margin-bottom: .35rem;
}
.hero-meta dd { margin: 0; font-size: .95rem; color: #E8EDF3; }

/* ---------- Page header (interior) ---------- */
.page-header {
  background: var(--navy); color: #fff;
  padding-block: clamp(3rem, 2rem + 4vw, 5.5rem);
  position: relative; overflow: hidden;
}
.page-header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 45%, transparent 100%);
}
.page-header h1 { color: #fff; max-width: 20ch; }
.page-header .lead { color: #C9D4E0; max-width: 60ch; }
.breadcrumb { font-size: .78rem; letter-spacing: .04em; margin-bottom: 1.5rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 0; }
.breadcrumb li { margin: 0; color: rgba(255,255,255,.65); }
.breadcrumb li + li::before { content: "›"; margin-right: .5rem; color: var(--gold); }
.breadcrumb a { color: rgba(255,255,255,.8); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--split { grid-template-columns: 1fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); }
@media (min-width: 900px) { .grid--split { grid-template-columns: 1.05fr .95fr; align-items: start; } }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-pale); }
.card:hover::before { transform: scaleX(1); }
.card h3 { font-size: var(--step-1); margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .95rem; margin-bottom: 1.25rem; }
.card .card-link {
  margin-top: auto; font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); text-decoration: none;
  display: inline-flex; align-items: center; gap: .45rem;
}
.card .card-link::after { content: "→"; transition: transform .3s var(--ease); }
.card:hover .card-link::after { transform: translateX(4px); }
.card-icon { width: 40px; height: 40px; margin-bottom: 1.25rem; color: var(--gold); }
.card-icon svg { width: 100%; height: 100%; }
.card--stretch::after {
  content: ""; position: absolute; inset: 0;
}
.card--stretch { cursor: pointer; }

/* ---------- Feature list ---------- */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.75rem; }
.feature-list li { display: flex; gap: 1.1rem; margin: 0; }
.feature-num {
  flex-shrink: 0; width: 38px; height: 38px; border: 1px solid var(--gold);
  border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.05rem; color: var(--gold); font-weight: 600;
}
.feature-list h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.feature-list p { margin: 0; color: var(--muted); font-size: .94rem; }
.section--navy .feature-list p { color: #B9C6D6; }
.section--navy .feature-num { border-color: var(--gold-light); color: var(--gold-light); }

/* ---------- Stat band ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; text-align: center; }
.stat-value { font-family: var(--font-display); font-size: var(--step-3); color: var(--gold); line-height: 1; margin-bottom: .4rem; }
.stat-label { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: #B9C6D6; }

/* ---------- Quote / testimonial ---------- */
.quote {
  background: var(--paper); border-left: 3px solid var(--gold);
  padding: 2rem 2.1rem; border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.quote blockquote {
  margin: 0 0 1.25rem; font-family: var(--font-display);
  font-size: var(--step-1); line-height: 1.55; color: var(--navy); font-style: italic;
}
.quote figcaption { font-size: .85rem; color: var(--muted); }
.quote figcaption strong { display: block; color: var(--navy); font-style: normal; }

/* ---------- Accordion (FAQ) ---------- */
.accordion { border-top: 1px solid var(--line); max-width: var(--wrap-text); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary {
  cursor: pointer; padding: 1.5rem 2.5rem 1.5rem 0; position: relative;
  font-family: var(--font-display); font-size: var(--step-1); color: var(--navy);
  font-weight: 600; line-height: 1.35; list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+"; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--gold); font-family: var(--font-body); font-weight: 300;
  transition: transform .3s var(--ease);
}
.accordion details[open] summary::after { content: "−"; }
.accordion summary:hover { color: var(--gold); }
.accordion .answer { padding: 0 2.5rem 1.75rem 0; color: var(--muted); }
.accordion .answer p:last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: clamp(2rem, 1rem + 4vw, 4rem); }
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.9rem; }
.contact-list li { display: flex; gap: 1rem; margin: 0; }
.contact-list .ci { flex-shrink: 0; width: 22px; color: var(--gold); margin-top: .25rem; }
.contact-list .ci-label {
  display: block;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: .3rem;
}
.contact-list .ci-value { margin: 0; }
.contact-list a { text-decoration: none; font-weight: 500; }
.contact-list a:hover { text-decoration: underline; }

.form-field { margin-bottom: 1.4rem; }
.form-field label {
  display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; color: var(--navy); margin-bottom: .5rem;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: .85rem 1rem; font-family: var(--font-body); font-size: .95rem;
  color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(185,146,76,.15); outline: none;
}
.form-field textarea { resize: vertical; min-height: 150px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 1rem; }
.map-embed {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  line-height: 0; box-shadow: var(--shadow-sm);
}
.map-embed iframe { width: 100%; height: 380px; border: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy); color: #fff; text-align: center;
  padding-block: clamp(3.5rem, 2.5rem + 4vw, 6rem);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(185,146,76,.18) 0%, transparent 62%);
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; max-width: 22ch; margin-inline: auto; }
.cta-band p { color: #C9D4E0; max-width: 56ch; margin-inline: auto; font-size: var(--step-1); font-weight: 350; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Article body ---------- */
.article-body h2 { margin-top: 2.75rem; font-size: var(--step-2); }
.article-body h3 { margin-top: 2rem; font-size: var(--step-1); }
.article-body ul, .article-body ol { margin-bottom: 1.5rem; }
.article-body > p:first-of-type { font-size: var(--step-1); color: var(--muted); font-weight: 350; line-height: 1.65; }
.callout {
  background: var(--gold-pale); border-left: 3px solid var(--gold);
  padding: 1.5rem 1.75rem; border-radius: var(--radius); margin: 2.25rem 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--navy-deep); }

.sidebar { position: sticky; top: 110px; }
.sidebar-card {
  background: var(--navy); color: #fff; padding: 2rem 1.85rem; border-radius: var(--radius);
}
.sidebar-card h3 { color: #fff; font-size: var(--step-1); }
.sidebar-card p { color: #C1CDDB; font-size: .92rem; }
.sidebar-card .btn { width: 100%; justify-content: center; }
.sidebar-nav { list-style: none; padding: 0; margin: 0 0 2rem; border-top: 1px solid var(--line); }
.sidebar-nav li { margin: 0; border-bottom: 1px solid var(--line); }
.sidebar-nav a {
  display: block; padding: .85rem 0; font-size: .92rem; text-decoration: none;
  color: var(--navy); transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.sidebar-nav a:hover { color: var(--gold); padding-left: .4rem; }
.sidebar-nav a[aria-current="page"] { color: var(--gold); font-weight: 600; }

/* ---------- Insights ---------- */
.post-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.9rem; transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.post-meta { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .75rem; }
.post-card h3 { font-size: var(--step-1); margin-bottom: .55rem; }
.post-card h3 a { text-decoration: none; }
.post-card p { color: var(--muted); font-size: .94rem; margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #A9B8C9; padding-block: clamp(3rem, 2rem + 3vw, 4.5rem) 0; font-size: .92rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.footer-brand { max-width: 320px; }
.footer-brand svg { width: 52px; height: 52px; margin-bottom: 1.1rem; }
.footer-brand .brand-name { color: #fff; font-size: 1.25rem; display: block; margin-bottom: .2rem; font-family: var(--font-display); }
.footer-brand .brand-sub { color: var(--gold); display: block; margin-bottom: 1rem; }
.footer-brand p { color: #93A3B6; font-size: .9rem; }
.site-footer h4 {
  color: #fff; font-family: var(--font-body); font-size: .72rem; letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: 1.2rem; font-weight: 600;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .7rem; }
.site-footer a { color: #A9B8C9; text-decoration: none; transition: color .2s var(--ease); }
.site-footer a:hover { color: var(--gold-light); }
.footer-nap address { font-style: normal; color: #A9B8C9; line-height: 1.8; }
.footer-bottom {
  margin-top: 3rem; padding-block: 1.75rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .8rem; color: #7D8DA1;
}
.disclaimer {
  background: rgba(0,0,0,.18); padding: 1.5rem 0; font-size: .78rem;
  line-height: 1.65; color: #7D8DA1;
}
.disclaimer .wrap { max-width: 900px; }

.photo-frame {
  margin: 0; overflow: hidden; border-radius: 3px;
  box-shadow: var(--shadow-md); background: var(--navy-deep);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-frame--portrait { min-height: 420px; }
@media (min-width: 900px) {
  .split--photo { align-items: center; }
  .about-hero-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 4rem; align-items: start; }
}
.about-hero-grid { display: grid; gap: 2.5rem; }
.photo-strip { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 800px) { .photo-strip { grid-template-columns: 1fr 1fr 1fr; } }
.photo-strip .photo-frame { aspect-ratio: 4/3; }

.connect-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .connect-grid { grid-template-columns: repeat(3, 1fr); } }
.connect-card {
  display: flex; flex-direction: column; gap: .4rem;
  background: var(--paper); border: 1px solid var(--line);
  padding: 2.1rem 1.8rem; text-decoration: none; color: inherit;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
}
.connect-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
}
.connect-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-pale); color: inherit; }
.connect-card h2 { font-size: var(--step-2); margin: .4rem 0 .15rem; }
.connect-card p { color: var(--muted); margin: 0 0 1rem; word-break: break-all; }
.connect-icon { width: 28px; height: 28px; color: var(--gold); }
.connect-icon svg { width: 100%; height: 100%; }
.connect-card--wa::before { background: #128C7E; }
.connect-card--wa .connect-icon { color: #128C7E; }

.float-bar {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 80;
  display: inline-flex; align-items: center; gap: .55rem;
  background: #128C7E; color: #fff; text-decoration: none;
  padding: .85rem 1.2rem; border-radius: 999px;
  box-shadow: 0 10px 30px rgba(18,140,126,.35);
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
}
.float-bar:hover { color: #fff; background: #0E6E63; }
.float-bar svg { width: 20px; height: 20px; }
@media (max-width: 640px) {
  .float-bar span { display: none; }
  .float-bar { padding: .95rem; }
}

.page-header {
  background:
    linear-gradient(90deg, rgba(16,32,51,.88), rgba(16,32,51,.55)),
    url("/assets/img/office-desk.png") center/cover no-repeat;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Print ---------- */
@media print {
  .site-header, .cta-band, .nav-toggle, .site-footer nav, .float-bar { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
  a::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
