*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; color: #0a1b2a; background: #ffffff; line-height: 1.6; }
:root {
@@
}
html { scroll-behavior: smooth; }
:root {
  --blue-900: #0b3d91;
  --blue-800: #1853a8;
  --blue-700: #1e61be;
  --blue-600: #2570d4;
  --blue-100: #f0f7ff;
  --ink-900: #0a1b2a;
  --ink-700: #23364a;
  --ink-500: #49607a;
  --white: #ffffff;
  --container: 1120px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11,61,145,0.12);
}
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 999; background: rgba(255,255,255,.96); backdrop-filter: saturate(1.1) blur(6px); border-bottom: 1px solid rgba(17,74,166,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .875rem 0; }
.brand { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; color: var(--blue-900); font-weight: 800; letter-spacing: .02em; }
.brand-mark { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, var(--blue-900), var(--blue-600)); color: var(--white); font-weight: 800; }
.brand-text { font-size: 1.125rem; }
.brand-logo { width: auto; height: auto; max-height: 30px; display: block; border-radius: 6px; object-fit: cover; }
.site-nav ul { list-style: none; display: flex; gap: 1rem; margin: 0; padding: 0; }
.site-nav a { display: inline-block; padding: .5rem .75rem; border-radius: 999px; color: var(--ink-700); text-decoration: none; font-weight: 600; }
.site-nav a:hover { background: var(--blue-100); color: var(--blue-900); }
.site-nav a.active { background: var(--blue-100); color: var(--blue-900); box-shadow: inset 0 0 0 1px rgba(11,61,145,0.12); }
.site-nav a[href="#services"].active { background: transparent; box-shadow: none; color: var(--ink-700); }
.site-nav a[href="#about"].active { background: transparent; box-shadow: none; color: var(--ink-700); }
.cta-link { background: var(--blue-900); color: var(--white) !important; box-shadow: var(--shadow); }
.cta-link:hover { background: var(--blue-800); }
.nav-toggle { display: none; border: 0; background: transparent; cursor: pointer; }
.nav-toggle-bar { display: block; width: 22px; height: 2px; background: var(--ink-700); margin: 5px 0; transition: .2s ease; }
.hero { position: relative; color: var(--white); background: linear-gradient(180deg, #0b3d91 0%, #1853a8 60%, #1e61be 100%); overflow: hidden; }
.bg-hero { background-image: url('./images/background.jpg'); background-size: 100% auto; background-repeat: no-repeat; background-position: top center; min-height: 100vh; }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 2rem; padding: 6rem 0 4rem; }
.hero h1 { margin: 0 0 .5rem; font-size: clamp(1.8rem, 3.5vw + 1rem, 3rem); line-height: 1.15; letter-spacing: .02em; }
.hero .tagline { margin: .25rem 0 1.25rem; font-size: clamp(1rem, .9vw + .8rem, 1.25rem); color: #e6f0ff; }
.btn { display: inline-block; padding: .7rem 1rem; border-radius: 999px; text-decoration: none; font-weight: 700; letter-spacing: .01em; }
.btn-primary { background: var(--white); color: var(--blue-900); box-shadow: 0 6px 18px rgba(11,61,145,0.18); }
.btn-primary:hover { background: #f2f6ff; }
.btn-ghost { background: transparent; color: #eef5ff; border: 1px solid rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.hero .wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 120px; }
.section { padding: 4rem 0; background: var(--white); }
.section-alt { background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%); }
.section h2 { margin: 0 0 1rem; font-size: clamp(1.4rem, 1.2vw + 1rem, 2rem); color: var(--blue-900); }
.section p { margin: .25rem 0 0; color: var(--ink-700); }
.section-glacier { background: var(--blue-100); }
.section.centered > .container > h2,
.section.centered > .container > p { text-align: center; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card { background: var(--white); border: 1px solid rgba(17,74,166,0.12); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(11,61,145,0.18); }
.card-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 12px; display: block; margin-bottom: .75rem; }
.post { background: var(--white); border: 1px solid rgba(17,74,166,0.12); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.contact-form .form-row { display: grid; gap: .35rem; }
.contact-form label { font-weight: 700; color: var(--ink-700); }
.contact-form input, .contact-form textarea { padding: .7rem .8rem; border-radius: 10px; border: 1px solid rgba(17,74,166,0.25); font: inherit; }
.contact-form textarea { resize: vertical; }
.form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: .75rem; }
.site-footer { background: #071f4a; color: #cfe2ff; padding: 2rem 0; }
.site-footer p { margin: 0; text-align: center; }
/* Back to top */
.back-to-top { position: fixed; right: 20px; bottom: 150px; z-index: 1000; background: #ffffff; color: var(--blue-900); border: 1px solid rgba(17,74,166,0.15); border-radius: 50%; box-shadow: var(--shadow); width: 48px; height: 48px; padding: 0; display: none; cursor: pointer; line-height: 1; }
.back-to-top .arrow { font-weight: 900; font-size: 1.6rem; line-height: 1; display: inline-block; }
.back-to-top.show { display: inline-flex; align-items: center; justify-content: center; }
.back-to-top svg { width: 24px; height: 24px; fill: var(--blue-900); display: block; }
/* Contact info cards */
.contact-info { display: grid; gap: .75rem; margin-top: 1rem; justify-items: stretch; width: 100%; max-width: 560px; }
.info-card { display: grid; grid-template-columns: 32px 1fr; align-items: center; gap: .5rem; background: var(--white); border: 1px solid rgba(17,74,166,0.12); border-radius: 12px; padding: .9rem 1rem; box-shadow: var(--shadow); width: 100%; min-height: 110px; }
.info-card .icon { width: 32px; height: 32px; display: grid; place-items: center; font-size: 1.1rem; color: var(--blue-700); }
.contact-grid { display: flex; flex-direction: row; gap: 1rem; align-items: stretch; margin-top: 1rem; }
.contact-left { display: grid; gap: .75rem; flex: 0.9; max-width: 520px; width: 100%; }
.map-card { position: relative; flex: 0 0 520px; max-width: 520px; width: 100%; height: 230px; border: 1px solid rgba(17,74,166,0.12); border-radius: 12px; box-shadow: var(--shadow); background: #ffffff; }
.map-img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; display: block; }
.map-link { display: block; width: 100%; height: 100%; border-radius: 12px; overflow: hidden; }
.map-label { position: absolute; top: 10px; left: 10px; background: rgba(255,255,255,0.9); color: var(--ink-900); border: 1px solid rgba(17,74,166,0.12); border-radius: 999px; padding: .25rem .6rem; font-weight: 700; }
.google-maps-icon { background: url('./images/google maps icon.png') center center / contain no-repeat; }
.map-icon-bg { width: 100%; height: 100%; border-radius: 12px; }
.map-label-find { position: absolute; top: 10px; left: 10px; color: #0a1b2a; font-weight: 700; font-size: inherit; }
.map-pin { position: absolute; width: 16px; height: 16px; background: var(--blue-700); border-radius: 999px; left: 60%; top: 45%; box-shadow: 0 0 0 4px rgba(47,127,240,0.25); }
@media (max-width: 720px) {
  .contact-grid { flex-direction: column; }
  .map-card { flex: initial; max-width: 100%; width: 100%; height: 230px; }
}
.info-card a { color: var(--blue-900); text-decoration: none; font-weight: 600; }
.info-card a:hover { text-decoration: underline; }
.align-left { text-align: left !important; }
/* Fancy heading style */
.fancy-title { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-weight: 800; letter-spacing: .01em; }

/* Ensure anchored sections are not hidden under sticky header */
#home, #about, #services, #contact { scroll-margin-top: 80px; }
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .site-nav { position: fixed; inset: 56px 0 auto 0; background: rgba(255,255,255,.98); backdrop-filter: blur(8px); transform: translateY(-120%); transition: transform .25s ease; border-bottom: 1px solid rgba(17,74,166,0.08); }
  .site-nav.open { transform: translateY(0); }
  .site-nav ul { flex-direction: column; padding: .75rem; gap: .25rem; }
  .nav-toggle { display: inline-block; }
  .cards, .contact-form { grid-template-columns: 1fr; }
}


