/* ── N. Goje & Co — Shared Stylesheet ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #111111;
  --black-deep: #000000;
  --black-mid:  #1A1A1A;
  --gold:       #C9A035;
  --gold-lt:    #D4AE45;
  --gold-pale:  #FBF5E0;
  --white:      #FFFFFF;
  --off-white:  #F5F5F5;
  --border:     #E0E0E0;
  --muted:      #666666;
  --body:       #222222;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.08);
  --shadow-md:  0 4px 18px rgba(0,0,0,.12);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.16);
  --radius:     8px;
  --max-w:      1120px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

:is(h1, h2, h3, h4) {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--black);
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── HEADER ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-wrap img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-family: Georgia, serif;
  font-size: 17px;
  color: var(--black);
  letter-spacing: .02em;
}

.logo-text span {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  padding: 8px 13px;
  border-radius: 5px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active { background: var(--off-white); color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-gold  { background: var(--gold); color: var(--black); }
.btn-black { background: var(--black); color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); }

.btn-gold:hover  { background: var(--gold-lt); box-shadow: 0 4px 14px rgba(201,160,53,.4); transform: translateY(-1px); }
.btn-black:hover { background: var(--black-mid); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-outline-gold:hover  { background: var(--gold); color: var(--black); }
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all .3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 0 18px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  border-bottom: 1px solid var(--off-white);
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn { margin: 12px 24px 0; justify-content: center; }

/* ── SECTION COMMONS ── */
.section { padding-block: 88px; }
.section--dark  { background: var(--black); }
.section--light { background: var(--off-white); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-heading {
  font-size: clamp(26px, 4vw, 40px);
  color: var(--black);
  margin-bottom: 14px;
}

.section-heading--white { color: var(--white); }

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
}

.section-sub--white { color: rgba(255,255,255,.55); }

.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-block: 18px 28px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--black);
  padding-block: 64px 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '⚖';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 260px;
  color: rgba(201,160,53,.05);
  pointer-events: none;
}

.page-hero-inner { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--gold); transition: opacity var(--transition); }
.breadcrumb a:hover { opacity: .8; }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ── HERO (home) ── */
.hero {
  background: var(--black);
  padding-block: 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(201,160,53,.07) 0%, transparent 70%),
              radial-gradient(ellipse 50% 80% at 10% 20%, rgba(201,160,53,.04) 0%, transparent 60%);
}

.hero::after {
  content: '⚖';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 420px;
  color: rgba(201,160,53,.04);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; max-width: 700px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(42px, 6vw, 68px);
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 8px;
}

.hero h1 span { color: var(--gold); }

.hero h2 {
  font-size: clamp(13px, 1.8vw, 16px);
  color: rgba(255,255,255,.5);
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: inherit;
}

.hero-tagline {
  font-family: Georgia, serif;
  font-size: 21px;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 26px;
}

.hero-text {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  max-width: 580px;
  margin-bottom: 38px;
  line-height: 1.75;
}

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

.hero-bar {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 30px;
  color: var(--gold);
}

.hero-stat span {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-card {
  background: var(--black);
  border-radius: var(--radius);
  padding: 44px 36px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '⚖';
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 130px;
  color: rgba(201,160,53,.07);
  pointer-events: none;
}

.about-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(255,255,255,.78);
  line-height: 1.5;
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: rgba(201,160,53,.15);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  margin-top: 1px;
}

/* ── PRACTICE CARDS ── */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.practice-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.practice-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.practice-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.practice-card:hover::after { transform: scaleX(1); }

.practice-icon { font-size: 30px; margin-bottom: 18px; display: block; }

.practice-card h3 { font-size: 17px; margin-bottom: 8px; }

.practice-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── WHY CHOOSE ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}

.why-card {
  padding: 42px 32px;
  background: rgba(255,255,255,.03);
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition);
}

.why-card:last-child { border-right: none; }
.why-card:hover { background: rgba(201,160,53,.06); }

.why-num {
  font-family: Georgia, serif;
  font-size: 48px;
  color: rgba(201,160,53,.22);
  line-height: 1;
  margin-bottom: 18px;
}

.why-card h3 { font-size: 19px; color: var(--white); margin-bottom: 10px; }

.why-card p { font-size: 14.5px; color: rgba(255,255,255,.52); line-height: 1.7; }

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  background: var(--white);
  border-radius: 12px;
  padding: 26px 16px 22px;
  border: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.team-card:hover {
  box-shadow: 0 8px 30px rgba(201,160,53,.2);
  transform: translateY(-5px);
  border-color: var(--gold);
}

.team-photo-wrap {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 0 0 4px rgba(201,160,53,.13);
  transition: box-shadow var(--transition), transform var(--transition);
}

.team-card:hover .team-photo-wrap {
  box-shadow: 0 0 0 6px rgba(201,160,53,.35), 0 6px 20px rgba(201,160,53,.25);
  transform: scale(1.06);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .35s ease;
}

.team-card:hover .team-photo { transform: scale(1.1); }

.team-info h3 { font-size: 14px; color: var(--black); margin-bottom: 4px; line-height: 1.3; }

.team-role {
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 48px;
}

.testi-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 38px 32px;
  border-left: 4px solid var(--gold);
  position: relative;
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 14px;
  left: 24px;
  font-family: Georgia, serif;
  font-size: 72px;
  color: var(--gold);
  opacity: .18;
  line-height: 1;
}

.testi-text {
  font-family: Georgia, serif;
  font-size: 16px;
  color: var(--black);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--black);
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 17px;
  color: var(--gold);
  flex-shrink: 0;
}

.testi-name { font-weight: 700; font-size: 14px; color: var(--black); }
.testi-company { font-size: 12.5px; color: var(--muted); }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 52px;
  margin-top: 48px;
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--black);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.contact-detail strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--black);
  margin-bottom: 3px;
}

.contact-detail :is(a, span) {
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.5;
  display: block;
  transition: color var(--transition);
}

.contact-detail a:hover { color: var(--gold); }

.map-box {
  margin-top: 28px;
  width: 100%;
  height: 170px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.map-box iframe { width: 100%; height: 100%; border: none; }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 { font-size: 21px; margin-bottom: 22px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 5px;
}

.form-group :is(input, textarea) {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 14.5px;
  color: var(--body);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group :is(input, textarea):focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,160,53,.12);
}

.form-group textarea { resize: vertical; min-height: 110px; }

/* ── GOOGLE BUSINESS ── */
.gbiz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 44px;
  align-items: start;
}

.gbiz-map {
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.gbiz-map iframe { width: 100%; height: 100%; border: none; }

.gbiz-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.gbiz-card-header {
  background: var(--black);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.gbiz-logo {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.gbiz-logo img { width: 100%; height: 100%; object-fit: cover; }

.gbiz-card-header strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 16px;
  color: var(--white);
}

.gbiz-card-header span {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}

.gbiz-card-body { padding: 20px 24px 22px; }

.gbiz-stars { color: #FBBC04; font-size: 20px; letter-spacing: 2px; margin-bottom: 14px; }

.gbiz-info {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  font-size: 13.5px;
  color: var(--body);
}

.gbiz-info-row { display: flex; gap: 9px; align-items: flex-start; }
.gbiz-info-row svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }

.gbiz-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── FOOTER ── */
#site-footer {
  background: var(--black-deep);
  color: rgba(255,255,255,.5);
  padding-block: 52px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}

.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }

.footer-logo-wrap img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 5px;
}

.footer-logo-text strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 14px;
  color: var(--white);
}

.footer-logo-text span {
  font-size: 9.5px;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
}

#site-footer p { font-size: 13.5px; line-height: 1.7; }

#site-footer h4 {
  font-family: Georgia, serif;
  font-size: 13px;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12.5px;
}

.footer-disclaimer {
  color: rgba(255,255,255,.3);
  max-width: 460px;
  line-height: 1.6;
  text-align: right;
}

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.42);
  transition: transform var(--transition), box-shadow var(--transition);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
}

.wa-float svg { width: 28px; height: 28px; fill: white; }

.wa-tooltip {
  position: absolute;
  right: 64px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.wa-float:hover .wa-tooltip { opacity: 1; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--gold);
  padding-block: 56px;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--black);
  margin-bottom: 10px;
}

.cta-band p {
  font-size: 16px;
  color: rgba(0,0,0,.6);
  margin-bottom: 28px;
  max-width: 520px;
  margin-inline: auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .practice-grid  { grid-template-columns: repeat(2, 1fr); }
  .about-grid     { grid-template-columns: 1fr; gap: 36px; }
  .why-grid       { grid-template-columns: 1fr; }
  .why-card       { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .why-card:last-child { border-bottom: none; }
  .team-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .gbiz-grid      { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav  { display: none; }
  .hamburger { display: flex; }
  .section   { padding-block: 60px; }
  .hero      { padding-block: 64px; }
  .hero::after { display: none; }
  .hero-bar  { gap: 22px; }
  .practice-grid { grid-template-columns: 1fr; }
  .form-row  { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-disclaimer { text-align: left; }
}

@media (max-width: 480px) {
  .hero-ctas   { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .footer-bottom { flex-direction: column; }
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
}
