:root {
  --navy: #152433;
  --navy-2: #0d1822;
  --steel: #445d72;
  --blue: #246a9c;
  --orange: #e57924;
  --orange-dark: #c95f0e;
  --ink: #1a2731;
  --muted: #667581;
  --line: #dbe1e5;
  --soft: #f3f5f6;
  --white: #fff;
  --shadow: 0 18px 50px rgba(16, 34, 48, .10);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
a { color: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 12px; top: 12px; z-index: 999; background: white; padding: 10px 14px; border-radius: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.topbar { background: var(--navy-2); color: #dbe5ec; font-size: .9rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar a { color: white; text-decoration: none; font-weight: 700; }
.topbar-links { display: flex; align-items: center; gap: 10px; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(219,225,229,.85); backdrop-filter: blur(12px); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
.brand-mark { width: 46px; height: 46px; display: grid; place-items: center; color: var(--orange); flex: 0 0 auto; }
.brand-mark svg { display: block; }
.brand-text { line-height: 1.05; display: grid; gap: 5px; }
.brand-text strong { font-size: 1.05rem; letter-spacing: -.02em; }
.brand-text span { font-size: .82rem; color: var(--steel); letter-spacing: .04em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a { text-decoration: none; font-weight: 700; color: #2f414f; padding: 10px 13px; border-radius: 9px; }
.site-nav a:hover { background: var(--soft); }
.site-nav .nav-cta { color: white; background: var(--navy); padding-inline: 18px; }
.site-nav .nav-cta:hover { background: var(--steel); }
.menu-button { display: none; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; width: 26px; height: 2px; background: var(--navy); margin: 5px 0; }

.hero { position: relative; overflow: hidden; color: white; background:
  radial-gradient(circle at 75% 20%, rgba(80,134,168,.24), transparent 30%),
  linear-gradient(120deg, var(--navy-2), var(--navy) 52%, #203b50); }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .08; background-image: linear-gradient(135deg, transparent 48%, #fff 49%, #fff 51%, transparent 52%); background-size: 24px 24px; }
.hero-grid { position: relative; z-index: 1; min-height: 590px; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 70px; padding-block: 72px; }
.eyebrow { margin: 0 0 10px; text-transform: uppercase; font-size: .78rem; letter-spacing: .14em; font-weight: 900; color: var(--orange-dark); }
.hero .eyebrow { color: #ffac65; }
.hero h1 { margin: 0; font-size: clamp(3rem, 6vw, 5.4rem); line-height: .98; letter-spacing: -.055em; max-width: 800px; }
.hero-lead { color: #d8e2e9; font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 680px; margin: 25px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 12px 20px; border-radius: 10px; text-decoration: none; border: 0; cursor: pointer; font: inherit; font-weight: 800; transition: transform .16s ease, background .16s ease, border-color .16s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--orange); color: white; }
.button-primary:hover { background: var(--orange-dark); }
.button-secondary { color: white; background: transparent; border: 1px solid rgba(255,255,255,.45); }
.button-secondary:hover { border-color: white; background: rgba(255,255,255,.08); }
.hero-notes { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-notes span { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.07); border-radius: 999px; padding: 7px 11px; color: #dce7ed; font-size: .86rem; }

.hero-visual { display: flex; justify-content: center; }
.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-grid > div { padding: 27px 22px; border-right: 1px solid var(--line); }
.stat-grid > div:first-child { border-left: 1px solid var(--line); }
.stat-grid strong, .stat-grid span { display: block; }
.stat-grid strong { font-size: 1.04rem; color: var(--navy); }
.stat-grid span { color: var(--muted); font-size: .88rem; margin-top: 4px; }

.section { padding: 92px 0; }
.section-heading { max-width: 760px; margin-bottom: 40px; }
.section h2 { margin: 0; color: var(--navy); font-size: clamp(2rem, 4.2vw, 3.35rem); line-height: 1.08; letter-spacing: -.04em; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; margin: 18px 0 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: white; box-shadow: 0 8px 26px rgba(16,34,48,.04); }
.product-card h3 { margin: 12px 0 8px; color: var(--navy); font-size: 1.25rem; }
.product-card p { color: var(--muted); margin: 0; }
.product-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; color: var(--orange-dark); background: #fff1e6; font-size: 1.35rem; font-weight: 900; }
.product-card-callout { color: white; border-color: var(--navy); background: var(--navy); }
.product-card-callout h3, .product-card-callout p { color: white; }
.product-card-callout p { color: #d9e4ea; }
.product-card-callout .product-icon { background: rgba(255,255,255,.1); color: #ffb06c; }

.section-dark { background: var(--navy); color: white; }
.section-dark h2 { color: white; }
.eyebrow-light { color: #ffab63; }
.split-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 75px; align-items: start; }
.about-copy { font-size: 1.1rem; color: #d8e2e8; }
.about-copy p:first-child { margin-top: 0; }
.about-copy p:last-child { margin-bottom: 0; }

.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.location-card, .hours-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.location-card address { margin: 18px 0 22px; color: var(--steel); font-size: 1.12rem; font-style: normal; }
.contact-lines { display: grid; gap: 8px; margin-bottom: 25px; }
.contact-lines p { margin: 0; display: flex; gap: 12px; }
.contact-lines strong { min-width: 80px; color: var(--navy); }
.contact-lines a { color: var(--blue); font-weight: 800; }
.hours-list { margin-top: 22px; border-top: 1px solid var(--line); }
.hours-list div { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.hours-list span { color: var(--muted); }
.holiday-details { margin-top: 18px; }
.holiday-details summary { cursor: pointer; font-weight: 800; color: var(--blue); }
.holiday-list { display: grid; gap: 7px; padding-top: 14px; color: var(--muted); font-size: .92rem; }
.map-wrap { margin-top: 20px; }
.map-wrap iframe { display: block; width: 100%; height: 350px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }

.contact-section { background: linear-gradient(180deg, white, #f6f7f8); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: 70px; }
.contact-grid > div:first-child > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.contact-callout { margin-top: 30px; padding: 18px; border-left: 4px solid var(--orange); background: #fff7f0; display: grid; gap: 2px; }
.contact-callout a { color: var(--blue); font-size: 1.28rem; font-weight: 900; text-decoration: none; }
.form-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.form-card form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card label { display: grid; gap: 6px; color: var(--navy); font-weight: 800; font-size: .93rem; }
input, textarea { width: 100%; border: 1px solid #cbd3d8; border-radius: 9px; padding: 12px 13px; font: inherit; color: var(--ink); background: white; }
input:focus, textarea:focus { outline: 3px solid rgba(36,106,156,.17); border-color: var(--blue); }
textarea { resize: vertical; min-height: 135px; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-submit { justify-self: start; }
.form-note { color: var(--muted); font-size: .82rem; margin: -4px 0 0; }
.form-message { border-radius: 10px; padding: 12px 14px; margin-bottom: 18px; font-weight: 700; }
.form-message.success { background: #e7f5ed; color: #1b633a; border: 1px solid #b5dfc6; }
.form-message.error { background: #fff0ed; color: #8b2c20; border: 1px solid #efc3bb; }

.site-footer { background: var(--navy-2); color: #d2dce3; padding-top: 55px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 35px; }
.brand-footer { color: white; }
.brand-footer .brand-text span { color: #b9c8d1; }
.footer-grid > div { display: grid; align-content: start; gap: 7px; }
.footer-grid strong { color: white; }
.footer-grid a { color: #dbe7ee; text-decoration: none; }
.footer-grid p { color: #aebdc6; max-width: 360px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding: 20px 0 26px; color: #8fa2ae; font-size: .85rem; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .site-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 1px); display: none; flex-direction: column; align-items: stretch; padding: 12px; background: white; border: 1px solid var(--line); border-radius: 0 0 14px 14px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { text-align: center; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; gap: 42px; padding-block: 60px; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-notes { justify-content: center; }
  .hero-visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid > div:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .stat-grid > div:nth-child(4) { border-top: 1px solid var(--line); }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .split-grid, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .topbar-inner { justify-content: center; padding-block: 8px; }
  .topbar-inner > span { display: none; }
  .nav-wrap { min-height: 70px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-text strong { font-size: .95rem; }
  .brand-text span { font-size: .73rem; }
  .hero-grid { padding-block: 48px; }
  .hero h1 { font-size: clamp(2.8rem, 15vw, 4rem); }
  .hero-actions .button { width: 100%; }
  .section { padding: 70px 0; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-grid > div { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .stat-grid > div:first-child { border-top: 0; }
  .product-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card, .location-card, .hours-card { padding: 23px; }
  .hours-list div { flex-direction: column; gap: 2px; }
  .footer-grid { grid-template-columns: 1fr; }
}

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


/* Building photo */
.building-photo { margin: 0; }
.building-photo img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 47%; border-radius: 24px; border: 1px solid rgba(255,255,255,.2); box-shadow: 0 24px 55px rgba(0,0,0,.30); background: #d9dde0; }
.building-photo figcaption { margin-top: 9px; color: #9fb0bb; font-size: .72rem; line-height: 1.35; }

/* Articles / resources */
.resources-section { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.resources-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 34px; }
.resources-heading > div { max-width: 760px; }
.resources-heading h2 { margin: 0; }
.resources-heading p:last-child { color: var(--muted); font-size: 1.05rem; margin: 16px 0 0; }
.resources-heading .button-secondary { color: var(--navy); border-color: #b8c4cc; background: white; white-space: nowrap; }
.article-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.article-card { display: block; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 8px 26px rgba(16,34,48,.05); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.article-card:hover { transform: translateY(-2px); border-color: #bfcbd2; box-shadow: 0 14px 34px rgba(16,34,48,.09); }
.article-kicker { display: block; color: var(--orange-dark); font-weight: 900; font-size: .72rem; letter-spacing: .13em; }
.article-card h3 { color: var(--navy); margin: 10px 0 8px; font-size: 1.25rem; line-height: 1.25; }
.article-card p { color: var(--muted); margin: 0 0 18px; }
.article-link { color: var(--blue); font-weight: 850; }
.article-empty { grid-column: 1 / -1; display: grid; gap: 4px; padding: 28px; border: 1px dashed #b8c4cc; border-radius: var(--radius); background: white; color: var(--muted); }
.article-empty strong { color: var(--navy); font-size: 1.1rem; }

/* Standalone article pages */
.page-hero { background: linear-gradient(120deg, var(--navy-2), var(--navy) 60%, #203b50); color: white; padding: 70px 0 66px; }
.page-hero .eyebrow { color: #ffac65; }
.page-hero h1 { margin: 0; font-size: clamp(2.5rem, 5.4vw, 4.5rem); line-height: 1.02; letter-spacing: -.05em; max-width: 900px; }
.page-hero p:not(.eyebrow) { color: #d8e2e9; max-width: 760px; font-size: 1.16rem; }
.article-list-wrap { padding: 70px 0 92px; }
.article-list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.article-list-card { display: block; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; background: white; box-shadow: 0 8px 26px rgba(16,34,48,.05); }
.article-list-card:hover { border-color: #b8c4cc; box-shadow: var(--shadow); }
.article-list-card time { display: block; color: var(--muted); font-size: .83rem; margin-bottom: 9px; }
.article-list-card h2 { margin: 0 0 10px; color: var(--navy); font-size: 1.55rem; line-height: 1.2; letter-spacing: -.02em; }
.article-list-card p { margin: 0; color: var(--muted); }
.article-shell { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 68px 0 90px; }
.article-meta { color: var(--muted); font-size: .9rem; margin-bottom: 14px; }
.article-body { color: #263641; font-size: 1.06rem; line-height: 1.78; }
.article-body h2 { color: var(--navy); font-size: 1.75rem; line-height: 1.2; margin: 2.3em 0 .65em; letter-spacing: -.025em; }
.article-body h3 { color: var(--navy); font-size: 1.3rem; margin: 1.8em 0 .55em; }
.article-body p, .article-body ul, .article-body ol, .article-body blockquote, .article-body table { margin: 0 0 1.25em; }
.article-body a { color: var(--blue); font-weight: 700; }
.article-body blockquote { border-left: 4px solid var(--orange); background: #fff7f0; padding: 16px 20px; margin-inline: 0; }
.article-body table { width: 100%; border-collapse: collapse; font-size: .96rem; }
.article-body th, .article-body td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.article-body th { background: var(--soft); color: var(--navy); }
.article-faq { margin-top: 46px; border-top: 1px solid var(--line); padding-top: 34px; }
.article-faq h2 { margin-top: 0; }
.article-faq details { border-bottom: 1px solid var(--line); padding: 14px 0; }
.article-faq summary { cursor: pointer; color: var(--navy); font-weight: 850; }
.article-back { margin-top: 42px; }
.article-back .button-secondary { color: var(--navy); border-color: #b8c4cc; background: white; }
.article-back .button-secondary:hover { background: var(--soft); }
section[id] { scroll-margin-top: 96px; }

@media (max-width: 900px) {
  .resources-heading { align-items: start; flex-direction: column; }
  .article-card-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .article-card-grid, .article-list-grid { grid-template-columns: 1fr; }
  .article-shell { width: min(100% - 28px, 820px); }
}
