html {
  scroll-behavior: smooth;
}

:root {
  --ink: #0f172a;
  --slate: #1f2937;
  --muted: #5b667a;
  --primary: #2B5F8A;
  --primary-dark: #1e4a6e;
  --accent: #7ec8e3;
  --lavender: #a8d8ea;
  --sky: #edf6fc;
  --card: #ffffff;
  --sand: #f9fbfd;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", sans-serif;
  color: var(--slate);
  background: #ffffff;
  scroll-behavior: smooth;
}

.page-shell {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 0;
  background: var(--primary);
  color: #ffffff;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 0 0 10px 0;
  z-index: 200;
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 0;
}

img {
  max-width: 100%;
  display: block;
}

/* ========== TOP BAR ========== */

.top-bar {
  background: var(--primary-dark);
  color: #ffffff;
  font-size: 0.85rem;
  padding: 6px 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px 28px;
  flex-wrap: wrap;
}

.top-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-sep {
  opacity: 0.5;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ffffff;
  opacity: 0.9;
  white-space: nowrap;
}

a.top-bar-item:hover {
  opacity: 1;
}

/* ========== NAV ========== */

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6vw;
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-name {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
}

.nav-links a {
  color: var(--slate);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(43, 95, 138, 0.2);
  background: var(--sky);
  cursor: pointer;
  position: relative;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle-bar:nth-child(3) {
  opacity: 0;
}

.nav-open .nav-toggle-bar:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle-bar:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========== ANNOUNCEMENT BANNER ========== */

.announcement-banner {
  background: var(--sky);
  border-bottom: 1px solid rgba(43, 95, 138, 0.1);
  padding: 10px 6vw;
  text-align: center;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.announcement-tag {
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.announcement-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .announcement-content {
    flex-direction: column;
    gap: 6px;
  }
}

/* ========== BUTTONS ========== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(43, 95, 138, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: #ffffff;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--sky);
}

.btn-small {
  padding: 10px 18px;
  font-size: 0.9rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
  border-radius: 6px;
  box-shadow: 0 0 0 2px #ffffff;
}

/* ========== HERO ========== */

.hero {
  position: relative;
  background: linear-gradient(135deg, #e8f4fd 0%, #d4ecf9 30%, #bde0f5 60%, #a8d8ea 100%);
  overflow: hidden;
  padding: 0 6vw;
  padding-bottom: 0;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0 80px;
  position: relative;
  z-index: 1;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-brand-showcase {
  width: min(100%, 440px);
}

.hero-logo {
  width: 100%;
  display: block;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(43, 95, 138, 0.16));
}

.hero-photo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.mini-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 36px rgba(30, 74, 110, 0.14);
  background: #ffffff;
}

.mini-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 1.2 / 0.82;
  object-fit: cover;
}

.hero-photo-note {
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: var(--primary-dark);
  text-align: center;
}

.hero-text h1 {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--primary-dark);
  margin: 0 0 16px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(43, 95, 138, 0.14);
  color: var(--primary-dark);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 480px;
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Decorative bubbles */
.hero-bubbles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.bubble-1 { width: 60px; height: 60px; top: 10%; left: 5%; }
.bubble-2 { width: 30px; height: 30px; top: 25%; left: 15%; }
.bubble-3 { width: 45px; height: 45px; top: 60%; right: 8%; }
.bubble-4 { width: 20px; height: 20px; top: 15%; right: 20%; }
.bubble-5 { width: 35px; height: 35px; bottom: 25%; left: 45%; }
.bubble-6 { width: 25px; height: 25px; top: 40%; right: 35%; }

/* Wave divider at bottom of hero */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 2;
}

/* ========== SECTIONS ========== */

.section {
  padding: 70px 6vw;
}

.section-title {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--ink);
  margin: 0 0 18px;
}

.section-subtitle {
  max-width: 720px;
  color: var(--muted);
  margin-bottom: 36px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.section-center {
  text-align: center;
}

.section-center .section-title,
.section-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle-wide {
  max-width: 100%;
}

.section-alt {
  background: var(--sky);
}

/* ========== CONTENT SECTIONS ========== */

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card,
.detail-panel,
.contact-card,
.faq-item {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.feature-card-highlight {
  background: linear-gradient(180deg, #ffffff 0%, #f2f9fd 100%);
  border-color: rgba(43, 95, 138, 0.2);
  box-shadow: 0 18px 40px rgba(43, 95, 138, 0.12);
}

.feature-kicker {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--primary);
}

.feature-card h3,
.detail-panel h3,
.photo-card figcaption {
  margin-top: 0;
}

.feature-card p,
.detail-panel p,
.body-copy {
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.6;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.check-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.check-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.split-top {
  align-items: start;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.photo-card-wide {
  grid-column: 1 / -1;
}

.photo-card img {
  width: 100%;
  height: auto;
  display: block;
}

.photo-card figcaption {
  padding: 14px 16px 16px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ========== SPLIT / LOCATION ========== */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
}

.location-details {
  margin-bottom: 24px;
}

.location-details p {
  margin: 8px 0;
  color: var(--muted);
}

.location-details a {
  color: var(--primary);
  text-decoration: underline;
}

.location-panel p + p {
  margin-top: 14px;
}

/* ========== FAQ ========== */

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  font-weight: 700;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.faq-item p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* ========== CONTACT ========== */

.contact-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px;
}

form {
  display: grid;
  gap: 16px;
}

.form-status {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.form-status.is-success {
  color: #0f5132;
}

.form-status.is-error {
  color: #842029;
}

.honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #d7deef;
  font-family: inherit;
  font-size: 1rem;
}

label {
  font-weight: 600;
  color: var(--ink);
}

.checkbox-row {
  display: grid;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
}

.checkbox-row input {
  width: auto;
  margin-right: 10px;
}

.checkbox-row a {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ========== FOOTER ========== */

.site-footer {
  padding: 50px 6vw 60px;
  background: var(--primary-dark);
  color: #ffffff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.footer-meta {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: #ffffff;
}

/* ========== SUBPAGES ========== */

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(43, 95, 138, 0.1);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.page-hero {
  padding: 80px 6vw 40px;
  text-align: center;
}

.page-hero h1 {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0 0 12px;
  color: var(--ink);
}

.page-content {
  padding: 0 6vw 80px;
  max-width: 900px;
  margin: 0 auto;
}

.page-content h2 {
  color: var(--ink);
}

.page-content p,
.page-content li {
  color: var(--muted);
  line-height: 1.7;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    right: 6vw;
    top: 70px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(148, 163, 184, 0.2);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow);
    z-index: 10;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-open .nav-links {
    display: flex;
  }

  .top-bar {
    font-size: 0.78rem;
    padding: 5px 4vw;
    gap: 2px 20px;
  }

  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px 0 70px;
    gap: 16px;
  }

  .hero-image {
    order: -1;
  }

  .hero-brand-showcase {
    width: min(100%, 360px);
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
  }

  .hero-info {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .btn {
    padding: 12px 22px;
    font-size: 0.9rem;
  }

  .contact-card {
    padding: 24px;
  }

  .hero-photo-strip {
    gap: 10px;
  }
}
