/* =============================================
   IDEOLAWGICAL — Main Stylesheet v2.0
   Palette: Black #0f0f0f | White #fff | Gold #b8963e | Gold-dark #9a7c2e
   Font: Playfair Display (serif) + Inter (sans)
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0f0f0f;
  --black-soft: #1a1a1a;
  --white: #ffffff;
  --grey-light: #f7f7f5;
  --grey-mid: #e5e5e0;
  --grey-text: #666660;
  --gold: #b8963e;
  --gold-light: #d4af60;
  --gold-dark: #9a7c2e;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', 'Segoe UI', sans-serif;
  --max-w: 1120px;
  --nav-h: 72px;
  --radius: 2px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: var(--font-sans); }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.55rem); }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1rem; color: #3a3a38; line-height: 1.75; }
p:last-child { margin-bottom: 0; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.9rem;
}

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section-header { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--grey-text); max-width: 600px; margin: 0 auto; }
.divider { width: 48px; height: 2px; background: var(--gold); margin: 1.25rem auto 0; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 2px solid transparent;
  line-height: 1;
  cursor: pointer;
  position: relative;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,150,62,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: var(--black-soft);
  border-color: var(--black-soft);
  transform: translateY(-1px);
}
.btn-dark-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-dark-outline:hover { background: var(--black); color: var(--white); }

/* ============================================================
   HEADER / NAV — Dark premium bar
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--black);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img,
.nav-logo svg {
  height: 60px;
  width: auto;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  margin-left: 0.5rem;
}
.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.nav-logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav-logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links > li > a {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  padding: 0.5rem 0.75rem;
  transition: color var(--transition);
  display: block;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--gold-light);
}

/* Nav phone */
.nav-phone {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-phone a { color: var(--gold-light); }
.nav-phone a:hover { color: var(--white); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dropdown */
.nav-item-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-top: 3px solid var(--gold);
  min-width: 240px;
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  z-index: 9999;
}
/* Bridge the gap so cursor moving from link to dropdown doesn't lose hover */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.nav-dropdown a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.82rem;
  color: var(--black);
  transition: background var(--transition), color var(--transition), padding var(--transition);
  font-weight: 500;
  white-space: nowrap;
}
.nav-dropdown a:hover {
  background: var(--grey-light);
  color: var(--gold-dark);
  padding-left: 1.6rem;
}

/* Mobile nav */
@media (max-width: 960px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black-soft);
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 1.5rem 0 2rem;
    overflow-y: auto;
    z-index: 800;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85);
  }
  .nav-links > li:last-child > a { border-bottom: none; }
  .nav-dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.3);
    padding: 0.25rem 0;
    display: none;
  }
  .nav-dropdown a {
    padding: 0.75rem 2.25rem;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
  }
  .nav-dropdown a:hover { background: rgba(255,255,255,0.05); color: var(--gold-light); padding-left: 2.5rem; }
  .nav-item-dropdown.open .nav-dropdown { display: block; }
  .nav-item-dropdown:hover .nav-dropdown { opacity: 1; pointer-events: auto; }
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }
}
@media (max-width: 400px) {
  .nav-logo-text { display: none; }
  .nav-logo img, .nav-logo svg { height: 40px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--black);
  color: var(--white);
  padding: clamp(4rem, 12vw, 8rem) 0 clamp(3rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f0f0f 50%, #1c1609 100%);
}
.hero::after {
  content: '';
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(184,150,62,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero .section-label { color: var(--gold-light); }
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hero-tagline {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
@media (max-width: 400px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  padding: clamp(2rem, 5vw, 3rem) 0;
  border-bottom: 1px solid var(--grey-mid);
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}
.trust-item {
  padding: clamp(0.75rem, 2vw, 1rem) 0;
  border-right: 1px solid var(--grey-mid);
}
.trust-item:last-child { border-right: none; }
.trust-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.trust-item span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-text);
  line-height: 1.4;
}
@media (max-width: 480px) {
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid var(--grey-mid); }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--grey-mid); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* ============================================================
   PRACTICE AREAS GRID
   ============================================================ */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.practice-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.practice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.practice-card:hover {
  border-color: var(--grey-mid);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.practice-card:hover::before { transform: scaleX(1); }
.practice-card-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
}
.practice-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.practice-card h3 a:hover { color: var(--gold-dark); }
.practice-card > p { font-size: 0.875rem; color: var(--grey-text); margin-bottom: 1.25rem; }
.practice-card ul { margin-bottom: 1.5rem; flex: 1; }
.practice-card ul li {
  font-size: 0.84rem;
  color: #555;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--grey-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.practice-card ul li:last-child { border-bottom: none; }
.practice-card ul li::before { content: '›'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.card-link {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
}
.card-link::after { content: '→'; transition: transform var(--transition); }
.card-link:hover { color: var(--black); }
.card-link:hover::after { transform: translateX(3px); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us { background: var(--black); color: var(--white); }
.why-us .section-header h2 { color: var(--white); }
.why-us .section-header p { color: rgba(255,255,255,0.55); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.why-item {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  padding-right: 1rem;
}
.why-item-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.6;
}
.why-item h4 { color: var(--white); margin-bottom: 0.5rem; font-size: 1rem; }
.why-item p { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-bottom: 0; line-height: 1.65; }

/* ============================================================
   CLIENT LOGOS
   ============================================================ */
.clients-strip {
  background: var(--grey-light);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-top: 1px solid var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
}
.clients-strip h3 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-text);
  text-align: center;
  margin-bottom: 2rem;
}
.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  align-items: center;
}
.client-logo-item {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: #888;
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem;
  border: 1px solid var(--grey-mid);
  background: var(--white);
  transition: border-color var(--transition), color var(--transition);
}
.client-logo-item:hover { border-color: var(--gold); color: var(--black); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  border: 1px solid var(--grey-mid);
  padding: clamp(1.5rem, 3vw, 2rem);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.8;
  position: absolute;
  top: 1.5rem;
  left: 1.75rem;
  opacity: 0.3;
}
.testimonial-card p {
  font-size: 0.9rem;
  color: #444;
  font-style: italic;
  padding-top: 1.5rem;
}
.testimonial-author {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--black);
  padding: clamp(3rem, 8vw, 5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f0f0f 60%, #1c1609 100%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-note {
  margin-top: 1.25rem;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #080808;
  color: rgba(255,255,255,0.6);
  padding: clamp(3rem, 7vw, 5rem) 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
footer p { color: rgba(255,255,255,0.6); }
.footer-brand p { margin-top: 1rem; font-size: 0.86rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-brand .nav-logo-name { color: var(--white); }
.footer-brand .nav-logo-sub { color: var(--gold); }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact li {
  font-size: 0.84rem;
  margin-bottom: 0.8rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
}
.footer-contact li a { color: rgba(255,255,255,0.55); }
.footer-contact li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--gold); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-actions {
  position: fixed;
  right: 1.25rem;
  bottom: 1.5rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  border-radius: 2rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  color: var(--white);
}
.float-call { background: var(--black); border: 1px solid rgba(255,255,255,0.15); }
.float-wa { background: #25d366; }
.float-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
@media (max-width: 600px) {
  .float-btn span { display: none; }
  .float-btn {
    padding: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    justify-content: center;
  }
  .float-btn svg { width: 22px; height: 22px; }
  .float-actions { right: 1rem; bottom: 1rem; }
}

/* ============================================================
   PAGE HERO — inner pages
   ============================================================ */
.page-hero {
  background: var(--black);
  padding: clamp(3.5rem, 9vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f0f0f 55%, #1a160b 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--gold-light); }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero .breadcrumb {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.4); }
.page-hero .breadcrumb a:hover { color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 620px; }

/* ============================================================
   CONTENT PROSE
   ============================================================ */
.prose { max-width: 780px; }
.prose h2 { margin: 2.5rem 0 1rem; }
.prose h3 { margin: 2rem 0 0.75rem; }
.prose ul { margin: 1rem 0 1.5rem 1.25rem; list-style: disc; }
.prose ul li { margin-bottom: 0.5rem; color: #3a3a38; }
.prose ol { margin: 1rem 0 1.5rem 1.25rem; }
.prose ol li { margin-bottom: 0.5rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--grey-mid); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  background: none;
  border: none;
}
.faq-icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--grey-mid);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  color: var(--gold);
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.faq-a {
  display: none;
  padding: 0 0 1.25rem;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.75;
}
.faq-a.open { display: block; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about-photo-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--grey-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--grey-text);
  font-size: 0.85rem;
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--grey-mid);
}
.timeline {
  border-left: 2px solid var(--grey-mid);
  padding-left: 2rem;
  margin: 1.5rem 0 2rem;
}
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.55rem;
  top: 0.35rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-year {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.timeline-title { font-weight: 700; color: var(--black); margin-bottom: 0.2rem; }
.timeline-desc { font-size: 0.88rem; color: #555; }
@media (max-width: 768px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-photo-wrap { position: static; max-width: 280px; margin: 0 auto; }
}

/* ============================================================
   SERVICE LIST / TAGS
   ============================================================ */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.service-tag {
  background: var(--grey-light);
  border: 1px solid var(--grey-mid);
  padding: 0.7rem 1rem;
  font-size: 0.84rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: border-color var(--transition);
}
.service-tag::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.service-tag:hover { border-color: var(--gold); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  border: 1px solid var(--grey-mid);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.blog-card-body { padding: clamp(1.25rem, 3vw, 1.75rem); flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.75rem; line-height: 1.35; }
.blog-card h3 a:hover { color: var(--gold-dark); }
.blog-card p { font-size: 0.86rem; color: #555; flex: 1; }
.blog-card-footer {
  padding: 0.9rem 1.75rem;
  border-top: 1px solid var(--grey-mid);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.blog-card-footer a:hover { color: var(--black); }
.blog-card-footer::after { content: '→'; }

.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.blog-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.sidebar-card {
  border: 1px solid var(--grey-mid);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h4 {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 700;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--grey-mid);
}
.author-box {
  border-top: 1px solid var(--grey-mid);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.author-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--grey-light);
  border: 1px solid var(--grey-mid);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.author-info h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.author-info p { font-size: 0.84rem; color: #555; margin-bottom: 0; }
@media (max-width: 800px) {
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  width: 36px;
  height: 36px;
  background: var(--grey-light);
  border: 1px solid var(--grey-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.contact-detail h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.3rem; color: var(--black); }
.contact-detail p, .contact-detail a { font-size: 0.92rem; color: #444; }
.contact-detail a:hover { color: var(--gold-dark); }
.map-embed { margin-top: 2rem; }
.map-embed iframe { width: 100%; height: 260px; border: 1px solid var(--grey-mid); }
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* Contact Form */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: #555;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--grey-mid);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--black);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  border-radius: var(--radius);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}
.form-group input.error,
.form-group textarea.error { border-color: #c0392b; }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-error { font-size: 0.76rem; color: #c0392b; margin-top: 0.3rem; display: none; }
.form-error.show { display: block; }
.form-success {
  background: #f0faf4;
  border: 1px solid #a8d5b5;
  border-left: 3px solid #27ae60;
  padding: 1.25rem;
  font-size: 0.92rem;
  color: #1a5c32;
  display: none;
  margin-bottom: 1.5rem;
}
.form-success.show { display: block; }

/* ============================================================
   CLIENTS PAGE
   ============================================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.client-card {
  border: 1px solid var(--grey-mid);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.client-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.client-card h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.client-card p { font-size: 0.84rem; color: var(--grey-text); margin-bottom: 0; }

/* ============================================================
   404
   ============================================================ */
.not-found {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.not-found h1 { font-size: clamp(5rem, 15vw, 10rem); color: var(--grey-mid); margin-bottom: 0; }
.not-found h2 { margin-bottom: 1rem; }
.not-found p { color: var(--grey-text); margin-bottom: 2rem; }

/* ============================================================
   UTILITIES & ANIMATIONS
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.bg-grey { background: var(--grey-light); }

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  #site-header, .float-actions, footer { display: none; }
  body { color: #000; }
}
