*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ivory:       #F7F3EC;
  --ivory-dark:  #EDE8DF;
  --walnut:      #5C3D2E;
  --walnut-deep: #3E2518;
  --gold:        #B8960C;
  --gold-light:  #D4AE3A;
  --gold-pale:   #F0E4B0;
  --black:       #1A1714;
  --charcoal:    #2E2A26;
  --text-main:   #2E2A26;
  --text-muted:  #6B5E52;
  --text-light:  #9B8A7A;
  --border:      rgba(92,61,46,0.15);
  --border-gold: rgba(184,150,12,0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--ivory);
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.75;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* UTILITY */
.gold-line {
  display: block;
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 1.5rem;
}
.gold-line.left { margin-left: 0; }

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 90px 0; }

h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--walnut-deep);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(247, 243, 236, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-gold);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(92,61,46,0.12); }

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--walnut-deep);
  letter-spacing: 0.5px;
}
.nav-brand-tag {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 0.9rem;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1.5px;
  background: var(--gold);
  transition: left 0.25s, right 0.25s;
}
.nav-links a:hover { color: var(--walnut-deep); }
.nav-links a:hover::after { left: 0.9rem; right: 0.9rem; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--walnut-deep);
  color: var(--gold-pale) !important;
  padding: 0.48rem 1.1rem !important;
  border-radius: 2px;
  letter-spacing: 1.5px !important;
  margin-left: 0.5rem;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--walnut) !important; color: #fff !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--walnut-deep);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--ivory);
  border-top: 1px solid var(--border-gold);
  padding: 1rem 2rem 1.5rem;
  gap: 0.2rem;
}
.mobile-menu a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--walnut-deep); }
.mobile-menu.open { display: flex; }

/* HERO */
#home {
  padding-top: 68px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 80% 50%, rgba(184,150,12,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(92,61,46,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-ornament {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border: 1px solid rgba(184,150,12,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero-ornament::before {
  content: '';
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(184,150,12,0.09);
  border-radius: 50%;
}
.hero-ornament::after {
  content: '';
  position: absolute;
  inset: 56px;
  border: 1px solid rgba(184,150,12,0.06);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 5rem 2rem 4rem;
  margin: 0 auto 0 calc((100vw - 1100px) / 2);
  animation: heroIn 1s ease both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.6rem;
}
.hero-eyebrow-line { width: 36px; height: 1.5px; background: var(--gold); }
.hero-eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--walnut-deep);
  line-height: 1.18;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2.8rem;
}
.pill {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 5px 14px;
  border: 1px solid var(--border-gold);
  color: var(--walnut);
  border-radius: 2px;
  background: rgba(184,150,12,0.04);
  transition: background 0.2s, color 0.2s;
}
.pill:hover { background: var(--gold-pale); }

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  text-decoration: none;
  background: var(--walnut-deep);
  color: var(--gold-pale);
  padding: 0.75rem 2rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--walnut); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  text-decoration: none;
  border: 1.5px solid var(--walnut-deep);
  color: var(--walnut-deep);
  padding: 0.73rem 2rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-outline:hover { background: var(--walnut-deep); color: var(--gold-pale); transform: translateY(-1px); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: calc((100vw - 1100px) / 2 + 2rem);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  animation: fadeInUp 1.5s 0.8s both;
}
.scroll-line {
  width: 40px; height: 1px;
  background: var(--text-light);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scanLine 2s 1s infinite;
}
@keyframes scanLine {
  0% { left: -100%; }
  100% { left: 100%; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* DIVIDER */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

/* ABOUT */
#about { background: var(--ivory); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 420px;
}
.about-card-main {
  position: absolute;
  inset: 0;
  background: var(--walnut-deep);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  overflow: hidden;
}
.about-card-main::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border: 1px solid rgba(184,150,12,0.2);
  border-radius: 50%;
}
.about-card-main::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 180px; height: 180px;
  border: 1px solid rgba(184,150,12,0.12);
  border-radius: 50%;
}
.about-badge {
  position: absolute;
  top: 1.8rem; left: 1.8rem;
  background: var(--gold);
  color: var(--walnut-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.about-card-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(247,243,236,0.85);
  line-height: 1.5;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}
.about-card-quote-attr {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  position: relative;
  z-index: 1;
}

.about-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.about-body + .about-body { margin-top: -1rem; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 400;
}
.value-dot {
  flex-shrink: 0;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 7px;
}

/* ADVOCATE */
#advocate { background: var(--ivory-dark); }
.advocate-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}
.adv-card {
  background: var(--ivory);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: sticky;
  top: 90px;
}
.adv-monogram {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--walnut-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 3px solid var(--gold);
}
.adv-monogram span {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-pale);
  letter-spacing: 2px;
}
.adv-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--walnut-deep);
  margin-bottom: 0.3rem;
}
.adv-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.adv-divider {
  width: 100%;
  height: 1px;
  background: var(--border-gold);
  margin: 1.5rem 0;
}
.adv-forums { text-align: left; }
.adv-forums-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  display: block;
}
.adv-forum-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.adv-forum-list li {
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.adv-forum-list li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.adv-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.adv-body + .adv-body { margin-top: -1rem; }
.adv-areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2.5rem;
}
.adv-tag {
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 13px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--walnut);
  background: rgba(92,61,46,0.04);
}
.adv-beliefs {
  background: var(--walnut-deep);
  border-radius: 4px;
  padding: 2rem 2.2rem;
}
.adv-beliefs h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-pale);
  margin-bottom: 1.2rem;
}
.adv-beliefs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.adv-beliefs-list li {
  font-size: 13px;
  color: rgba(247,243,236,0.75);
  display: flex;
  align-items: center;
  gap: 10px;
}
.adv-beliefs-list li::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--gold-light);
  flex-shrink: 0;
}

.about-closing {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--walnut);
  line-height: 1.7;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
  margin: 2rem 0;
}

/* CHAMBER & ASSOCIATES */
#chamber { background: var(--ivory); }
.chamber-intro {
  max-width: 720px;
  margin-bottom: 3rem;
}
.chamber-lead {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-top: 1rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.team-card {
  background: var(--ivory-dark);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 1.8rem 1.6rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.team-card:hover {
  transform: translateY(-2px);
  background: var(--ivory);
  box-shadow: 0 6px 24px rgba(92,61,46,0.08);
}
.team-monogram {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--walnut-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 2px solid var(--gold);
}
.team-monogram span {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-pale);
  letter-spacing: 1.5px;
}
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--walnut-deep);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.team-role {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
}
.team-extras {
  text-align: center;
  padding: 1.5rem 1rem;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.team-extras-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}
.team-extras-list {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}
.team-extras-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--walnut);
}
.team-extras-divider {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* PRACTICE AREAS */
#practice { background: var(--ivory); }
.practice-intro {
  max-width: 600px;
  margin-bottom: 3.5rem;
}
.practice-intro p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
}
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border-gold);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  overflow: hidden;
}
.practice-card {
  background: var(--ivory);
  padding: 2rem 1.8rem;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.practice-card::before {
  content: attr(data-num);
  position: absolute;
  top: 1rem; right: 1.4rem;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(184,150,12,0.08);
  line-height: 1;
  pointer-events: none;
  transition: color 0.25s;
}
.practice-card:hover { background: var(--gold-pale); }
.practice-card:hover::before { color: rgba(184,150,12,0.16); }
.practice-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--walnut-deep);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.practice-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.practice-card ul li {
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.5;
}
.practice-card ul li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* COURTS */
#courts { background: var(--walnut-deep); padding: 80px 0; }
.courts-inner { text-align: center; }
.courts-inner .section-label { color: var(--gold-light); }
.courts-inner .section-title { color: var(--gold-pale); margin-bottom: 3rem; }
.courts-inner .gold-line {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 2.5rem;
}

.courts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.court-chip {
  border: 1px solid rgba(184,150,12,0.3);
  color: rgba(247,243,236,0.8);
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: default;
}
.court-chip:hover {
  background: rgba(184,150,12,0.12);
  color: var(--gold-pale);
  border-color: rgba(184,150,12,0.5);
}

/* WHY US */
#why { background: var(--ivory-dark); }
.why-heading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border-gold);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 3.5rem;
}
.why-card {
  background: var(--ivory-dark);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: background 0.25s;
}
.why-card:hover { background: var(--ivory); }
.why-icon {
  width: 44px; height: 44px;
  border: 1.5px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: rgba(184,150,12,0.05);
}
.why-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--walnut-deep);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.why-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* DISCLAIMER BAR */
.disclaimer-bar {
  background: var(--ivory-dark);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 1.5rem 0;
}
.disclaimer-bar p {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  font-size: 11.5px;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  text-align: center;
}
.disclaimer-bar strong { color: var(--text-muted); font-style: normal; }

/* CONTACT */
#contact { background: var(--ivory); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.2rem;
}
.contact-detail-icon {
  width: 36px; height: 36px;
  background: rgba(184,150,12,0.08);
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.contact-detail-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 2px;
}
.contact-detail-value {
  font-size: 14px;
  color: var(--text-main);
  font-weight: 400;
}
.contact-link {
  color: var(--walnut-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.contact-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.contact-note {
  margin-top: 1.8rem;
  padding: 1rem 1.4rem;
  border-left: 2px solid var(--gold);
  background: rgba(184,150,12,0.04);
  font-size: 12.5px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
}

.contact-form-card {
  background: var(--ivory-dark);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 2.5rem 2rem;
}
.contact-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--walnut-deep);
  margin-bottom: 1.8rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--ivory);
  color: var(--text-main);
  padding: 0.65rem 0.9rem;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%;
  background: var(--walnut-deep);
  color: var(--gold-pale);
  border: none;
  padding: 0.85rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
  font-family: 'Lato', sans-serif;
}
.form-submit:hover:not(:disabled) { background: var(--walnut); }
.form-submit:disabled { opacity: 0.6; cursor: wait; }
.form-privacy {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 0.8rem;
  text-align: center;
  font-style: italic;
}
.form-status {
  margin-top: 0.8rem;
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  min-height: 1.2em;
}
.form-status.success { color: #2d6a3f; }
.form-status.error   { color: #a8322c; }

/* Honeypot — hidden from real users, visible to bots */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: waBounce 3s 2s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes waBounce {
  0%, 70%, 100% { transform: scale(1); }
  80% { transform: scale(1.08); }
  90% { transform: scale(0.97); }
}

/* FOOTER */
footer {
  background: var(--black);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-pale);
  margin-bottom: 0.3rem;
}
.footer-brand-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.footer-tagline {
  color: rgba(247,243,236,0.45);
  line-height: 1.75;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact a {
  text-decoration: none;
  font-size: 12.5px;
  color: rgba(247,243,236,0.55);
  transition: color 0.2s;
  letter-spacing: 0.2px;
}
.footer-contact a:hover { color: var(--gold-pale); }
.footer-col h4 {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-links a {
  text-decoration: none;
  font-size: 12.5px;
  color: rgba(247,243,236,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-pale); }
.footer-bottom {
  border-top: 1px solid rgba(184,150,12,0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 11.5px;
  color: rgba(247,243,236,0.3);
}
.footer-website {
  font-size: 11.5px;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { height: 280px; order: -1; }
  .advocate-inner { grid-template-columns: 1fr; }
  .adv-card { position: static; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .hero-inner { padding: 3.5rem 1.5rem 3rem; margin: 0; }
  .hero-ornament { display: none; }
  .hero-scroll-hint { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .practice-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
}
