/* ═══════════════════════════════════════
   AVENOR LEGAL — SHARED STYLESHEET v2
   Palette: Deep Charcoal · Gold · Silver
   ═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  --charcoal:      #111111;
  --charcoal-mid:  #1a1a1a;
  --charcoal-soft: #222222;
  --charcoal-card: #1e1e1e;
  --gold:          #c9a84c;
  --gold-light:    #e8c97a;
  --gold-pale:     #f5e9c8;
  --silver:        #c8cdd4;
  --silver-light:  #e0e4e9;
  --silver-pale:   #f0f2f4;
  --parchment:     #f5ede0;
  --ink:           #1c1410;
  --ink-mid:       #3d3530;
  --ink-light:     #6b5f58;
  --white:         #ffffff;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--charcoal); color: var(--white); overflow-x: hidden; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
a { color: inherit; }

/* ── BANNER ── */
.top-banner {
  background: linear-gradient(90deg, #111111, #1a1a1a, #111111);
  border-bottom: 1px solid rgba(201,168,76,0.4);
  color: var(--silver-light);
  text-align: center; padding: 9px 20px;
  font-size: 11px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase;
}
.top-banner a { color: var(--gold-light); font-weight: 700; text-decoration: underline; }

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px; height: 80px;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  transition: height 0.35s ease;
}
nav.scrolled { height: 64px; }

.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo-img { height: 48px; width: auto; object-fit: contain; }
.nav-wordmark { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.nav-firm {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 600;
  background: linear-gradient(135deg, var(--silver-light) 0%, var(--silver) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}
.nav-tagline { font-size: 8px; font-weight: 500; color: var(--gold); letter-spacing: 3.5px; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-menu a {
  font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.6); text-decoration: none;
  transition: color 0.3s; position: relative; padding-bottom: 2px;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold-light); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }
.nav-btn {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 9px 24px !important;
  font-size: 10px !important; font-weight: 600 !important;
  transition: all 0.3s !important;
}
.nav-btn:hover { background: var(--gold) !important; color: var(--charcoal) !important; }
.nav-btn::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1.5px; background: var(--gold); transition: all 0.3s; }

.mob-nav {
  display: none; position: fixed; inset: 0;
  background: rgba(10,10,10,0.99); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 30px;
}
.mob-nav.open { display: flex; }
.mob-nav a { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 400; color: rgba(255,255,255,0.8); text-decoration: none; letter-spacing: 1px; transition: color 0.3s; }
.mob-nav a:hover { color: var(--gold-light); }
.mob-close { position: absolute; top: 22px; right: 24px; font-size: 26px; color: var(--gold); background: none; border: none; cursor: pointer; }

/* ══════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════ */
.pg-hero {
  padding: 80px 64px 90px;
  background: var(--charcoal-mid);
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.pg-hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 65%);
}
.pg-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 9px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.pg-hero-badge::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.pg-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px,6vw,72px); font-weight: 400; line-height: 1.08; color: var(--white);
}
.pg-hero-title em { font-style: italic; color: var(--gold-light); }
.pg-hero-sub {
  font-family: 'EB Garamond', serif;
  font-size: 19px; font-style: italic; color: rgba(255,255,255,0.45);
  margin-top: 18px; max-width: 520px; line-height: 1.6;
}

/* ══════════════════════════════════
   SHARED UTILITIES
══════════════════════════════════ */
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 9px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.badge::before { content: ''; width: 22px; height: 1px; background: var(--gold); }

.display-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px,4.5vw,54px); font-weight: 400; line-height: 1.12; color: var(--white);
}
.display-title em { font-style: italic; color: var(--gold-light); }
.display-title-dark { color: var(--ink); }
.display-title-dark em { color: var(--gold); }

.rule { width: 44px; height: 1px; background: var(--gold); margin: 20px 0; }
.rule-center { margin: 20px auto; }

.prose { font-family: 'EB Garamond', serif; font-size: 18px; font-weight: 400; line-height: 1.85; color: rgba(255,255,255,0.55); }

/* ── BUTTONS ── */
.btn-a {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--charcoal); padding: 14px 36px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.btn-a:hover { box-shadow: 0 6px 28px rgba(201,168,76,0.4); transform: translateY(-1px); }
.btn-a span { position: relative; z-index: 1; }

.btn-b {
  display: inline-block; background: transparent;
  color: rgba(255,255,255,0.7); padding: 14px 36px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.2); cursor: pointer;
  transition: all 0.3s;
}
.btn-b:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-outline-dark {
  display: inline-block; background: transparent;
  color: var(--gold); padding: 13px 32px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--gold); cursor: pointer; transition: all 0.3s;
}
.btn-outline-dark:hover { background: var(--gold); color: var(--charcoal); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: var(--charcoal-mid);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 64px 64px 28px;
}
.ft-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 50px; }
.ft-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.ft-logo-img { height: 40px; width: auto; }
.ft-brand-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; background: linear-gradient(135deg, var(--silver-light), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.ft-brand-tag { font-size: 8px; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.ft-brand-desc { font-family: 'EB Garamond', serif; font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.28); max-width: 270px; }
.ft-col-head { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-links a { font-family: 'EB Garamond', serif; font-size: 16px; color: rgba(255,255,255,0.32); text-decoration: none; transition: color 0.3s; }
.ft-links a:hover { color: var(--gold-light); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.ft-copy { font-size: 11px; color: rgba(255,255,255,0.18); }
.ft-legal { display: flex; gap: 22px; }
.ft-legal a { font-size: 11px; color: rgba(255,255,255,0.18); text-decoration: none; transition: color 0.3s; }
.ft-legal a:hover { color: var(--gold); }

/* ══════════════════════════════════
   HOME PAGE
══════════════════════════════════ */
.hero {
  min-height: calc(100vh - 90px);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  background: var(--charcoal);
  padding: 90px 64px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero-left::after {
  content: '';
  position: absolute; top: 0; right: -40px; bottom: 0; width: 80px;
  background: var(--charcoal);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: 3;
}
.hero-right {
  background: var(--charcoal-soft);
  position: relative; overflow: hidden;
}
.hero-right-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(201,168,76,0.03) 0, rgba(201,168,76,0.03) 1px, transparent 0, transparent 50%);
  background-size: 28px 28px;
}
.hero-right-accent {
  position: absolute; bottom: -80px; right: -80px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.09) 0%, transparent 65%);
}
.hero-right-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 48px;
}
.hero-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  animation: fadeUp 0.8s ease 0.15s both;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5.5vw, 78px); font-weight: 400; line-height: 1.04;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-h1 em { font-style: italic; color: var(--gold-light); }
.hero-rule {
  width: 56px; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 32px 0; animation: growW 0.8s ease 0.5s both;
}
@keyframes growW { from { width: 0 } to { width: 56px; } }
.hero-desc {
  font-family: 'EB Garamond', serif;
  font-size: 19px; line-height: 1.8; color: rgba(255,255,255,0.52); max-width: 460px;
  animation: fadeUp 0.8s ease 0.62s both;
}
.hero-actions { display: flex; gap: 16px; margin-top: 44px; flex-wrap: wrap; animation: fadeUp 0.8s ease 0.78s both; }
.hero-stats { display: flex; gap: 0; margin-top: 64px; animation: fadeUp 0.8s ease 0.9s both; }
.hstat { padding: 0 36px 0 0; margin-right: 36px; border-right: 1px solid rgba(201,168,76,0.25); }
.hstat:last-child { border-right: none; }
.hstat-n { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 400; color: var(--gold-light); line-height: 1; }
.hstat-l { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-top: 5px; }

.hero-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 22px 26px; margin-bottom: 12px;
  transition: all 0.3s; cursor: default;
}
.hero-card:hover { background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.3); }
.hero-card-num { font-size: 9px; font-weight: 600; color: var(--gold); letter-spacing: 3px; margin-bottom: 6px; }
.hero-card-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 500; color: var(--white); }
.hero-card-desc { font-family: 'EB Garamond', serif; font-size: 14px; color: rgba(255,255,255,0.35); margin-top: 4px; line-height: 1.5; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* HOME — ABOUT STRIP */
.home-about { background: var(--parchment); padding: 100px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ha-quote-block { background: var(--charcoal); padding: 52px 44px; position: relative; }
.ha-quote-block::before { content: ''; position: absolute; top: -8px; left: 8px; right: -8px; bottom: 8px; border: 1px solid rgba(201,168,76,0.2); z-index: 0; }
.ha-quote-inner { position: relative; z-index: 1; }
.ha-opening { font-family: 'Playfair Display', serif; font-size: 72px; color: var(--gold); opacity: 0.25; line-height: 0.6; margin-bottom: 16px; }
.ha-quote-text { font-family: 'EB Garamond', serif; font-size: 21px; font-style: italic; line-height: 1.65; color: rgba(255,255,255,0.82); margin-bottom: 28px; }
.ha-vals { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ha-val { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 8px; }
.ha-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* HOME — PRACTICE STRIP */
.home-practice { background: var(--charcoal); padding: 100px 64px; }
.hp-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 56px; }
.hp-intro-desc { font-family: 'EB Garamond', serif; font-size: 18px; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 320px; }
.hp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(201,168,76,0.1); }
.hp-tile { background: var(--charcoal-mid); padding: 38px 30px; transition: all 0.35s; cursor: default; position: relative; overflow: hidden; }
.hp-tile::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.hp-tile:hover { background: var(--charcoal-soft); transform: translateY(-3px); }
.hp-tile:hover::before { transform: scaleX(1); }
.hp-tile-icon { font-size: 26px; margin-bottom: 16px; }
.hp-tile-name { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 500; color: var(--white); margin-bottom: 10px; }
.hp-tile-desc { font-family: 'EB Garamond', serif; font-size: 15px; color: rgba(255,255,255,0.38); line-height: 1.65; }

/* HOME CTA */
.home-cta {
  background: var(--charcoal-mid);
  padding: 90px 64px; text-align: center;
  border-top: 1px solid rgba(201,168,76,0.15);
  position: relative; overflow: hidden;
}
.home-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.05) 0%, transparent 65%);
}
.hcta-title { font-family: 'Playfair Display', serif; font-size: clamp(28px,4vw,50px); font-weight: 400; line-height: 1.2; color: var(--white); margin-bottom: 14px; position: relative; }
.hcta-title em { font-style: italic; color: var(--gold-light); }
.hcta-sub { font-family: 'EB Garamond', serif; font-size: 18px; color: rgba(255,255,255,0.4); margin-bottom: 40px; position: relative; }
.btn-cta-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--charcoal); padding: 15px 44px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none; transition: all 0.3s; position: relative;
}
.btn-cta-gold:hover { box-shadow: 0 8px 32px rgba(201,168,76,0.35); transform: translateY(-1px); }

/* ══════════════════════════════════
   ABOUT PAGE
══════════════════════════════════ */
.about-values { background: var(--charcoal-mid); padding: 100px 64px; }
.avl-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.avl-card { border: 1px solid rgba(201,168,76,0.12); padding: 38px 30px; transition: all 0.35s; cursor: default; }
.avl-card:hover { border-color: rgba(201,168,76,0.35); background: rgba(201,168,76,0.04); transform: translateY(-3px); }
.avl-icon { font-size: 28px; margin-bottom: 18px; }
.avl-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 500; color: var(--white); margin-bottom: 12px; }
.avl-desc { font-family: 'EB Garamond', serif; font-size: 16px; color: rgba(255,255,255,0.4); line-height: 1.7; }

/* ══════════════════════════════════
   PRACTICE PAGE
══════════════════════════════════ */
.practice-pg { background: var(--charcoal); padding: 100px 64px; }
.prc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(201,168,76,0.08); }
.prc-card { background: var(--charcoal-mid); padding: 52px 44px; position: relative; overflow: hidden; transition: all 0.4s; }
.prc-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.prc-card:hover { background: var(--charcoal-soft); }
.prc-card:hover::after { transform: scaleX(1); }
.prc-n { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 400; color: rgba(201,168,76,0.08); line-height: 1; margin-bottom: 14px; }
.prc-icon { font-size: 28px; margin-bottom: 14px; }
.prc-name { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 500; color: var(--white); margin-bottom: 14px; }
.prc-desc { font-family: 'EB Garamond', serif; font-size: 17px; color: rgba(255,255,255,0.43); line-height: 1.75; }
.prc-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.prc-list li { font-family: 'EB Garamond', serif; font-size: 15px; color: rgba(255,255,255,0.3); padding-left: 18px; position: relative; }
.prc-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); opacity: 0.5; }
.prc-cta { background: var(--charcoal-mid); padding: 80px 64px; text-align: center; border-top: 1px solid rgba(201,168,76,0.1); }

/* ══════════════════════════════════
   CONTACT PAGE
══════════════════════════════════ */
.contact-pg { background: var(--parchment); padding: 100px 64px; }
.ct-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.ct-desc { font-family: 'EB Garamond', serif; font-size: 18px; line-height: 1.8; color: var(--ink-mid); margin-bottom: 40px; }
.ct-items { display: flex; flex-direction: column; gap: 22px; }
.ct-item { display: flex; align-items: flex-start; gap: 16px; }
.ct-icon { width: 44px; height: 44px; flex-shrink: 0; border: 1px solid rgba(201,168,76,0.35); background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--gold); }
.ct-lbl { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.ct-val { font-family: 'EB Garamond', serif; font-size: 17px; color: var(--ink); line-height: 1.5; }
.ct-val a { color: inherit; text-decoration: none; }
.cf-wrap { background: var(--charcoal); padding: 52px; }
.cf-h { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 400; color: var(--white); margin-bottom: 6px; }
.cf-sub { font-family: 'EB Garamond', serif; font-size: 15px; color: rgba(255,255,255,0.3); margin-bottom: 34px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.f-grp { margin-bottom: 14px; }
.f-grp label { display: block; font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 8px; }
.f-grp input, .f-grp select, .f-grp textarea { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.15); color: var(--white); padding: 12px 14px; font-size: 14px; font-family: 'EB Garamond', serif; outline: none; resize: none; transition: border-color 0.3s; }
.f-grp input:focus, .f-grp select:focus, .f-grp textarea:focus { border-color: rgba(201,168,76,0.45); }
.f-grp select option { background: var(--charcoal); }
.f-grp textarea { height: 110px; }
.f-submit { width: 100%; padding: 15px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--charcoal); border: none; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; cursor: pointer; margin-top: 6px; transition: all 0.3s; }
.f-submit:hover { box-shadow: 0 6px 24px rgba(201,168,76,0.3); transform: translateY(-1px); }
.f-note { font-family: 'EB Garamond', serif; font-size: 14px; color: rgba(255,255,255,0.2); margin-top: 12px; text-align: center; line-height: 1.6; }
.map-sec { background: var(--charcoal-mid); padding: 80px 64px; }
.map-box { margin-top: 40px; background: var(--charcoal); border: 1px solid rgba(201,168,76,0.1); height: 260px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.map-icon { font-size: 36px; opacity: 0.3; }
.map-addr { font-family: 'EB Garamond', serif; font-size: 16px; color: rgba(255,255,255,0.28); text-align: center; line-height: 1.6; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 980px) {
  nav { padding: 0 24px; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 70px 24px 60px; }
  .hero-left::after { display: none; }
  .hero-right { display: none; }
  .home-about { grid-template-columns: 1fr; padding: 70px 24px; gap: 40px; }
  .home-practice { padding: 70px 24px; }
  .hp-intro { flex-direction: column; align-items: flex-start; }
  .hp-grid { grid-template-columns: 1fr 1fr; }
  .home-cta { padding: 70px 24px; }
  .pg-hero { padding: 60px 24px 70px; }
  .about-values { padding: 70px 24px; }
  .avl-grid { grid-template-columns: 1fr 1fr; }
  .practice-pg { padding: 70px 24px; }
  .prc-grid { grid-template-columns: 1fr; }
  .prc-cta { padding: 60px 24px; }
  .contact-pg { padding: 70px 24px; }
  .ct-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-sec { padding: 60px 24px; }
  footer { padding: 50px 24px 24px; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hstat { border-right: none; }
}
@media (max-width: 560px) {
  .hp-grid { grid-template-columns: 1fr; }
  .avl-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .cf-wrap { padding: 28px 20px; }
}
