/* === Tokens === */
:root {
  --color-primary: #0369A1;
  --color-secondary: #0EA5E9;
  --color-accent: #F97316;
  --color-neutral-dark: #0C4A6E;
  --color-neutral-light: #F0F9FF;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 20px rgba(12, 74, 110, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(12, 74, 110, 0.2);
  --shadow-lg: 0 30px 60px -20px rgba(12, 74, 110, 0.28);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-neutral-dark);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--color-secondary); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 1rem; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1rem; }

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

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(240, 249, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(12, 74, 110, 0.08);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 20px -10px rgba(12, 74, 110, 0.15);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 0.75rem; gap: 1rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; }
.logo-footer img { height: 72px; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(12, 74, 110, 0.15);
  border-radius: 10px; padding: 0.5rem; color: var(--color-neutral-dark);
  cursor: pointer;
}
.primary-nav { display: none; flex-direction: column; gap: 0.25rem; }
.primary-nav.is-open {
  display: flex; position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; padding: 1rem 1.25rem; box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(12, 74, 110, 0.08);
}
.primary-nav a {
  position: relative; padding: 0.6rem 0.75rem; color: var(--color-neutral-dark);
  font-weight: 500; border-radius: 8px;
}
.primary-nav a.is-active { color: var(--color-primary); }
.primary-nav a.nav-cta {
  background: var(--color-primary); color: #fff; padding: 0.6rem 1.1rem;
  border-radius: 999px;
}
.primary-nav a.nav-cta:hover { background: var(--color-neutral-dark); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; flex-direction: row; align-items: center; gap: 0.25rem; position: static; padding: 0; box-shadow: none; background: transparent; }
  .primary-nav a { padding: 0.5rem 0.9rem; }
  .primary-nav a:not(.nav-cta)::after {
    content: ''; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.3rem;
    height: 2px; background: var(--color-primary); transform: scaleX(0); transform-origin: left;
    transition: transform .25s var(--ease);
  }
  .primary-nav a:not(.nav-cta):hover::after,
  .primary-nav a.is-active:not(.nav-cta)::after { transform: scaleX(1); }
  .logo img { height: 96px; }
  .logo-footer img { height: 80px; }
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9rem 1.6rem; border-radius: 999px; font-family: var(--font-heading);
  font-weight: 600; font-size: 1rem; cursor: pointer; border: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff; box-shadow: 0 8px 24px -8px rgba(3, 105, 161, 0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -10px rgba(3, 105, 161, 0.6); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--color-primary);
  border: 1.5px solid rgba(3, 105, 161, 0.25);
}
.btn-ghost:hover { background: var(--color-neutral-light); transform: translateY(-2px); }

/* === Hero card === */
.hero {
  position: relative;
  padding-block: 3rem 4rem;
  background:
    radial-gradient(ellipse at top left, rgba(14, 165, 233, 0.12), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(249, 115, 22, 0.08), transparent 60%),
    var(--color-neutral-light);
  overflow: hidden;
}
.hero-card__inner {
  max-width: 880px; margin-inline: auto;
  background: #fff; border-radius: 24px;
  padding: 2.5rem 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.eyebrow {
  display: inline-block; font-family: var(--font-heading); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem;
  color: var(--color-primary); margin: 0 0 1rem;
  padding: 0.35rem 0.85rem; background: rgba(14, 165, 233, 0.12); border-radius: 999px;
}
.hero-card__inner h1 { margin-bottom: 1.25rem; }
.hero-card__inner .lede { font-size: 1.15rem; color: rgba(12, 74, 110, 0.75); max-width: 56ch; margin-inline: auto; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin: 1.75rem 0 2rem; }
.hero-card__image { margin: 2rem -0.5rem -0.5rem; }
.hero-card__image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 14px; }

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

/* === Sections === */
.section { padding-block: 4rem; }
@media (min-width: 768px) { .section { padding-block: 5.5rem; } }
.section h2 { text-align: center; }
.section-sub {
  text-align: center; color: rgba(12, 74, 110, 0.7);
  max-width: 65ch; margin: 0 auto 2.5rem; font-size: 1.05rem;
}
.intro p { font-size: 1.05rem; color: rgba(12, 74, 110, 0.85); }
.intro.two-col .section-sub { text-align: left; margin-inline: 0; }
.intro.two-col h2 { text-align: left; }

/* === Grids === */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
.align-center { align-items: center; }
.align-start { align-items: start; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

/* === Cards === */
.card {
  display: block; background: #fff; padding: 1.75rem;
  border-radius: var(--radius); border: 1px solid rgba(12, 74, 110, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-link { color: inherit; }
.card-link:hover { color: inherit; border-color: rgba(14, 165, 233, 0.35); }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(3, 105, 161, 0.08));
  color: var(--color-primary); margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.95rem; color: rgba(12, 74, 110, 0.72); margin: 0; }

.framed-image img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-md);
}

/* === Testimonial === */
.testimonial blockquote {
  margin: 0; padding: 2.5rem 1.5rem; text-align: center;
  border-radius: var(--radius); background: linear-gradient(135deg, rgba(3, 105, 161, 0.06), rgba(14, 165, 233, 0.05));
  border: 1px solid rgba(3, 105, 161, 0.1);
}
.testimonial p {
  font-family: var(--font-heading); font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 500; line-height: 1.5; color: var(--color-neutral-dark); margin: 0 0 1.25rem;
}
.testimonial cite {
  font-style: normal; font-size: 0.95rem; color: var(--color-primary); font-weight: 600;
}

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff; padding-block: 4rem; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.18), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.25), transparent 55%);
  pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 55ch; margin: 0 auto 1.75rem; }
.cta-band .btn-primary {
  background: var(--color-accent); box-shadow: 0 10px 30px -10px rgba(249, 115, 22, 0.6);
}
.cta-band .btn-primary:hover { background: #ea6a10; }

/* === FAQ === */
.faq details {
  background: #fff; border: 1px solid rgba(12, 74, 110, 0.1);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem; margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm); transition: box-shadow .2s var(--ease);
}
.faq details[open] { box-shadow: var(--shadow-md); border-color: rgba(14, 165, 233, 0.3); }
.faq summary {
  cursor: pointer; font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem;
  color: var(--color-neutral-dark); list-style: none; position: relative; padding-right: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--color-primary); transition: transform .2s var(--ease);
}
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 0.75rem; color: rgba(12, 74, 110, 0.78); }

/* === Contact === */
.contact-info address { font-style: normal; margin: 1rem 0; }
.contact-info h3 { margin-top: 1.5rem; }
.hours { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.hours th, .hours td { text-align: left; padding: 0.55rem 0.5rem; border-bottom: 1px solid rgba(12, 74, 110, 0.08); font-weight: 500; }
.hours th { color: var(--color-neutral-dark); font-family: var(--font-heading); }
.hours td { color: rgba(12, 74, 110, 0.75); }

.contact-form {
  background: #fff; padding: 2rem 1.5rem; border-radius: var(--radius);
  border: 1px solid rgba(12, 74, 110, 0.08); box-shadow: var(--shadow-sm);
}
.contact-form h2 { text-align: left; margin-bottom: 1.25rem; }
.form-row { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-row label { font-family: var(--font-heading); font-weight: 500; font-size: 0.95rem; color: var(--color-neutral-dark); }
.form-row input, .form-row textarea {
  font-family: var(--font-body); font-size: 1rem; padding: 0.75rem 0.9rem;
  border: 1px solid rgba(12, 74, 110, 0.15); border-radius: 10px; background: #fff;
  color: var(--color-neutral-dark); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}
.form-consent {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.9rem; color: rgba(12, 74, 110, 0.78); margin: 1rem 0 1.25rem;
  flex-wrap: wrap;
}
.form-consent input { margin-top: 0.25rem; }
.contact-form .btn { width: 100%; }
@media (min-width: 640px) { .contact-form { padding: 2.5rem; } .contact-form .btn { width: auto; } }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark); color: rgba(240, 249, 255, 0.85);
  padding-block: 3rem 1.5rem; margin-top: 2rem;
}
.site-footer h3 { color: #fff; }
.site-footer .grid { gap: 2rem; }
.site-footer a { color: rgba(240, 249, 255, 0.85); }
.site-footer a:hover { color: #fff; }
.logo-footer { margin-bottom: 1rem; display: inline-block; }
.logo-footer img { filter: brightness(0) invert(1); }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact { font-style: normal; }
.footer-contact p { margin-bottom: 0.4rem; }
.legal-links { margin-top: 1rem; font-size: 0.9rem; }
.copyright {
  border-top: 1px solid rgba(240, 249, 255, 0.1); margin-top: 2.5rem;
  padding-top: 1.25rem; text-align: center; font-size: 0.85rem; color: rgba(240, 249, 255, 0.6);
}

/* === Reveal animation === */
.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; } }













:root { --brand-accent: hsl(122 72% 44%); --brand-ink: hsl(161 48% 20%); }
.logo { min-width: 0; }
.logo img { max-width: min(100%, 17rem); height: auto; }
.reveal, .fade-in, .animate-in, [data-reveal], [data-animate], .scroll-reveal { opacity: 1 !important; transform: none !important; visibility: visible !important; }
.site-legal { min-height: 100vh; display: flex; flex-direction: column; }
.legal-main { flex: 1; padding: clamp(2rem, 6vw, 5rem) 1.25rem; }
.legal-card { width: min(100%, 52rem); margin: 0 auto; }
.legal-card h1, .legal-card h2 { color: var(--brand-ink, currentColor); }
.legal-date { margin-top: 2rem; opacity: .72; }
@media (max-width: 780px) { .site-header .container { gap: .75rem; } .site-header .logo { max-width: calc(100% - 3.75rem); } [data-nav-menu].is-open, .site-nav.is-open, .primary-nav.is-open, .nav-links.is-open { display: flex !important; } }
