/* ===================== TOKENS ===================== */
:root {
  --black: #0B0B0C;
  --black-soft: #201A0C;
  --charcoal: #17171A;
  --gold: #D4AF37;
  --gold-light: #F1D97A;
  --gold-deep: #8A6B12;
  --cream: #FBF7EE;
  --cream-dim: #F2EAD6;
  --ink: #1A1710;
  --ink-soft: #5C5646;
  --white: #FFFFFF;
  --border: rgba(20, 16, 8, 0.12);
  --border-gold: rgba(212, 175, 55, 0.35);
  --shadow: 0 20px 45px -20px rgba(11, 11, 12, 0.35);
  --shadow-gold: 0 16px 34px -14px rgba(212, 175, 55, 0.55);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--black); margin: 0 0 .5em; line-height: 1.15; }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--gold-light); }

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p { font-size: 1.05rem; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -14px rgba(212, 175, 55, 0.7); }
.btn-ghost {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}
.btn-ghost:hover { background: var(--black); color: var(--gold-light); border-color: var(--black); }
.btn-ghost-light {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn-ghost-light:hover { background: var(--gold); color: var(--black); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 12, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-gold);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-size: 1.2rem; color: var(--gold-light); font-weight: 700; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #0B0B0C;
  border: 1px solid var(--border-gold);
  padding: 6px;
}
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-name { color: var(--white); font-weight: 800; letter-spacing: 0.01em; }
.brand-name em { color: var(--gold-light); font-style: normal; }

/* ===================== FULL LOGO LOCKUP (footer) ===================== */
.logo-lockup { display: flex; align-items: flex-start; gap: 18px; }
.logo-lockup .brand-mark { width: 64px; height: 64px; border-radius: 14px; padding: 10px; }
.logo-lockup-text { display: flex; flex-direction: column; }
.logo-wordmark {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.logo-subtitle {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}
.logo-rule { width: 60px; height: 2px; background: var(--gold); margin: 10px 0 8px; border: none; }
.logo-tagline { font-style: italic; font-size: 0.85rem; color: var(--gold-light); }

.hero-logo { display: flex; justify-content: center; padding-top: 40px; margin-bottom: 40px; }
.hero-logo .brand-mark { width: 72px; height: 72px; border-radius: 16px; padding: 12px; }
.hero-logo .logo-wordmark { font-size: 1.7rem; }
.hero-logo .logo-tagline { font-size: 0.9rem; }
.main-nav { display: flex; gap: 30px; }
.main-nav a { font-weight: 500; font-size: 0.95rem; color: rgba(255,255,255,0.82); position: relative; padding: 4px 0; white-space: nowrap; }
.main-nav a:hover, .main-nav a.active { color: var(--gold-light); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.phone-link { font-weight: 600; font-size: 0.9rem; color: var(--gold-light); white-space: nowrap; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }

@media (max-width: 1040px) {
  .main-nav { gap: 16px; }
  .main-nav a { font-size: 0.88rem; }
  .phone-link { display: none; }
  .brand-name { font-size: 1.05rem; }
}

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, var(--black-soft), var(--black) 65%);
  padding: 90px 0 70px;
  text-align: center;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(212,175,55,0.18), transparent 55%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 18px; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { text-decoration: underline; }

/* ===================== HERO (home) ===================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
  background: radial-gradient(circle at 15% 15%, var(--black-soft), var(--black) 60%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.28;
  z-index: 0;
}
.blob-1 { width: 420px; height: 420px; background: radial-gradient(circle, var(--gold), transparent 70%); top: -120px; right: -100px; }
.blob-2 { width: 340px; height: 340px; background: radial-gradient(circle, var(--gold-light), transparent 70%); bottom: -140px; left: -80px; opacity: 0.18; }
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}
.hero-copy h1 { color: var(--white); font-size: clamp(2.2rem, 4.2vw, 3.4rem); }
.hero-lead { color: rgba(255,255,255,0.72); font-size: 1.1rem; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-rating { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: rgba(255,255,255,0.65); }
.hero-rating .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.1rem; }

.hero-visual { position: relative; height: 420px; display: flex; align-items: center; justify-content: center; }
.hero-portrait {
  position: relative;
  width: 300px;
  height: 360px;
  border-radius: 30px;
  background: linear-gradient(160deg, var(--gold), var(--gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}
.portrait-ring {
  position: absolute;
  inset: -14px;
  border: 2px dashed var(--gold-light);
  border-radius: 40px;
  opacity: 0.5;
}
.portrait-inner {
  font-family: var(--font-head);
  font-size: 3.2rem;
  color: var(--black);
  font-weight: 700;
}
/* ===================== TRUST STRIP ===================== */
.trust-strip { background: var(--black); padding: 34px 0; border-top: 1px solid var(--border-gold); border-bottom: 1px solid var(--border-gold); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 20px; }
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-item strong { font-family: var(--font-head); font-size: 1.9rem; color: var(--gold-light); }
.trust-item span { font-size: 0.85rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.06em; }

/* ===================== ABOUT ===================== */
.about { padding: 100px 0; }
.about-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: center; }
.about-photo { position: relative; width: 100%; max-width: 340px; margin: 0 auto; aspect-ratio: 3/4; }
.ap-ring { position: absolute; inset: -16px; border-radius: var(--radius-lg); border: 2px solid var(--gold); opacity: 0.45; }
.ap-frame {
  height: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--black-soft), var(--black));
  display: flex;
  align-items: flex-end;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-gold);
}
.ap-frame span { font-family: var(--font-head); font-weight: 700; color: var(--gold-light); font-size: 1.1rem; }
.about-points { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.about-points li { position: relative; padding-left: 26px; color: var(--ink); font-weight: 500; }
.about-points li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-deep); font-weight: 700; }

.about-cta {
  margin-top: 26px;
}

/* Values / story blocks used on About page */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 30px 26px; }
.value-card .pa-icon { margin-bottom: 16px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.92rem; margin: 0; }

.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.timeline-item { display: grid; grid-template-columns: 100px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.timeline-item:last-child { border-bottom: none; }
.timeline-year { font-family: var(--font-head); font-weight: 700; color: var(--gold-deep); font-size: 1.15rem; }
.timeline-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.timeline-item p { margin: 0; font-size: 0.92rem; }

/* ===================== PRACTICE AREAS ===================== */
.practice-areas { padding: 100px 0; background: var(--cream-dim); }
.pa-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.pa-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pa-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); border-color: var(--border-gold); }
.pa-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  margin-bottom: 16px;
}
.pa-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.pa-card p { font-size: 0.92rem; margin: 0; }
.pa-card .pa-list { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.pa-card .pa-list li { font-size: 0.85rem; color: var(--ink-soft); position: relative; padding-left: 18px; }
.pa-card .pa-list li::before { content: "—"; position: absolute; left: 0; color: var(--gold-deep); }

.section-cta { text-align: center; margin-top: 50px; }

/* ===================== WHY US ===================== */
.why-us { padding: 100px 0; }
.why-copy { text-align: center; max-width: 800px; margin: 0 auto; }
.why-copy h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; text-align: left; }
.why-item { background: var(--cream-dim); border-radius: var(--radius-md); padding: 26px; border: 1px solid var(--border); }
.why-num { font-family: var(--font-head); font-size: 1.6rem; color: var(--gold-deep); margin-bottom: 10px; }
.why-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.why-item p { font-size: 0.9rem; margin: 0; }

/* ===================== REVIEWS ===================== */
.reviews { padding: 100px 0; background: var(--cream-dim); }
.reviews-summary { display: flex; justify-content: center; margin-bottom: 48px; }
.rs-score {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 44px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-gold);
  flex-wrap: wrap;
  justify-content: center;
}
.rs-number { font-family: var(--font-head); font-size: 2.6rem; color: var(--black); font-weight: 700; }
.rs-stars { color: var(--gold); font-size: 1.4rem; letter-spacing: 2px; }
.rs-count { color: var(--ink-soft); font-size: 0.9rem; }

.reviews-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: start; }
.reviews-list { display: flex; flex-direction: column; gap: 18px; max-height: 560px; overflow-y: auto; padding-right: 6px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  border: 1px solid var(--border);
}
.review-card .review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.review-card .review-name { font-weight: 600; color: var(--black); }
.review-card .review-stars { color: var(--gold); letter-spacing: 1px; }
.review-card .review-date { font-size: 0.78rem; color: var(--ink-soft); display: block; margin-top: 2px; }
.review-card p { margin: 0; font-size: 0.95rem; }
.reviews-loading, .reviews-empty { color: var(--ink-soft); font-style: italic; }

.review-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-gold);
  position: sticky;
  top: 100px;
}
.review-form-wrap h3 { font-size: 1.2rem; margin-bottom: 18px; }
.review-form { display: flex; flex-direction: column; gap: 6px; }
.review-form label { font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-top: 10px; }
.review-form input[type="text"], .review-form textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
  background: var(--cream);
}
.review-form input:focus, .review-form textarea:focus,
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.18);
}
.star-picker { display: flex; gap: 6px; }
.star-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #DDD3B8;
  cursor: pointer;
  transition: color .15s ease, transform .15s ease;
  line-height: 1;
  padding: 2px;
}
.star-btn:hover { transform: scale(1.12); }
.star-btn.active { color: var(--gold); }
.review-form .btn { margin-top: 16px; }
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 10px; min-height: 1.2em; }
.form-note.error { color: #B3261E; }
.form-note.success { color: #1E7A4D; }

/* ===================== CONTACT / LOCATION ===================== */
.contact { background: var(--black); padding: 100px 0; color: var(--white); }
.contact-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; }
.contact-info h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.3rem); }
.contact-info p { color: rgba(255,255,255,0.7); }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.contact-details li { color: rgba(255,255,255,0.88); font-size: 0.95rem; }
.contact-details a { color: var(--gold-light); font-weight: 600; }
.ci-label { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-deep); margin-bottom: 2px; }

.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
}
.inquiry-form textarea { resize: vertical; }
.inquiry-form .form-field:last-of-type { margin-bottom: 0; }
.inquiry-form { display: flex; flex-direction: column; }

/* Map / location block */
.location-section { padding: 100px 0; }
.location-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow);
  min-height: 380px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.location-details {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-details h2 { color: var(--white); }
.location-details p { color: rgba(255,255,255,0.7); }
.location-list { display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }
.location-list li { color: rgba(255,255,255,0.9); font-size: 0.95rem; }
.location-directions-btn { margin-top: 26px; align-self: flex-start; }

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: linear-gradient(120deg, var(--black), var(--black-soft));
  padding: 70px 0;
  text-align: center;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 60px 0 0; border-top: 1px solid var(--border-gold); }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .brand-name { color: var(--white); font-size: 1.15rem; font-family: var(--font-head); font-weight: 700; }
.footer-brand p { margin-top: 10px; font-size: 0.88rem; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.footer-col h4 { color: var(--gold-light); font-size: 0.95rem; margin-bottom: 14px; font-family: var(--font-body); }
.footer-col a, .footer-col span { display: block; font-size: 0.88rem; margin-bottom: 10px; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; font-size: 0.82rem; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .hero-inner, .about-inner, .contact-inner, .footer-inner, .location-layout { grid-template-columns: 1fr; }
  .reviews-layout { grid-template-columns: 1fr; }
  .review-form-wrap { position: static; }
  .hero-visual { height: 320px; }
  .why-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .timeline-item { grid-template-columns: 80px 1fr; }
}
@media (max-width: 760px) {
  .main-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .main-nav {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--black); padding: 20px 24px; border-bottom: 1px solid var(--border-gold); gap: 16px;
  }
  .site-header.nav-open .nav-cta {
    display: flex; flex-direction: column; align-items: flex-start; position: absolute; top: calc(100% + 210px); left: 0; right: 0;
    background: var(--black); padding: 0 24px 20px;
  }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .why-grid, .footer-cols, .values-grid { grid-template-columns: 1fr; }
  .hero-visual { height: auto; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
}

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.45);
  z-index: 200;
  transition: transform .18s ease, box-shadow .18s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 32px -6px rgba(0, 0, 0, 0.55); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #FFFFFF; }
@media (max-width: 760px) {
  .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}
