:root {
  --navy: #07101e;
  --navy-2: #101b2d;
  --navy-3: #16243a;
  --gold: #d2a755;
  --gold-dark: #8d681e;
  --gold-soft: #f5e3b6;
  --cream: #fbf7ee;
  --paper: #ffffff;
  --text: #101828;
  --muted: #667085;
  --line: rgba(16, 24, 40, .10);
  --shadow: 0 22px 60px rgba(7, 16, 30, .14);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--bg);
  box-shadow: 0 16px 32px rgba(255, 211, 0, .25);
}
.btn-white { color: #fff; border: 1px solid rgba(255,255,255,.34); background: rgba(255,255,255,.08); }
.btn-ghost-dark { color: var(--ink); border: 1px solid var(--line); background: #fff; }

.disclaimer-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: rgba(7, 16, 30, .9);
  padding: 20px;
}
.disclaimer-modal.hide { display: none; }
.disclaimer-card {
  width: min(850px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 40px 90px rgba(0,0,0,.38);
}
.disclaimer-logo {
  width: 340px;
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0,18,35,.16);
}
.disclaimer-card h1 { font-size: clamp(30px, 5vw, 48px); line-height: 1; color: var(--ink); margin: 6px 0 16px; }
.disclaimer-card p { color: #475467; margin-bottom: 13px; }
.disclaimer-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.topbar { background: #001223; color: rgba(255,255,255,.82); font-size: 13px; padding: 9px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.navbar {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16,24,40,.08);
}
.nav-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--bg);
  border: 1px solid rgba(255,211,0,.38);
  box-shadow: 0 14px 34px rgba(0,18,35,.18);
  overflow: hidden;
}
.brand img { width: min(326px, 44vw); height: auto; display: block; }
.nav-toggle { display: none; border: 0; background: var(--ink); color: #fff; border-radius: 12px; padding: 10px 13px; font-size: 20px; }
.nav-links { display: flex; align-items: center; gap: 19px; font-size: 14px; font-weight: 800; color: #344054; }
.nav-links a:not(.btn):hover { color: var(--gold-dark); }
.nav-cta { padding: 11px 17px; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 88px 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 16%, rgba(255,211,0,.34), transparent 32%),
    linear-gradient(125deg, rgba(7,16,30,.98), rgba(14,27,45,.94));
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; gap: 48px; align-items: center; }
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #ffe268;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 18px;
}
.kicker { color: var(--gold-dark); border-color: rgba(255,211,0,.25); background: #fff7d7; }
.hero h1 { font-size: clamp(42px, 7vw, 82px); line-height: .96; letter-spacing: -.06em; max-width: 780px; margin-bottom: 24px; }
.hero-lead { font-size: 18px; color: rgba(255,255,255,.78); max-width: 700px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 640px; }
.hero-stats div { border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.07); border-radius: 18px; padding: 18px; }
.hero-stats strong { display: block; font-size: 30px; line-height: 1; color: #fff; margin-bottom: 5px; }
.hero-stats .regional-stat {
  background:
    radial-gradient(circle at 78% 18%, rgba(255,211,0,.22), transparent 34%),
    rgba(255,255,255,.09);
  border-color: rgba(255,211,0,.34);
}
.hero-stats .regional-stat strong {
  font-size: 24px;
  letter-spacing: -.035em;
  color: #ffe268;
}
.hero-stats .regional-stat span {
  color: rgba(255,255,255,.82);
}
.hero-stats span { color: rgba(255,255,255,.7); font-weight: 700; font-size: 13px; }
.hero-visual { position: relative; min-height: 590px; }
.hero-balance { position: absolute; z-index: 2; width: 260px; top: 0; right: 8%; filter: drop-shadow(0 26px 36px rgba(0,0,0,.25)); }
.hero-photo-card { position: absolute; left: 0; right: 0; bottom: 0; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.09); border-radius: 34px; padding: 18px; box-shadow: 0 30px 80px rgba(0,0,0,.28); backdrop-filter: blur(10px); }
.hero-photo-card img { border-radius: 26px; width: 100%; height: 400px; object-fit: cover; }
.hero-photo-caption { position: absolute; left: 38px; right: 38px; bottom: 36px; display: flex; flex-direction: column; gap: 2px; color: #fff; background: rgba(7,16,30,.76); border: 1px solid rgba(255,255,255,.16); border-radius: 18px; padding: 16px 18px; }
.hero-photo-caption strong { font-size: 22px; }
.hero-photo-caption span { color: rgba(255,255,255,.76); font-size: 14px; }

.section { padding: 92px 0; }
.soft-bg { background: var(--soft); }
.section-head { text-align: center; max-width: 850px; margin: 0 auto 42px; }
.section-head.split { text-align: left; max-width: none; display: grid; grid-template-columns: 1fr .9fr; gap: 36px; align-items: end; }
.section-head h2 { color: var(--ink); font-size: clamp(32px, 5vw, 52px); line-height: 1.07; letter-spacing: -.045em; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 16px; }

.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 44px; align-items: center; }
.about-images { position: relative; min-height: 510px; }
.about-main-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 34px; box-shadow: var(--shadow); }
.about-floating-img { position: absolute; width: 210px; right: -18px; bottom: -28px; background: #fff; border-radius: 28px; padding: 24px; box-shadow: var(--shadow); }
.about-copy { display: grid; gap: 18px; color: #475467; font-size: 17px; }
.about-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.about-points span { background: #fff7d7; color: #755900; border: 1px solid rgba(255,211,0,.32); border-radius: 999px; padding: 9px 13px; font-size: 13px; font-weight: 900; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card, .feature, .court-card, .member-card, .contact-card, .outreach-card {
  background: #fff;
  border: 1px solid rgba(16,24,40,.08);
  box-shadow: 0 12px 34px rgba(15,23,42,.05);
  border-radius: var(--radius);
}
.service-card { padding: 24px; transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover, .court-card:hover, .member-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon { width: 52px; height: 52px; border-radius: 17px; display: grid; place-items: center; background: #fff0b8; font-size: 25px; margin-bottom: 16px; }
.service-card h3 { color: var(--ink); font-size: 21px; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 14px; }
.service-card ul { border-top: 1px solid var(--line); padding-top: 14px; padding-left: 18px; color: #475467; font-size: 14px; display: grid; gap: 5px; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature { padding: 23px; display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: start; }
.feature span { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 17px; background: #fff0b8; font-size: 25px; }
.feature h3 { color: var(--ink); font-size: 20px; margin-bottom: 5px; }
.feature p { color: var(--muted); font-size: 15px; }

.court-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.court-card { overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.court-card img { width: 100%; height: 200px; object-fit: cover; }
.court-card h3 { color: var(--ink); font-size: 18px; padding: 18px; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.member-card { padding: 22px; text-align: center; transition: transform .2s ease, box-shadow .2s ease; }
.member-card img { width: 116px; height: 116px; border-radius: 28px; object-fit: cover; margin: 0 auto 16px; box-shadow: 0 12px 26px rgba(15,23,42,.1); }
.member-card h3 { color: var(--ink); font-size: 18px; margin-bottom: 2px; }
.member-card p { color: var(--muted); font-size: 14px; font-weight: 800; }

.outreach-section { color: #fff; background: radial-gradient(circle at 78% 12%, rgba(255,211,0,.36), transparent 30%), linear-gradient(135deg, #001223, #051f35); }
.outreach-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: center; }
.outreach-grid > div:first-child {
  position: relative;
  padding: 34px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.045)),
    radial-gradient(circle at 8% 0%, rgba(255,226,104,.18), transparent 36%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
}
.outreach-grid h2 { font-size: clamp(34px, 5vw, 56px); line-height: 1.05; letter-spacing: -.045em; margin-bottom: 14px; }
.outreach-grid p { color: rgba(255,255,255,.74); font-size: 17px; max-width: 700px; }
.outreach-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.outreach-section .kicker {
  color: #001223;
  background: linear-gradient(135deg, #f8f2e4, #ffd300);
  border-color: rgba(255,255,255,.26);
  box-shadow: 0 14px 30px rgba(255,211,0,.18);
}
.outreach-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #fff; padding: 32px; backdrop-filter: blur(8px); }
.outreach-card img { width: 210px; margin: 0 auto 20px; opacity: .92; }
.outreach-card h3 { font-size: 30px; margin-bottom: 8px; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; }
.contact-card { padding: 28px; }
.contact-row { display: grid; grid-template-columns: 48px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; }
.contact-row span { width: 44px; height: 44px; border-radius: 15px; background: #fff0b8; display: grid; place-items: center; }
.contact-row strong { color: var(--ink); display: block; margin-bottom: 4px; }
.contact-row p, .contact-row a { color: var(--muted); }
.map-panel { position: relative; min-height: 430px; overflow: hidden; border-radius: 30px; padding: 34px; color: #fff; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; background: linear-gradient(135deg, rgba(0,18,35,.88), rgba(5,31,53,.9)), url('../images/gallery/team-office-1.jpg') center/cover; box-shadow: var(--shadow); }
.map-panel h3 { font-size: clamp(30px, 5vw, 48px); line-height: 1.07; letter-spacing: -.04em; margin-bottom: 12px; max-width: 560px; }
.map-panel p { color: rgba(255,255,255,.76); margin-bottom: 22px; }

.footer { background: #001223; color: rgba(255,255,255,.72); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .65fr .8fr .9fr; gap: 32px; }
.footer-logo {
  width: 340px;
  max-width: 100%;
  border-radius: 18px;
  margin-bottom: 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}
.footer h3 { color: #fff; margin-bottom: 12px; }
.footer a { display: block; color: rgba(255,255,255,.72); margin-bottom: 9px; }
.footer a:hover { color: #ffe268; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 18px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; }
.back-top { position: fixed; right: 18px; bottom: 18px; z-index: 70; width: 48px; height: 48px; border: 0; border-radius: 16px; color: #fff; background: var(--ink); box-shadow: 0 16px 34px rgba(16,24,40,.26); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(12px); transition: .2s ease; font-size: 22px; }
.back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

@media (max-width: 1080px) {
  .hero-grid, .about-grid, .contact-grid, .outreach-grid, .reviews-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-visual { min-height: 520px; }
  .service-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .court-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 830px) {
  .faq-grid { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-links { position: absolute; top: 88px; left: 16px; right: 16px; display: none; flex-direction: column; align-items: flex-start; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px; border-radius: 12px; }
  .nav-links a:hover { background: #f6f7fb; }
  .nav-cta { margin-top: 6px; width: auto !important; }
  .section-head.split { grid-template-columns: 1fr; gap: 8px; }
  .hero-stats, .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 26px, var(--max)); }
  .brand { border-radius: 14px; }
  .brand img { width: 235px; }
  .hero { padding: 64px 0; }
  .section { padding: 68px 0; }
  .hero-visual { min-height: 440px; }
  .hero-balance { width: 190px; right: 0; }
  .hero-photo-card img { height: 330px; }
  .hero-photo-caption { left: 28px; right: 28px; bottom: 28px; }
  .service-grid, .court-grid, .team-grid, .footer-grid { grid-template-columns: 1fr; }
  .about-images { min-height: 420px; }
  .about-floating-img { width: 150px; right: 10px; bottom: -22px; padding: 18px; }
  .disclaimer-card { padding: 23px; border-radius: 22px; }
  .disclaimer-logo { width: 250px; }
}


/* Google Reviews */
.reviews-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(255,211,0,.18), transparent 28%),
    linear-gradient(180deg, #fff, #f7f8fb);
}
.reviews-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 24px;
  align-items: stretch;
}
.review-summary-card,
.google-map-card,
.faq-grid details {
  background: #fff;
  border: 1px solid rgba(16,24,40,.08);
  box-shadow: 0 16px 42px rgba(15,23,42,.07);
  border-radius: 28px;
}
.review-summary-card {
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.review-summary-card::after {
  content: "Reviews";
  position: absolute;
  right: -24px;
  bottom: -26px;
  color: rgba(16,24,40,.045);
  font-weight: 900;
  font-size: 76px;
  letter-spacing: -.06em;
}
.google-mark {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  background: conic-gradient(from 180deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  box-shadow: 0 14px 28px rgba(15,23,42,.16);
  margin-bottom: 16px;
}
.review-label {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 8px;
}
.review-summary-card h3 {
  color: var(--ink);
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -.035em;
  margin-bottom: 12px;
}
.review-summary-card p { color: var(--muted); position: relative; z-index: 1; }
.stars {
  color: #c99600;
  font-size: 28px;
  letter-spacing: 2px;
  margin: 18px 0 22px;
  position: relative;
  z-index: 1;
}
.review-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.google-map-card { overflow: hidden; min-height: 420px; }
.google-map-card iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: saturate(.95) contrast(1.02); }
.review-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff7d7;
  border: 1px solid rgba(255,211,0,.32);
  color: #755900;
  font-size: 14px;
}
.review-note code { color: #101828; font-weight: 800; }

/* SEO FAQ */
.faq-section { background: #fff; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.faq-grid details { padding: 22px 24px; }
.faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  font-size: 18px;
}
.faq-grid details p {
  color: var(--muted);
  margin-top: 12px;
}

.topbar-social, .inline-social, .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.topbar-social a {
  color: #ffe268;
  font-weight: 800;
  font-size: 12px;
  border-left: 1px solid rgba(255,255,255,.18);
  padding-left: 8px;
}
.inline-social a {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--bg);
  border: 1px solid rgba(255,211,0,.38);
  font-size: 13px;
  font-weight: 900;
}
.footer-social {
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
}
.footer-social a:hover, .inline-social a:hover, .topbar-social a:hover { color: var(--gold); }
.service-area-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--cream), #fff);
  border: 1px solid rgba(255,211,0,.38);
  color: var(--bg);
  font-weight: 800;
}


/* Premium colour refinement: restrained navy/gold/white profile */
body {
  background: #ffffff;
}

.navbar {
  background: rgba(255,255,255,.94);
}

.btn-primary {
  background: linear-gradient(135deg, #d2a755, #9b7427);
  color: #07101e;
  box-shadow: 0 16px 32px rgba(141,104,30,.18);
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(141,104,30,.24);
}

.hero {
  background:
    linear-gradient(120deg, rgba(7,16,30,.96), rgba(16,27,45,.92)),
    radial-gradient(circle at 82% 18%, rgba(210,167,85,.18), transparent 31%),
    linear-gradient(135deg, #07101e, #101b2d);
}

.hero-card,
.about-panel,
.map-box,
.cta,
.outreach-section {
  background:
    linear-gradient(135deg, rgba(7,16,30,.96), rgba(16,27,45,.94)),
    radial-gradient(circle at 78% 12%, rgba(210,167,85,.16), transparent 34%);
}

.kicker,
.section-label {
  color: #8d681e;
}

.icon,
.card .icon,
.feature .icon,
.contact-item .icon {
  background: #f8f2e4;
  color: #8d681e;
}

.pill {
  background: #fbf7ee;
  border-color: rgba(141,104,30,.22);
  color: #73551c;
}

.card,
.member,
.feature,
.contact-card,
.court {
  border-color: rgba(16,24,40,.09);
}

.member .avatar,
.avatar {
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,.72), transparent 25%),
    linear-gradient(135deg, #e8cf91, #a97d2d);
  box-shadow: 0 14px 28px rgba(141,104,30,.13);
}

.outreach-section .kicker {
  color: #07101e;
  background: linear-gradient(135deg, #f8f2e4, #d2a755);
  box-shadow: 0 14px 30px rgba(141,104,30,.14);
}

.hero-stats .regional-stat {
  background:
    radial-gradient(circle at 78% 18%, rgba(210,167,85,.16), transparent 34%),
    rgba(255,255,255,.075);
  border-color: rgba(210,167,85,.25);
}

.brand,
.disclaimer-logo,
.footer-logo {
  background:
    radial-gradient(circle at 24% 18%, rgba(255,255,255,.10), transparent 30%),
    linear-gradient(135deg, #07101e, #13243a);
  border-color: rgba(210,167,85,.24);
}


/* Refinement: solid back-to-top button */
.back-top,
#backTop {
  background: #07101e !important;
  color: #ffffff !important;
  border: 1px solid #07101e !important;
  opacity: 1;
  box-shadow: 0 16px 36px rgba(7, 16, 30, .32);
}

.back-top.show,
#backTop.show {
  background: #07101e !important;
  color: #ffffff !important;
  border-color: #07101e !important;
}

.back-top:hover,
#backTop:hover {
  background: #101b2d !important;
  color: #ffffff !important;
}


/* Refinement: stronger header label pills */
.kicker,
.section-label,
.outreach-section .kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #ffffff !important;
  background:
    linear-gradient(135deg, #07101e, #172842) !important;
  border: 1px solid rgba(210, 167, 85, .42) !important;
  box-shadow: 0 12px 28px rgba(7, 16, 30, .16) !important;
  border-radius: 999px;
  padding: 9px 16px;
  letter-spacing: .13em;
}

.kicker::before,
.section-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #d2a755;
  margin-right: 10px;
  box-shadow: 0 0 0 4px rgba(210, 167, 85, .14);
}

.hero .kicker,
.disclaimer-box .section-label {
  background:
    linear-gradient(135deg, rgba(210, 167, 85, .22), rgba(255, 255, 255, .08)) !important;
  border-color: rgba(255, 255, 255, .22) !important;
  color: #f5e3b6 !important;
}

.hero .kicker::before,
.disclaimer-box .section-label::before {
  background: #f5e3b6;
  box-shadow: 0 0 0 4px rgba(245, 227, 182, .12);
}


/* Refinement: restore golden fade section labels and remove front dot */
.kicker,
.section-label,
.outreach-section .kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #42526d !important;
  background:
    linear-gradient(135deg, #fff7dc 0%, #f4dfaa 48%, #fffaf0 100%) !important;
  border: 1px solid rgba(210, 167, 85, .46) !important;
  box-shadow: 0 10px 22px rgba(141, 104, 30, .10) !important;
  border-radius: 999px;
  padding: 9px 18px;
  letter-spacing: .13em;
}

.kicker::before,
.section-label::before {
  content: none !important;
  display: none !important;
}

.hero .kicker,
.disclaimer-box .section-label {
  color: #07101e !important;
  background:
    linear-gradient(135deg, #fff7dc 0%, #f4dfaa 48%, #fffaf0 100%) !important;
  border-color: rgba(210, 167, 85, .48) !important;
}

.outreach-section .kicker {
  color: #07101e !important;
}

/* Site visits counter */
.site-visits {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(210,167,85,.24);
  color: rgba(255,255,255,.84);
  font-size: 13px;
  font-weight: 700;
}

.site-visits strong {
  color: #f5e3b6;
  letter-spacing: .02em;
}

.site-visits .visit-icon {
  color: #d2a755;
}

@media (max-width: 620px) {
  .site-visits {
    border-radius: 14px;
    align-items: flex-start;
  }
}


/* Refinement: black text on golden fade labels */
.kicker,
.section-label,
.outreach-section .kicker,
.hero .kicker,
.disclaimer-box .section-label {
  color: #050505 !important;
}

/* Refinement: subtle section separation with varied premium backgrounds */
main > section:not(.hero):not(.outreach-section) {
  position: relative;
}

main > section:not(.hero):not(.outreach-section):nth-of-type(2n) {
  background: #ffffff !important;
}

main > section:not(.hero):not(.outreach-section):nth-of-type(2n+1) {
  background: #fbf7ee !important;
}

main > section.soft-bg:not(.outreach-section) {
  background: #f6f3ed !important;
}

main > section:nth-of-type(4):not(.hero),
main > section:nth-of-type(8):not(.hero) {
  background: #f8fafc !important;
}

main > section:not(.hero):not(.outreach-section)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 8%, rgba(210, 167, 85, .045), transparent 24%),
    radial-gradient(circle at 8% 92%, rgba(7, 16, 30, .025), transparent 22%);
}

main > section:not(.hero):not(.outreach-section) > .container {
  position: relative;
  z-index: 1;
}

/* Keep cards clean against alternating backgrounds */
.card,
.feature,
.member,
.contact-card,
.court {
  background: rgba(255,255,255,.96);
}


/* SEO service coverage section */
.seo-service-coverage {
  background: #ffffff !important;
  padding: 54px 0;
}

.seo-service-coverage .container {
  border: 1px solid rgba(16,24,40,.08);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(251,247,238,.96), rgba(255,255,255,.98));
  padding: 28px;
  box-shadow: 0 16px 40px rgba(7,16,30,.05);
}

.seo-service-coverage h2 {
  color: #101828;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -.035em;
  margin-bottom: 12px;
}

.seo-service-coverage p {
  color: #475467;
  max-width: 980px;
}


/* Hero stat refinement: Google rating card */
.hero-stats .google-rating-stat {
  display: block;
  border: 1px solid rgba(210, 167, 85, .40);
  background:
    radial-gradient(circle at 82% 20%, rgba(210, 167, 85, .18), transparent 34%),
    rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 24px;
  color: #ffffff;
  text-decoration: none;
  min-height: 100%;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.hero-stats .google-rating-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(210, 167, 85, .72);
  background:
    radial-gradient(circle at 82% 20%, rgba(210, 167, 85, .24), transparent 34%),
    rgba(255,255,255,.10);
}

.hero-stats .google-rating-stat strong {
  color: #ffffff;
}

.hero-stats .google-rating-stat span {
  display: block;
  color: rgba(255,255,255,.82);
}

.hero-stats .google-rating-stat b {
  color: #d2a755;
  letter-spacing: .03em;
  margin-right: 5px;
}


/* Refinement: compact star-dominant Google Rating hero card */
.hero-stats .google-rating-stat {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 100%;
  padding: 22px 16px !important;
  text-align: center;
  border-radius: 22px;
  border: 1px solid rgba(210, 167, 85, .48) !important;
  background:
    radial-gradient(circle at 50% 15%, rgba(210, 167, 85, .24), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.045)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 16px 34px rgba(0,0,0,.12);
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
}

.hero-stats .google-rating-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 227, 182, .70) !important;
  background:
    radial-gradient(circle at 50% 15%, rgba(210, 167, 85, .32), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.055)) !important;
}

.hero-stats .google-rating-stat .rating-stars {
  display: block;
  color: #ffd45c;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: .9;
  letter-spacing: .035em;
  text-shadow: 0 8px 24px rgba(210, 167, 85, .24);
}

.hero-stats .google-rating-stat .rating-label {
  display: block;
  color: rgba(255,255,255,.86);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@media (max-width: 620px) {
  .hero-stats .google-rating-stat .rating-stars {
    font-size: 38px;
  }
}


/* Refinement: keep Google stars fully inside the hero stat box */
.hero-stats .google-rating-stat {
  overflow: hidden !important;
  padding-left: 14px !important;
  padding-right: 14px !important;
}

.hero-stats .google-rating-stat .rating-stars {
  width: 100%;
  max-width: 100%;
  display: block;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  color: #ffd45c;
  font-size: clamp(25px, 2.55vw, 35px) !important;
  line-height: 1;
  letter-spacing: -0.015em !important;
  text-shadow: 0 8px 22px rgba(210, 167, 85, .24);
}

.hero-stats .google-rating-stat .rating-label {
  font-size: 12px !important;
  letter-spacing: .16em;
}

@media (max-width: 1050px) {
  .hero-stats .google-rating-stat .rating-stars {
    font-size: 34px !important;
  }
}

@media (max-width: 620px) {
  .hero-stats .google-rating-stat .rating-stars {
    font-size: 32px !important;
  }
}


/* Mobile reviews refinement: profile and map become two full-width rows */
@media (max-width: 760px) {
  .reviews-section {
    overflow: hidden;
  }

  .reviews-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    width: 100% !important;
  }

  .review-summary-card,
  .google-map-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .review-summary-card {
    padding: 24px !important;
  }

  .review-summary-card::after {
    font-size: 54px !important;
    right: -16px !important;
    bottom: -18px !important;
  }

  .review-summary-card h3 {
    font-size: 26px !important;
    line-height: 1.12 !important;
  }

  .review-summary-card p {
    max-width: 100% !important;
  }

  .stars {
    font-size: 28px !important;
    letter-spacing: 1px !important;
    white-space: nowrap;
  }

  .review-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .review-actions .btn {
    width: 100% !important;
    min-height: 48px;
    border-radius: 999px !important;
  }

  .google-map-card {
    min-height: 340px !important;
    border-radius: 24px !important;
    overflow: hidden !important;
  }

  .google-map-card iframe {
    min-height: 340px !important;
    height: 340px !important;
  }

  .review-note {
    margin-top: 16px !important;
  }
}

@media (max-width: 430px) {
  .review-summary-card {
    padding: 22px !important;
  }

  .google-map-card,
  .google-map-card iframe {
    min-height: 320px !important;
    height: 320px !important;
  }
}


/* Mobile navigation refinement: navy toggle button */
@media (max-width: 820px) {
  .nav-toggle,
  #navToggle {
    background: #07101e !important;
    color: #ffffff !important;
    border: 1px solid rgba(210, 167, 85, .42) !important;
    box-shadow: 0 12px 28px rgba(7, 16, 30, .18) !important;
  }

  .nav-toggle:hover,
  #navToggle:hover,
  .nav-toggle:focus,
  #navToggle:focus {
    background: #101b2d !important;
    color: #ffffff !important;
    outline: none;
  }

  .nav-toggle svg,
  #navToggle svg,
  .nav-toggle i,
  #navToggle i,
  .nav-toggle span,
  #navToggle span {
    color: #ffffff !important;
    fill: #ffffff !important;
    stroke: #ffffff !important;
  }
}


/* Mobile FAQ refinement: stack FAQ cards into four rows */
@media (max-width: 620px) {
  .faq-grid,
  .faq-list,
  .faq-cards {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .faq-grid > *,
  .faq-list > *,
  .faq-cards > *,
  .faq-card {
    width: 100% !important;
    max-width: 100% !important;
  }
}


/* Mobile hero stat refinement: center-align stat cards */
@media (max-width: 620px) {
  .hero-stats {
    text-align: center !important;
  }

  .hero-stats > div,
  .hero-stats > a,
  .hero-stats .regional-stat,
  .hero-stats .google-rating-stat {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .hero-stats strong,
  .hero-stats span {
    text-align: center !important;
  }
}
