:root {
  --glc-blue: #2563EB;
  --glc-blue-dark: #123C91;
  --glc-blue-deeper: #0B2A6B;
  --glc-red: #DC2626;
  --glc-red-dark: #991B1B;
  --glc-ink: #111827;
  --glc-text: #4B5563;
  --glc-line: #E5E7EB;
  --glc-white: #FFFFFF;
  --glc-cream: #F3F7FC;
  --glc-blue-soft: #EEF5FF;
  --glc-footer: #0F172A;
  --radius: 24px;
  --shadow: 0 18px 42px rgba(17, 24, 39, .10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--glc-ink); background: var(--glc-white); line-height: 1.6; padding-bottom: 0; }
a { color: inherit; }
img { max-width: 100%; display: block; height: auto; }

.skip-link { position: absolute; left: -999px; top: 12px; background: var(--glc-blue-dark); color: #fff; padding: 10px 14px; border-radius: 999px; z-index: 999; }
.skip-link:focus { left: 12px; }

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--glc-line); backdrop-filter: blur(10px); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 22px; position: relative; padding: 12px 0 12px 0; }
.brand { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand img { width: clamp(180px, 28vw, 280px); height: auto; }
.brand-logo { width: 100%; height: auto; display: block; object-fit: contain; }
.open-status { display: none; background: var(--glc-red); color: #fff; border-radius: 999px; padding: 8px 12px; font-size: .78rem; font-weight: 900; white-space: nowrap; }
.open-status.is-open { display: inline-flex; }

.nav { display: flex; align-items: center; gap: 16px; font-size: .94rem; white-space: nowrap; flex-wrap: wrap; }
.nav a { text-decoration: none; font-weight: 700; color: #374151; }
.nav a:hover, .nav a:focus { color: var(--glc-blue-dark); }

.btn, .call-button { border-radius: 999px; min-height: 48px; padding: 12px 20px; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; font-weight: 900; border: 1px solid transparent; line-height: 1.1; transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease; flex-shrink: 0; }
.btn-primary, .call-button { background: linear-gradient(135deg, #2563EB, #123C91); color: #fff; }
.btn-primary:hover, .btn-primary:focus, .call-button:hover, .call-button:focus { background: var(--glc-red); color: #fff; }
.btn-secondary { background: #fff; color: var(--glc-blue-dark); border-color: var(--glc-blue); }
.btn-secondary:hover, .btn-secondary:focus { color: var(--glc-red); border-color: var(--glc-red); }

.mobile-actions { display: none; align-items: center; gap: 10px; }
.mobile-header-call { min-width: 156px; padding-left: 18px; padding-right: 18px; font-size: .92rem; }
.menu-toggle { width: 46px; height: 46px; border: 1px solid var(--glc-line); border-radius: 12px; background: #fff; display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 24px; height: 3px; background: var(--glc-blue-dark); border-radius: 999px; }

/* Hero */
.hero { background: linear-gradient(135deg, #ffffff 0%, var(--glc-blue-soft) 70%, #ffffff 100%); padding: 84px 0; }
.hero-grid { display: grid; grid-template-columns: 1fr .95fr; gap: 48px; align-items: center; }
.kicker { margin: 0 0 14px; color: var(--glc-blue-dark); font-size: .82rem; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }

h1 { font-size: clamp(1.75rem, 5.5vw, 4.35rem); line-height: 1.08; letter-spacing: -.04em; margin: 0; color: var(--glc-blue-deeper); }
h2 { font-size: clamp(1.4rem, 4vw, 2.75rem); line-height: 1.14; letter-spacing: -.03em; margin: 0; color: var(--glc-blue-deeper); }
h3 { margin: 0 0 12px; font-size: clamp(1.05rem, 2.5vw, 1.2rem); letter-spacing: -.02em; color: var(--glc-blue-deeper); }
p { color: var(--glc-text); margin: 14px 0 0; }
.hero p { max-width: 700px; font-size: 1.1rem; }

/* Heart-in-O treatment for h1/h2 only */
.brand-loving { display: inline; line-height: inherit; white-space: nowrap; }
.heart-inline { display: inline-block; width: .82em; height: .82em; vertical-align: -0.10em; margin: 0; }

/* Legal/utility pages: smaller in-body subsection headings */
.legal-body h2 {
  font-size: 1.45rem;
  margin-top: 32px;
  letter-spacing: -.015em;
  line-height: 1.25;
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p { margin: 12px 0; }
.legal-body p:first-child { margin-top: 0; }

.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.hero-visual { border-radius: 30px; background: #fff; border: 10px solid #fff; box-shadow: var(--shadow); overflow: hidden; }
.hero-visual picture, .hero-visual img { display: block; width: 100%; }
.hero-visual img { aspect-ratio: 4 / 3; object-fit: cover; }

/* Sections */
.section { width: 100%; padding: 76px 0; }
.section-white { background: #fff; }
.section-cream { background: var(--glc-cream); }
.section-blue { background: var(--glc-blue-soft); }
.section-cream .card { background: #FFFFFF; border-color: #D8E1EC; }
.section-white .card { background: #F3F7FC; border-color: #D8E1EC; }
.section-blue .card { background: #F8FAFC; border-color: #D8E1EC; }
.section-intro { max-width: 860px; margin: 0 auto 34px; text-align: center; }
.section-intro p { max-width: 760px; margin-left: auto; margin-right: auto; }
.section-intro h2::after { content: ""; display: block; width: 60px; height: 4px; margin: 14px auto 0; border-radius: 999px; background: linear-gradient(90deg, #2563EB, #123C91); }

/* Trust band */
.trust-band { background: linear-gradient(135deg, #123C91 0%, #2563EB 100%); color: #fff; padding: 28px 0; }
.trust-band .container { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; text-align: center; }
.trust-band .since-mark { background: #fff; color: var(--glc-blue-deeper); border-radius: 999px; padding: 10px 22px; font-weight: 900; font-size: 1.05rem; box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.trust-band p { color: #E5EAF7; margin: 0; font-size: 1.05rem; max-width: 720px; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card { background: #F8FAFC; border: 1px solid #D8E1EC; border-radius: var(--radius); padding: 34px; box-shadow: 0 12px 28px rgba(37,99,235,.08); transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(37,99,235,.12); }
.card.center { text-align: center; }
.card h3::after { content: ""; display: block; width: 46px; height: 4px; border-radius: 999px; background: var(--glc-blue); margin-top: 12px; }
.card.center h3::after { margin-left: auto; margin-right: auto; }
.card.highlight h3::after { background: var(--glc-red); }

/* Reviews */
.review-card { position: relative; overflow: hidden; }
.review-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: #FBBF24; }
.stars { color: #D97706; font-weight: 900; letter-spacing: 2px; margin-bottom: 10px; }
.review-card blockquote { margin: 0; font-style: italic; color: var(--glc-ink); }
.review-card .reviewer { margin-top: 14px; font-style: normal; color: var(--glc-text); }
.review-card .reviewer strong { color: var(--glc-ink); }

/* Gallery */
.gallery-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.gallery-row.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery-tile { width: 100%; min-width: 0; overflow: hidden; aspect-ratio: 4 / 3; border-radius: 20px; border: 1px solid var(--glc-line); background: #fff; box-shadow: 0 8px 24px rgba(17,24,39,.05); position: relative; margin: 0; }
.gallery-tile picture, .gallery-tile img { width: 100%; height: 100%; display: block; }
.gallery-tile img { object-fit: contain; background: #f8fafc; }
.gallery-tile figcaption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(11,42,107,.85), rgba(11,42,107,0)); color: #fff; padding: 28px 16px 14px; font-size: .9rem; font-weight: 700; }

/* Location map */
.location-map { margin: 18px 0 16px; border-radius: 18px; overflow: hidden; border: 1px solid #D8E1EC; background: #FFFFFF; box-shadow: 0 16px 36px rgba(18, 60, 145, 0.12); }
.location-map img, .location-map iframe { width: 100%; display: block; border: 0; }
.location-map iframe { aspect-ratio: 16 / 10; }
.visit-note { margin-top: 12px; font-weight: 700; color: var(--glc-blue-dark); text-align: center; }

/* Page hero */
.page-hero { background: linear-gradient(135deg, #ffffff 0%, var(--glc-blue-soft) 70%, #ffffff 100%); padding: 64px 0 48px; text-align: center; }
.page-hero h1 { margin: 0 auto; max-width: 900px; }
.page-hero p { max-width: 720px; margin-left: auto; margin-right: auto; font-size: 1.1rem; }

/* Two-column content */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.two-col img { border-radius: 24px; box-shadow: var(--shadow); }
.two-col .copy h2 { margin-bottom: 16px; }
.two-col .copy p { margin-top: 14px; }
.two-col.reverse > div:first-child { order: 2; }

/* Lists */
.glc-list { padding-left: 0; list-style: none; margin: 18px 0 0; }
.glc-list li { padding: 10px 0 10px 36px; position: relative; color: var(--glc-text); border-bottom: 1px dashed var(--glc-line); }
.glc-list li:last-child { border-bottom: 0; }
.glc-list li::before { content: ""; position: absolute; left: 0; top: 14px; width: 22px; height: 22px; border-radius: 999px; background: var(--glc-blue) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/14px no-repeat; }
.glc-list li strong { color: var(--glc-ink); }

/* Pricing table */
.price-table { width: 100%; border-collapse: collapse; margin-top: 18px; background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 12px 28px rgba(37,99,235,.06); border: 1px solid var(--glc-line); }
.price-table th, .price-table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--glc-line); }
.price-table th { background: var(--glc-blue-soft); color: var(--glc-blue-deeper); font-weight: 900; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table .price { font-weight: 900; color: var(--glc-blue-deeper); white-space: nowrap; }

/* FAQ */
.faq { background: #fff; border: 1px solid var(--glc-line); border-radius: 18px; margin-bottom: 14px; padding: 0; overflow: hidden; }
.faq summary { list-style: none; padding: 22px 26px; cursor: pointer; font-weight: 900; color: var(--glc-blue-deeper); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.6rem; color: var(--glc-red); line-height: 1; }
.faq[open] summary::after { content: "–"; }
.faq[open] summary { border-bottom: 1px solid var(--glc-line); }
.faq .faq-body { padding: 18px 26px 26px; color: var(--glc-text); }
.faq .faq-body p { margin: 0; }

/* Footer */
.footer { background: var(--glc-footer); color: #fff; padding: 52px 0 0; }
.footer p, .footer a { color: #E5E7EB; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 30px; }
.footer h2 { font-size: 1rem; letter-spacing: 0; margin-bottom: 12px; color: #fff; }
.footer-bottom { text-align: center; margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.footer-links a { font-weight: 700; }
.footer-links span { opacity: .5; }
.footer-credit { padding: 4px 0 26px; font-size: .9rem; }
.footer-credit a { color: #fff; font-weight: 900; }
.footer-brand-img { width: 220px; margin-bottom: 14px; height: auto; }

/* Mobile call CTA */
.mobile-call { display: none; position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 120; background: var(--glc-blue); color: #fff; min-height: 64px; border-radius: 999px; align-items: center; justify-content: center; font-weight: 900; font-size: 1.1rem; letter-spacing: .02em; text-decoration: none; box-shadow: 0 12px 28px rgba(37,99,235,.32); }

/* Responsive */
@media (max-width: 1020px) {
  body { padding-bottom: 108px; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: calc(100% + 10px); background: #fff; border: 1px solid var(--glc-line); border-radius: 18px; box-shadow: var(--shadow); padding: 14px; white-space: normal; flex-wrap: nowrap; flex-direction: column; align-items: stretch; }
  .nav.is-open { display: flex; gap: 4px; }
  .nav a { display: block; padding: 12px 14px; border-radius: 12px; }
  .nav .call-button { text-align: center; color: #fff; margin-top: 6px; }
  .mobile-actions { display: flex; flex-shrink: 0; }
  .mobile-header-call { min-width: 0; padding-left: 14px; padding-right: 14px; }
  .header-inner { gap: 12px; }
  .brand { min-width: 0; }
  .brand img { max-width: 220px; }
  .hero-grid, .cards, .cards.two, .cards.four, .gallery-row, .gallery-row.four, .footer-grid, .two-col { grid-template-columns: 1fr; }
  .two-col.reverse > div:first-child { order: 0; }
  .section, .hero { padding: 62px 0; }
  .mobile-call { display: flex; }
  .footer { padding-bottom: 92px; }
}
@media (max-width: 760px) {
  .gallery-row { grid-template-columns: 1fr; }
  .gallery-row.four { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 24px, 1160px); }
  .header-inner { gap: 8px; padding: 10px 0; min-height: 70px; }
  .brand img { width: 140px; }
  .mobile-actions { gap: 6px; }
  .mobile-header-call { min-width: 0; min-height: 44px; font-size: .82rem; padding: 8px 14px; }
  .menu-toggle { width: 42px; height: 42px; flex-shrink: 0; }
  .open-status { display: none !important; }
  .actions a { width: 100%; }
  .card { padding: 28px; }
  .gallery-row.four { grid-template-columns: 1fr; }
  .price-table th, .price-table td { padding: 12px 14px; font-size: .92rem; }
}

@media (max-width: 400px) {
  .brand img { width: 120px; }
  .mobile-header-call { font-size: .78rem; padding: 8px 10px; }
}

/* Focus / motion */
.btn:focus-visible, .call-button:focus-visible, .menu-toggle:focus-visible, a:focus-visible { outline: 3px solid #9DB7D8; outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; } }


/* Legal pages: smaller body H2s for subsection headings */
body.legal-page .section-white h2 { font-size: 1.4rem; line-height: 1.3; letter-spacing: -.01em; margin-top: 28px; margin-bottom: 8px; }
body.legal-page .section-white h2:first-of-type { margin-top: 0; }
body.legal-page .section-white p { margin-top: 8px; }
body.legal-page .section-white .glc-list { margin: 12px 0 8px; }

/* Ensure nav call button is always white text */
.nav .call-button { color: #fff !important; }
