:root {
  --bg: #f8fafc;
  --text: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --brand: #92400e;
  --brand-light: #fef3c7;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; }
img, video { width: 100%; display: block; border-radius: 28px; }
iframe { width: 100%; height: 100%; border: 0; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.topbar { background: var(--dark); color: var(--white); }
.topbar-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding: 12px 0; font-size: 14px; font-weight: 700; }
.topbar a { text-decoration: underline; text-underline-offset: 4px; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 16px 0; }
.brand { font-size: 28px; font-weight: 900; letter-spacing: -0.03em; }
.subbrand { color: var(--muted); font-size: 14px; }
nav { display: flex; gap: 24px; flex-wrap: wrap; }
nav a { text-decoration: none; font-weight: 600; color: #334155; }
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #92400e 100%);
  color: var(--white);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; padding: 88px 0; }
.hero-pill { display: inline-block; padding: 10px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); font-size: 14px; margin-bottom: 18px; }
.hero h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.05; margin: 0; }
.hero-copy { max-width: 720px; font-size: 19px; color: rgba(255,255,255,.9); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn { display: inline-block; text-decoration: none; padding: 14px 22px; border-radius: 20px; font-weight: 700; }
.btn-light { background: var(--white); color: var(--dark); }
.btn-dark { background: var(--dark); color: var(--white); border: none; cursor: pointer; }
.btn-outline { border: 1px solid rgba(255,255,255,.35); color: var(--white); }
.btn-outline-dark { border: 1px solid #cbd5e1; color: var(--text); }
.btn-full { width: 100%; }
.center { justify-content: center; }
.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 36px; }
.stat-grid strong { display: block; font-size: 30px; }
.stat-grid span { display: block; font-size: 14px; color: rgba(255,255,255,.75); }
.quote-card-wrap { display: flex; align-items: center; }
.quote-card { background: var(--white); color: var(--text); border-radius: 28px; padding: 28px; box-shadow: 0 30px 60px rgba(0,0,0,.2); }
.logo { max-height: 200px; object-fit: contain; border-radius: 0; width: auto; margin: 0 auto 20px; }
.quote-title { text-align: center; font-size: 22px; font-weight: 800; }
.quote-subtitle { text-align: center; color: var(--muted); margin-bottom: 18px; }
.notice { background: var(--brand-light); border: 1px solid #fcd34d; padding: 14px; border-radius: 18px; font-size: 14px; color: #334155; margin-bottom: 18px; }
.notice a { font-weight: 800; }
form input, form textarea {
  width: 100%; padding: 14px 16px; border: 1px solid #cbd5e1; border-radius: 16px; font: inherit; margin-bottom: 14px; background: #fff;
}
#callback-phone { border-width: 2px; border-color: #f59e0b; }
.form-grid { display: grid; gap: 14px; }
.form-grid.two { grid-template-columns: repeat(2,1fr); }
.form-grid.three { grid-template-columns: repeat(3,1fr); }
.form-note { font-size: 13px; color: var(--muted); margin-top: 12px; }
.section { padding: 80px 0; }
.light-band { background: #ffffff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dark-band { background: #020617; color: var(--white); }
.section-intro, .section-head, .seo-copy { max-width: 760px; }
.section-intro h2, .section-head h2, .seo-copy h2, .panel h2, .dark-panel h2, .glass-panel .big, .cta-box h2, .quote-card h2 { margin: 8px 0 16px; line-height: 1.15; font-size: clamp(30px, 4vw, 48px); }
.section-intro p, .section-head p, .seo-copy p, .panel p, .dark-panel p, .cta-box p { color: var(--muted); font-size: 18px; }
.dark-band p { color: rgba(255,255,255,.75); }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: 13px; font-weight: 800; color: var(--brand); }
.eyebrow.light { color: #fbbf24; }
.card-grid { display: grid; gap: 24px; margin-top: 34px; }
.card-grid.two { grid-template-columns: repeat(2,1fr); }
.card-grid.three { grid-template-columns: repeat(3,1fr); }
.card-grid.four { grid-template-columns: repeat(4,1fr); }
.card, .panel, .cta-box, .glass-panel, .dark-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.card h3 { margin-top: 0; font-size: 24px; }
.card p { color: var(--muted); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.split { align-items: start; }
.dark-panel { background: var(--dark); color: var(--white); border-color: rgba(255,255,255,.08); }
.dark-panel .process-list { margin: 24px 0 0; padding-left: 20px; }
.dark-panel li { margin: 14px 0; color: rgba(255,255,255,.85); }
.trust-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.trust-list li { background: #f8fafc; border-radius: 20px; padding: 16px 18px; }
.tag-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 32px; }
.tag-grid > div { background: var(--white); border: 1px solid var(--line); padding: 20px; border-radius: 24px; box-shadow: var(--shadow); font-weight: 700; }
.alt { grid-template-columns: 1.2fr .8fr; align-items: center; }
.glass-panel { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: var(--white); }
.glass-panel .big { font-size: 42px; font-weight: 900; }
.goal-list { display: grid; gap: 14px; color: rgba(255,255,255,.8); font-size: 18px; }
.photo-strip img { height: 320px; object-fit: cover; }
.photo-strip.three-up { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; padding: 64px 0; }
.media-grid, .gallery-grid { display: grid; gap: 24px; }
.media-grid { grid-template-columns: repeat(4,1fr); }
.media-grid .wide { grid-column: span 2; }
.media-grid img, .media-grid video { height: 260px; object-fit: cover; }
.gallery-grid { grid-template-columns: repeat(3,1fr); }
.gallery-grid img { height: 280px; object-fit: cover; }
.rounded-image { height: 320px; object-fit: cover; }
.map-wrap { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); min-height: 360px; box-shadow: var(--shadow); }
.cta-box { background: linear-gradient(135deg, #fef3c7, #ffffff); text-align: center; }
.quote-callout { background: rgba(255,255,255,.85); border: 1px solid #fcd34d; padding: 18px; border-radius: 22px; text-align: left; max-width: 760px; margin: 24px auto 0; }
.callout-head, .callout { font-weight: 800; }
.contact-list, .footer-list { color: var(--muted); display: grid; gap: 6px; }
.site-footer { background: #fff; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; padding: 56px 0; }
.top-gap { margin-top: 16px; }
.narrow { max-width: 840px; }
@media (max-width: 1024px) {
  .hero-grid, .two-col, .alt, .footer-grid, .tag-grid, .media-grid, .gallery-grid, .card-grid.four, .card-grid.three, .card-grid.two, .photo-strip.three-up { grid-template-columns: 1fr 1fr; }
  .media-grid .wide { grid-column: span 2; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  nav { display: none; }
  .hero-grid, .two-col, .footer-grid, .tag-grid, .media-grid, .gallery-grid, .card-grid.four, .card-grid.three, .card-grid.two, .photo-strip.three-up, .form-grid.two, .form-grid.three, .stat-grid { grid-template-columns: 1fr; }
  .media-grid .wide { grid-column: auto; }
  .header-inner, .topbar-inner { align-items: flex-start; }
  .hero { padding-bottom: 20px; }
  .hero-grid { padding: 56px 0; }
  .button-row { flex-direction: column; }
  .btn { text-align: center; }
}
