:root {
  --navy: #0f172a;
  --navy2: #111827;
  --gold: #d4af37;
  --gold2: #f1d98b;
  --text: #1f2937;
  --muted: #64748b;
  --ink: #071225;
  --bg: #ffffff;
  --soft: #f8fafc;
  --border: #e5e7eb;
  --shadow: 0 20px 60px rgba(15,23,42,.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter,system-ui,-apple-system,Segoe UI,sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px,92%);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15,23,42,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-wrap {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212,175,55,.7);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: Merriweather,serif;
  font-weight: 900;
}

.brand small {
  display: block;
  color: #cbd5e1;
  font-size: 12px;
  margin-top: -4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #e5e7eb;
  font-size: 15px;
}

.nav a:hover {
  color: var(--gold2);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #111827!important;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 28px;
}

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg,rgba(15,23,42,.94),rgba(15,23,42,.72)),url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: white;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  color: var(--gold);
  font-size: 13px;
  margin: 0 0 12px;
}

.hero h1,.section h2 {
  font-family: Merriweather,serif;
  line-height: 1.12;
  margin: 0;
  color: inherit;
}

.hero h1 {
  font-size: clamp(42px,6vw,72px);
  max-width: 760px;
}

.lead {
  font-size: 20px;
  color: #e2e8f0;
  max-width: 680px;
  margin: 26px 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: #111827;
}

.btn-secondary {
  border-color: rgba(255,255,255,.35);
  color: white;
}

.btn-card {
  background: var(--navy);
  color: white;
  width: 100%;
  margin-top: 10px;
}

.trust-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #e5e7eb;
}

.hero-card {
  background: white;
  color: var(--text);
  padding: 34px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-family: Merriweather,serif;
  margin-top: 0;
}

.hero-card a {
  font-weight: 800;
}

.section {
  padding: 92px 0;
}

.section-alt {
  background: var(--soft);
}

.two-col {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
}

.section h2 {
  font-size: clamp(30px,4vw,48px);
  color: var(--navy);
}

.text-block {
  text-align: justify;
}

.page-hero {
  background:
    linear-gradient(115deg,rgba(6,21,43,.94),rgba(6,21,43,.74)),
    url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&w=1800&q=80') center/cover;
}

.text-block p:first-child {
  margin-top: 0;
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 42px;
}

.section-head p {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.card,.seo-grid div,details,.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 34px rgba(15,23,42,.06);
}

.card h3,.seo-grid h3 {
  font-family: Merriweather,serif;
  color: var(--navy);
  margin-top: 0;
}

.seo-section {
  background: white;
}

.narrow {
  max-width: 720px;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.section-dark {
  background: var(--navy);
  color: white;
}

.section-dark h2 {
  color: white;
}

.gold {
  color: var(--gold2);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.check-list li {
  padding: 18px 20px 18px 52px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  position: relative;
}

.check-list li:before {
  content: '✓';
  position: absolute;
  left: 20px;
  color: var(--gold);
  font-weight: 900;
}

.faq details {
  margin: 14px auto;
  max-width: 820px;
}

.faq summary {
  font-weight: 800;
  cursor: pointer;
  color: var(--navy);
}

.contact {
  background: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 40px;
}

.contact-list {
  margin: 28px 0;
}

.contact-list a {
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 22px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  font-weight: 800;
  color: var(--navy);
}

input,textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/*
.footer {
  background: #080d19;
  color: #e5e7eb;
  padding: 36px 0 18px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 24px;
}

.footer a {
  color: var(--gold2);
}


.copyright {
  font-size: 13px;
  color: #94a3b8;
  padding-top: 18px;
}

.floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #111827;
  font-size: 24px;
  font-weight: 900;
  box-shadow: var(--shadow);
  z-index: 40;
}
*/

/* My code */
.main-nav{display:flex;align-items:center;gap:27px;color:#fff;font-size:14px;font-weight:800;text-transform:uppercase;letter-spacing:.03em}
.main-nav a,.dropdown-toggle{color:#fff;background:none;border:0;font:inherit;text-transform:uppercase;cursor:pointer;padding:26px 0}
.main-nav a:hover,.dropdown-toggle:hover{color:var(--gold-2)}
.dropdown{position:relative}
.dropdown-menu{
  position:absolute;top:100%;left:-16px;display:none;
  min-width:270px;background:#fff;color:var(--ink);
  border:1px solid var(--line);border-radius:16px;padding:10px;
  box-shadow:var(--shadow)
}
.dropdown:hover .dropdown-menu{display:block}
.dropdown-menu a{display:block;color:var(--ink);text-transform:none;padding:11px 14px;border-radius:12px}
.dropdown-menu a:hover{background:#f1f4f8;color:var(--gold)}
/**/

.article-card{padding:44px}
.article-card h2{font-size:34px;margin-top:34px}
.article-card .check-list {
  gap: 8px;
  margin: 14px 0 22px;
}

.article-card .check-list li {
  min-height: auto;
  margin: 0;
  padding: 6px 0 6px 34px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.article-card .check-list li:before {
  left: 4px;
}

.side-card{padding:30px;position:sticky;top:110px}
.side-card a:not(.btn){display:block;color:var(--gold);font-weight:800;margin:8px 0}

.practice-detail-layout {
  grid-template-columns: minmax(0,1.35fr) minmax(280px,.75fr);
  gap: 42px;
}

.practice-detail-layout .side-card {
  padding: 28px;
}

.footer {
  padding: 42px 0 0;
}

.footer-grid {
  gap: 26px;
}

.footer h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.footer h4 {
  margin-bottom: 12px;
}

.footer p {
  margin-bottom: 10px;
  line-height: 1.55;
}

.footer a {
  margin: 5px 0;
  line-height: 1.5;
}

.footer-logo {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.footer-bottom {
  margin-top: 22px;
  padding: 12px 0;
  font-size: 14px;
}

@media (max-width: 980px) {
  body {
    overflow-x: hidden;
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
  }

  .site-header {
    position: sticky;
  }

  .nav-wrap {
    min-height: 72px;
    height: auto;
    position: relative;
    padding: 12px 0;
  }

  .brand {
    max-width: calc(100% - 60px);
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .brand strong {
    font-size: 19px;
    line-height: 1.1;
  }

  .brand small {
    font-size: 10px;
    line-height: 1.2;
    margin-top: 1px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    font-size: 26px;
    line-height: 1;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    padding: 8px;
    background: #06152b;
    border: 1px solid rgba(255,255,255,.1);
    border-top: 0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 22px 40px rgba(0,0,0,.28);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .site-header.menu-open .main-nav,
  .main-nav.is-open {
    display: flex !important;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .menu-toggle[aria-expanded="true"] {
    background: rgba(200,149,50,.2);
    border-color: rgba(200,149,50,.55);
  }

  .main-nav a,
  .dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    border-radius: 8px;
    text-align: left;
  }

  .main-nav a:hover,
  .dropdown-toggle:hover,
  .main-nav a:focus-visible,
  .dropdown-toggle:focus-visible {
    color: var(--gold-2);
    background: rgba(255,255,255,.07);
    outline: none;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    margin: 0 0 6px;
    padding: 6px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    box-shadow: none;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.is-open .dropdown-menu {
    display: block !important;
  }

  .dropdown-menu a {
    color: #e5e7eb;
    padding: 12px;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible {
    background: rgba(255,255,255,.08);
    color: var(--gold-2);
  }

  .hero {
    min-height: auto;
    padding: 72px 0;
  }

  .hero-grid,
  .two-col,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .practice-grid,
  .cards,
  .seo-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions,
  .trust-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-card,
  .article-card,
  .practice-card,
  .feature-card,
  .blog-card,
  .contact-box,
  .form-card,
  .side-card,
  .card,
  .seo-grid div,
  details,
  .contact-form {
    border-radius: 14px;
    padding: 24px;
  }

  .section {
    padding: 62px 0;
  }

  .page-hero {
    padding: 58px 0;
  }

  .page-hero h1,
  h1 {
    font-size: 38px;
  }

  .section h2,
  h2 {
    font-size: 30px;
  }

  .article-card h2 {
    font-size: 28px;
  }

  .side-card {
    position: static;
  }

  p,
  .text-block {
    text-align: left;
  }

  .footer {
    padding-top: 34px;
  }

  .footer p {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  .brand {
    gap: 9px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 9px;
  }

  .hero {
    padding: 56px 0;
  }

  .hero h1,
  .page-hero h1,
  h1 {
    font-size: 34px;
  }

  .section h2,
  h2 {
    font-size: 28px;
  }

  .article-card,
  .hero-card,
  .practice-card,
  .feature-card,
  .blog-card,
  .contact-box,
  .form-card,
  .side-card,
  .card,
  .seo-grid div,
  details,
  .contact-form {
    padding: 20px;
  }

  .btn {
    width: 100%;
    padding-inline: 16px;
  }

  iframe,
  .map iframe {
    height: 280px;
  }
}
