:root {
  --color-primary: #0F172A;
  --color-secondary: #334155;
  --color-accent: #CA8A04;
  --color-neutral-dark: #020617;
  --color-neutral-light: #F8FAFC;
  --color-border: rgba(2, 6, 23, 0.10);
  --color-muted: #64748B;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 20px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 30px 60px -30px rgba(15, 23, 42, 0.30);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);
}


*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-primary);
  background: var(--color-neutral-light);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
  font-weight: 600;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-secondary); }
p { margin: 0 0 1rem; color: var(--color-secondary); }
a { color: var(--color-primary); text-decoration: none; transition: color .2s var(--ease-hover); }
a:hover { color: var(--color-accent); }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
.container.narrow { max-width: 760px; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 1rem;
}

.lede { font-size: 1.15rem; color: var(--color-secondary); max-width: 55ch; }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease-hover), box-shadow .2s var(--ease-hover), background .2s var(--ease-hover), color .2s var(--ease-hover);
  text-decoration: none;
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-neutral-light);
  box-shadow: 0 8px 24px -8px rgba(15, 23, 42, 0.4);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -10px rgba(15, 23, 42, 0.5); color: var(--color-neutral-light); }
.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}
.btn--ghost:hover { background: var(--color-primary); color: var(--color-neutral-light); transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  background: rgba(248, 250, 252, 0.72);
  border-bottom: 1px solid var(--color-border);
  transition: background .3s var(--ease-hover), box-shadow .3s var(--ease-hover);
}
.site-header.scrolled {
  background: rgba(248, 250, 252, 0.92);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }

.nav-toggle {
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  color: var(--color-primary);
  cursor: pointer;
}
.primary-nav {
  display: none;
  gap: 1.75rem;
  align-items: center;
}
.primary-nav a {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-secondary);
  padding-block: 0.25rem;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease-hover);
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--color-primary); }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }

.primary-nav.is-open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 1rem 1.25rem 1.5rem;
  background: var(--color-neutral-light);
  border-bottom: 1px solid var(--color-border);
}
.primary-nav.is-open a { padding-block: 0.75rem; border-bottom: 1px solid var(--color-border); }

@media (min-width: 768px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav { display: flex; position: static; flex-direction: row; padding: 0; background: transparent; border: 0; }
  .primary-nav a { border: 0; padding-block: 0.25rem; }
}


.hero { position: relative; padding-block: 3rem 4rem; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(202, 138, 4, 0.10), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(51, 65, 85, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), transparent 60%);
  pointer-events: none;
}
.hero-card__inner {
  position: relative;
  max-width: 880px;
  margin-inline: auto;
  padding: 2.5rem 1.75rem;
  background: var(--color-neutral-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: left;
}
.hero-card__inner h1 { max-width: 22ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-block: 1.5rem 2rem; }
.hero-card__image {
  margin-top: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-md);
}
.hero-card__image img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 768px) {
  .hero { padding-block: 5rem 6rem; }
  .hero-card__inner { padding: 4rem 3.5rem; }
}


.section { padding-block: 4rem; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head h2 { margin-bottom: 0.75rem; }
.section-head p { color: var(--color-secondary); }

.intro { text-align: center; }
.intro .container.narrow { text-align: left; }
.intro h2 { text-align: center; margin-bottom: 1.5rem; }
.intro p { font-size: 1.05rem; }


.grid { display: grid; gap: 1.25rem; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}


.card {
  background: var(--color-neutral-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-hover), box-shadow .25s var(--ease-hover);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-secondary); font-size: 0.95rem; margin-bottom: 0; }
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(202, 138, 4, 0.15), rgba(202, 138, 4, 0.05));
  color: var(--color-accent);
  margin-bottom: 1rem;
}


.stat-card {
  background: var(--color-neutral-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-hover), box-shadow .25s var(--ease-hover);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-card__figure {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}
.stat-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.stat-card p { font-size: 0.9rem; margin-bottom: 0; }


.testimonial { background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.03)); }
.testimonial blockquote {
  margin: 0;
  padding: 2rem;
  background: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  position: relative;
}
.testimonial .quote-mark { color: var(--color-accent); opacity: 0.25; margin-bottom: 0.5rem; }
.testimonial p { font-size: 1.15rem; line-height: 1.55; color: var(--color-primary); font-style: italic; margin-bottom: 1rem; }
.testimonial cite { font-style: normal; font-weight: 600; color: var(--color-secondary); font-size: 0.95rem; }


.cta-band { text-align: center; }
.cta-band .container.narrow {
  background: linear-gradient(135deg, var(--color-primary), #1e293b);
  color: var(--color-neutral-light);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-band .container.narrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(202, 138, 4, 0.25), transparent 60%);
  pointer-events: none;
}
.cta-band h2 { color: var(--color-neutral-light); position: relative; }
.cta-band p { color: rgba(248, 250, 252, 0.8); margin-bottom: 1.75rem; position: relative; }
.cta-band .btn { position: relative; background: var(--color-accent); color: var(--color-neutral-dark); }
.cta-band .btn:hover { background: #b17303; color: var(--color-neutral-light); }


.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-neutral-light);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  transition: box-shadow .2s var(--ease-hover);
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-primary);
  list-style: none;
  padding-right: 2rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--color-accent);
  font-weight: 400;
  transition: transform .2s var(--ease-hover);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin-top: 0.75rem; margin-bottom: 0; }


.contact-form {
  background: var(--color-neutral-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.form-row { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-row label { font-weight: 500; font-size: 0.9rem; color: var(--color-primary); }
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
  transition: border-color .2s var(--ease-hover), box-shadow .2s var(--ease-hover);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(202, 138, 4, 0.15);
}


.map-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: #e2e8f0;
  box-shadow: var(--shadow-md);
}
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); }
.map-marker {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -100%);
  color: var(--color-accent);
  background: var(--color-neutral-light);
  border-radius: 999px;
  padding: 0.5rem;
  box-shadow: var(--shadow-md);
}


.hours-table { width: 100%; border-collapse: collapse; background: var(--color-neutral-light); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.hours-table th, .hours-table td { text-align: left; padding: 0.85rem 1rem; border-bottom: 1px solid var(--color-border); font-size: 0.95rem; }
.hours-table th { font-weight: 500; color: var(--color-primary); width: 40%; }
.hours-table td { color: var(--color-secondary); }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }


.site-footer {
  background: var(--color-primary);
  color: rgba(248, 250, 252, 0.75);
  padding-block: 3rem 1.5rem;
  margin-top: 4rem;
}
.site-footer h4 { color: var(--color-neutral-light); margin-bottom: 1rem; }
.site-footer a { color: rgba(248, 250, 252, 0.75); }
.site-footer a:hover { color: var(--color-accent); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.footer-grid .logo--footer img { height: 64px; filter: brightness(0) invert(1); margin-bottom: 0.75rem; }
.tagline { color: rgba(248, 250, 252, 0.65); font-size: 0.95rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.5rem; }
.site-footer address { font-style: normal; font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
.legal-links { border-top: 1px solid rgba(248, 250, 252, 0.12); padding-top: 1rem; margin-top: 1rem !important; }
.legal-links li { font-size: 0.85rem; }
.footer-bottom {
  border-top: 1px solid rgba(248, 250, 252, 0.12);
  margin-top: 2rem;
  padding-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(248, 250, 252, 0.55);
  text-align: center;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1.3fr; gap: 3rem; }
}


.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}


  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: none;
  z-index: 9999;
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(248, 250, 252, 0.08);
  max-width: 520px;
  margin-inline: auto;
}

:root{--brand-shift:29;--site-accent:hsl(121 44% 38%);--site-warm:hsl(241 36% 92%);}
.logo{min-width:0;max-width:calc(100% - 64px);overflow:hidden;text-decoration:none;display:inline-flex;align-items:center;gap:.5rem;}
.logo img{max-width:min(252px,100%);height:auto;object-fit:contain;}
.site-header,.legal-header{overflow-x:clip;}
.nav-list,.primary-nav ul,.site-nav ul,[data-nav]{min-width:0;}
.contact-form input,.contact-form textarea,button,a{overflow-wrap:anywhere;}
@media (max-width:720px){body{overflow-x:hidden;}.logo img{max-width:min(218px,70vw);}.hero,.site-header,.site-footer,main,section{max-width:100%;}}

.reveal, .reveal.visible, [data-reveal], .fade-in, .animate-in {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
main, section, article, .card, .hero, .intro, .cta-band {
  visibility: visible;
}
.site-nav.open, .site-nav.is-open, .primary-nav.open, .primary-nav.is-open, [data-nav].open, [data-nav].is-open {
  display: flex !important;
}
