* {
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --text: #15304a;
  --muted: #5d7084;
  --line: rgba(38, 92, 135, 0.15);
  --primary: #2f6fb4;
  --secondary: #39a3d8;
  --teal: #54c7c0;
  --green: #68c08b;
  --shadow: 0 24px 70px rgba(30, 66, 102, 0.13);
  --radius: 22px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(58, 163, 216, 0.11), transparent 28%),
    radial-gradient(circle at bottom right, rgba(104, 192, 139, 0.12), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #f4f8fb 100%);
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(47,111,180,0.03), transparent 22%, rgba(84,199,192,0.05) 54%, transparent 76%),
    radial-gradient(circle at 18% 16%, rgba(47,111,180,0.08), transparent 18%),
    radial-gradient(circle at 82% 84%, rgba(104,192,139,0.08), transparent 18%);
  z-index: -1;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  width: min(940px, 100%);
  margin: 0 auto;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(21,48,74,0.08);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 1rem 1rem 1rem 1.2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 0.35rem;
}

.cookie-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cookie-copy a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(21, 48, 74, 0.08);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  height: 62px;
  width: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.primary-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.primary-nav a:hover {
  color: var(--secondary);
  transform: translateY(-1px);
}

.nav-cta,
.btn {
  border-radius: 999px;
}

.nav-cta {
  padding: 0.75rem 1rem;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: var(--white) !important;
  box-shadow: 0 12px 30px rgba(47, 111, 180, 0.24);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(21, 48, 74, 0.08);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 999px;
}

/* Hero */
.hero {
  background: #edf4f9;
}

.hero-banner {
  width: 100%;
  height: auto;
  display: block;
}

.hero-intro {
  padding: 3.5rem 0 1rem;
}

.hero-intro-content {
  max-width: 860px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.8rem;
}

.hero-intro h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.98;
}

.hero-intro p,
.section-header p,
.intro p,
.contact-copy p,
.form-note,
.info-card p,
.service-card p,
.resource-card p,
.faq-answer p,
.mini-stat p,
.highlight-card span,
.footer-brand p,
.policy-copy p,
.policy-copy li {
  color: var(--muted);
  line-height: 1.72;
}

.hero-intro p {
  font-size: 1.08rem;
  max-width: 54ch;
  margin: 1.2rem auto 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.btn {
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.96rem;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  box-shadow: 0 16px 34px rgba(47, 111, 180, 0.24);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.82);
  border-color: rgba(21, 48, 74, 0.08);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.3rem;
}

.highlight-card,
.info-card,
.service-card,
.resource-card,
.glass-panel,
.process-panel,
.faq-wrap,
.policy-card {
  background: rgba(255,255,255,0.76);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.highlight-card {
  padding: 1.1rem 1rem;
  text-align: left;
}

.highlight-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

/* Layout */
.section {
  padding: 6.2rem 0;
}

.grid-2,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-header h2,
.intro h2,
.contact-copy h2,
.cta-band h2,
.policy-copy h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.glass-panel {
  padding: 1.5rem;
}

.mini-stat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.mini-stat:last-child {
  border-bottom: 0;
}

.mini-stat-number {
  min-width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(47,111,180,0.12), rgba(84,199,192,0.12));
  color: var(--primary);
}

.card-grid.three,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.info-card,
.service-card,
.resource-card,
.policy-card {
  padding: 1.5rem;
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(47,111,180,0.14), rgba(104,192,139,0.18));
  color: var(--primary);
}

.info-card h3,
.service-card h3,
.resource-card h3,
.process-panel h3,
.faq-wrap h3,
.policy-card h2,
.footer-links h4,
.booking-header h3 {
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
}

.accent-section {
  position: relative;
}

.accent-section::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto auto;
  width: 45vw;
  height: 45vw;
  max-width: 520px;
  max-height: 520px;
  background: radial-gradient(circle, rgba(84,199,192,0.10), transparent 64%);
  pointer-events: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--green));
}

.process-panel {
  margin-top: 1.5rem;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 1rem;
  align-items: center;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.process-steps span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(47,111,180,0.10), rgba(84,199,192,0.10));
  font-weight: 700;
  color: var(--text);
}

.resource-card a {
  display: inline-block;
  margin-top: 0.9rem;
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
}

.faq-wrap {
  margin-top: 1.6rem;
  padding: 1.4rem;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1rem 0;
  font: inherit;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1rem;
  font-size: 1.3rem;
  color: var(--secondary);
}

.faq-item.open .faq-question::after {
  content: "–";
}

.faq-answer {
  display: none;
  padding: 0 0 1rem;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Contact and booking */
.contact-section {
  padding-bottom: 5.2rem;
}

.booking-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: flex-start !important;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 640px;
}

.contact-copy h2 {
  max-width: 11ch;
}

.contact-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-points div {
  display: grid;
  gap: 0.25rem;
  min-height: 96px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  align-content: center;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.6);
}

.contact-points span {
  color: var(--muted);
}

.booking-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
}

.booking-header {
  margin: 0 0 1rem;
  padding-top: 2px;
}

.booking-header h3 {
  font-size: 1.6rem;
  line-height: 1.1;
}

.booking-panel {
  flex: 1 1 auto;
  min-height: 940px;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.booking-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 940px;
  border: 0 !important;
  outline: 0;
  background: transparent;
}

/* CTA band */
.cta-band {
  padding-top: 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.6rem 1.7rem;
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(47,111,180,0.10), rgba(84,199,192,0.13), rgba(104,192,139,0.12));
  border: 1px solid rgba(255,255,255,0.62);
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  background: linear-gradient(180deg, rgba(20,42,64,0.98), rgba(16,35,52,1));
  color: #e8f2fb;
}

.footer-top {
  padding: 3rem 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  height: 62px;
  width: auto;
  margin-bottom: 1rem;
  border-radius: 12px;
}

.footer-company {
  color: #ffffff !important;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.footer-brand a,
.footer-links a {
  color: #c5dcf3;
  text-decoration: none;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.5rem;
}

.footer-links h4 {
  color: #ffffff;
  margin-bottom: 0.9rem;
}

.footer-links a {
  display: block;
  margin-bottom: 0.7rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner {
  padding: 1rem 0 1.4rem;
}

.footer-bottom p {
  margin: 0;
  color: #b7cbde;
  line-height: 1.6;
  font-size: 0.94rem;
}

/* Policy pages */
.policy-page {
  padding: 4rem 0 5rem;
}

.policy-copy {
  max-width: 900px;
  margin: 0 auto;
}

.policy-copy ul {
  padding-left: 1.2rem;
}

.policy-copy .back-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1180px) {
  .booking-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 980px) {
  .hero-highlights,
  .card-grid.three,
  .resource-grid,
  .service-grid,
  .grid-2,
  .contact-grid,
  .process-panel,
  .footer-top,
  .footer-links,
  .cta-band-inner,
  .cookie-inner,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .process-panel,
  .cta-band-inner,
  .cookie-inner {
    display: grid;
  }

  .booking-column {
    margin-top: 0.5rem;
  }

  .booking-panel,
  .booking-panel iframe {
    min-height: 980px;
  }

  .contact-copy,
  .contact-copy h2 {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 1rem;
    left: 1rem;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(21,48,74,0.08);
    box-shadow: var(--shadow);
    border-radius: 22px;
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .primary-nav a {
    padding: 0.7rem 0.2rem;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.35rem;
  }

  .brand-logo {
    height: 54px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.5rem 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .booking-panel,
  .booking-panel iframe {
    min-height: 1120px;
  }
}
