@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --navy: #2c3d6b;
  --navy-deep: #16223d;
  --navy-soft: #e9edf5;
  --gold: #c4a16f;
  --gold-light: #e8d9bd;
  --ink: #22241f;
  --muted: #60645e;
  --ivory: #f7f5ef;
  --white: #fff;
  --line: rgba(22, 34, 61, .13);
  --shadow: 0 20px 60px rgba(22, 34, 61, .12);
  --radius: 1.25rem;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ivory); color: var(--ink); font: 400 1rem/1.7 'DM Sans', sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 999; background: var(--white); padding: .75rem 1rem; border-radius: .5rem; }
.skip-link:focus { top: 1rem; }
.wrap { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.eyebrow { margin: 0 0 .8rem; color: var(--gold); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: 'Playfair Display', serif; line-height: 1.08; }
h1 { font-size: clamp(2.75rem, 7vw, 5.8rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.15rem, 4.5vw, 3.75rem); letter-spacing: -.03em; }
h3 { font-size: 1.55rem; }
p { margin: 0; }
.lede { max-width: 680px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.section-head { display: grid; gap: 1rem; margin-bottom: 2.75rem; }
.section-head.center { max-width: 760px; margin-inline: auto; text-align: center; }
.button { display: inline-flex; min-height: 3.25rem; align-items: center; justify-content: center; gap: .6rem; border: 1px solid transparent; border-radius: 999px; padding: .8rem 1.35rem; background: var(--gold); color: var(--navy-deep); font-weight: 700; text-decoration: none; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.15); }
.button.secondary { border-color: rgba(255,255,255,.55); background: transparent; color: var(--white); }
.button.navy { background: var(--navy); color: var(--white); }
.button.ghost { border-color: var(--line); background: var(--white); color: var(--navy-deep); }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.utility { background: var(--navy-deep); color: rgba(255,255,255,.72); font-size: .8rem; }
.utility .wrap { display: flex; justify-content: space-between; gap: 1rem; padding-block: .45rem; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(247,245,239,.94); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: box-shadow .2s, border-color .2s; }
.site-header[data-scrolled] { border-color: var(--line); box-shadow: 0 8px 30px rgba(22,34,61,.08); }
.header-row { min-height: 5.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand img { width: 138px; height: 66px; object-fit: contain; mix-blend-mode: multiply; }
.nav { display: flex; align-items: center; gap: .2rem; }
.nav a { padding: .65rem .72rem; color: var(--navy-deep); font-size: .91rem; font-weight: 600; text-decoration: none; border-radius: 999px; }
.nav a:hover, .nav a[aria-current='page'] { background: var(--navy-soft); }
.nav .nav-cta { margin-left: .35rem; background: var(--navy); color: var(--white); padding-inline: 1rem; }
.menu-button { display: none; width: 2.8rem; height: 2.8rem; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--navy-deep); font-size: 1.2rem; }
.hero { position: relative; overflow: hidden; background: var(--navy-deep); color: var(--white); }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 82% 18%, rgba(196,161,111,.25), transparent 30%), linear-gradient(120deg, transparent 58%, rgba(255,255,255,.04) 58%); }
.hero-grid { position: relative; min-height: 700px; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 2rem; padding-block: clamp(4rem, 8vw, 7rem); }
.hero-copy { display: grid; gap: 1.5rem; }
.hero-copy h1 em { color: var(--gold-light); font-style: italic; }
.hero-copy .lede { color: rgba(255,255,255,.76); }
.hero-people { position: relative; min-height: 520px; }
.portrait { position: absolute; overflow: hidden; border: .6rem solid rgba(255,255,255,.9); border-radius: 50%; background: var(--gold-light); box-shadow: var(--shadow); }
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait.danny { width: min(365px, 70%); aspect-ratio: 1; left: 0; top: 0; }
.portrait.joseph { width: min(320px, 62%); aspect-ratio: 1; right: 0; bottom: 0; }
.hero-note { position: absolute; right: 0; top: 3rem; max-width: 195px; padding: 1rem; border: 1px solid rgba(255,255,255,.22); border-radius: 1rem; background: rgba(22,34,61,.75); color: rgba(255,255,255,.82); font-size: .86rem; backdrop-filter: blur(8px); }
.trust-strip { position: relative; background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 1.55rem; text-align: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-item strong { display: block; color: var(--navy); font: 700 1.25rem/1.2 'Playfair Display', serif; }
.trust-item span { color: var(--muted); font-size: .86rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card { display: grid; min-height: 290px; align-content: space-between; gap: 2rem; padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 10px 35px rgba(22,34,61,.06); }
.card:nth-child(2) { background: var(--navy); color: var(--white); transform: translateY(-1rem); }
.card:nth-child(2) p { color: rgba(255,255,255,.72); }
.card p { color: var(--muted); }
.card-link { color: var(--gold); font-weight: 700; text-decoration: none; }
.feature { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.feature-copy { display: grid; gap: 1.25rem; }
.feature-panel { position: relative; min-height: 480px; padding: 2rem; border-radius: 2rem; background: var(--navy); color: var(--white); overflow: hidden; }
.feature-panel::before { content: ''; position: absolute; width: 340px; height: 340px; right: -80px; top: -80px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.035), 0 0 0 120px rgba(255,255,255,.025); }
.feature-panel img { position: absolute; width: 62%; bottom: 0; filter: drop-shadow(0 20px 20px rgba(0,0,0,.25)); }
.feature-panel img:first-of-type { left: -1rem; }
.feature-panel img:last-of-type { right: -1rem; }
.county-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.county { min-height: 230px; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; border-radius: var(--radius); background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: var(--white); text-decoration: none; }
.county:nth-child(even) { background: linear-gradient(160deg, #b58f5e, #755837); }
.county span { color: rgba(255,255,255,.72); font-size: .9rem; }
.review-section { background: var(--navy-deep); color: var(--white); }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.review { padding: 1.7rem; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); background: rgba(255,255,255,.05); }
.stars { color: var(--gold-light); letter-spacing: .15em; }
.review blockquote { margin: 1rem 0; font: 600 1.3rem/1.45 'Playfair Display', serif; }
.review cite { color: rgba(255,255,255,.65); font-style: normal; font-size: .9rem; }
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.person { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); text-align: center; }
.person img { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--navy-soft); }
.person-copy { padding: 1.2rem .8rem 1.4rem; }
.person h3 { font-size: 1.2rem; }
.person p { color: var(--muted); font-size: .85rem; }
.person a { text-decoration: none; }
.cta-band { padding: clamp(3rem, 7vw, 5rem); border-radius: 2rem; background: var(--gold-light); text-align: center; }
.cta-band h2 { max-width: 800px; margin-inline: auto; color: var(--navy-deep); }
.cta-band p { max-width: 650px; margin: 1rem auto 1.6rem; color: #5d5140; }
.page-hero { padding: clamp(4.5rem, 9vw, 8rem) 0; background: var(--navy-deep); color: var(--white); }
.page-hero .wrap { display: grid; gap: 1.25rem; }
.page-hero h1 { max-width: 950px; font-size: clamp(2.7rem, 6vw, 5rem); }
.page-hero .lede { color: rgba(255,255,255,.72); }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.prose { display: grid; gap: 1.35rem; }
.prose h2 { margin-top: 1.6rem; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.prose h3 { margin-top: .8rem; }
.prose p, .prose li { color: var(--muted); }
.prose ul, .prose ol { margin: 0; padding-left: 1.35rem; }
.prose li + li { margin-top: .6rem; }
.sidebar { position: sticky; top: 7rem; display: grid; gap: 1rem; padding: 1.5rem; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.sidebar h2 { font-size: 1.7rem; }
.checklist { display: grid; gap: .8rem; padding: 0; list-style: none; }
.checklist li { display: flex; gap: .7rem; color: var(--muted); }
.checklist li::before { content: '✓'; color: var(--gold); font-weight: 800; }
.form-card { padding: clamp(1.4rem, 4vw, 2.4rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy-deep); font-size: .88rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #cfd4df; border-radius: .75rem; padding: .85rem .95rem; background: #fff; color: var(--ink); }
.field textarea { min-height: 130px; resize: vertical; }
.fine-print { color: var(--muted); font-size: .8rem; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.article-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.article-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.article-card-copy { display: grid; gap: .8rem; padding: 1.4rem; }
.article-card p { color: var(--muted); }
.article-card a { color: var(--navy); font-weight: 700; }
.location-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.location-list a { padding: 1rem; border: 1px solid var(--line); border-radius: .8rem; background: var(--white); color: var(--navy); font-weight: 700; text-decoration: none; }
.site-footer { padding: 4rem 0 1.5rem; background: #111a2e; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 2rem; }
.footer-logo { width: 165px; margin-bottom: 1rem; background: white; border-radius: .5rem; }
.footer-col { display: grid; align-content: start; gap: .55rem; }
.footer-col h2 { color: var(--white); font: 700 .8rem/1.3 'DM Sans', sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a { text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.legal { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }
.floating-text { position: fixed; right: 1rem; bottom: 1rem; z-index: 80; box-shadow: var(--shadow); }

@media (max-width: 980px) {
  .menu-button { display: inline-grid; place-items: center; }
  .nav { display: none; position: absolute; top: 100%; left: 1rem; right: 1rem; padding: 1rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--white); box-shadow: var(--shadow); }
  .nav[data-open] { display: grid; }
  .nav a { padding: .8rem; }
  .nav .nav-cta { margin: .4rem 0 0; text-align: center; }
  .hero-grid, .feature, .content-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .hero-people { min-height: 470px; max-width: 620px; width: 100%; margin-inline: auto; }
  .cards, .reviews, .article-grid { grid-template-columns: 1fr 1fr; }
  .card:nth-child(2) { transform: none; }
  .county-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .utility .wrap { justify-content: center; text-align: center; }
  .utility span:last-child { display: none; }
  .brand img { width: 116px; height: 58px; }
  .header-row { min-height: 4.75rem; }
  .hero-grid { padding-block: 3.5rem; }
  .hero-people { min-height: 350px; }
  .hero-note { display: none; }
  .portrait.danny { width: 68%; }
  .portrait.joseph { width: 60%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .cards, .reviews, .article-grid, .county-grid, .team-grid, .location-list, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .feature-panel { min-height: 380px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .button-row .button { width: 100%; }
  .floating-text { left: 1rem; right: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
