:root {
  --bg: #f7f2ea;
  --surface: rgba(255, 252, 247, 0.86);
  --surface-strong: #fffaf3;
  --text: #1f2430;
  --muted: #5e6472;
  --line: rgba(31, 36, 48, 0.12);
  --primary: #0b6e69;
  --primary-deep: #094c48;
  --accent: #f29f67;
  --shadow: 0 20px 55px rgba(20, 28, 38, 0.1);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(242, 159, 103, 0.26), transparent 30%),
    radial-gradient(circle at right 10% top 20%, rgba(11, 110, 105, 0.14), transparent 24%),
    linear-gradient(180deg, #fbf7f0 0%, #f4ede2 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background:
    linear-gradient(90deg, rgba(255, 249, 241, 0.93) 0%, rgba(255, 249, 241, 0.82) 34%, rgba(244, 241, 233, 0.74) 62%, rgba(232, 241, 236, 0.78) 100%),
    url("header-banner-bridge-kids.png") center center / cover no-repeat;
  border-bottom: 1px solid rgba(31, 36, 48, 0.07);
  box-shadow: 0 8px 24px rgba(20, 28, 38, 0.05);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 1rem;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
}

.brand-logo {
  width: clamp(9.5rem, 18vw, 14rem);
  height: auto;
  flex: 0 0 auto;
  display: block;
  padding: 0.3rem 0.45rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(246, 238, 226, 0.92));
  border: 1px solid rgba(31, 36, 48, 0.08);
  box-shadow: 0 8px 18px rgba(20, 28, 38, 0.07);
}

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

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 800;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.language-switcher select {
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  outline: none;
  cursor: pointer;
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 44rem;
  padding: 2rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 14ch;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}

.hero-text,
.section-heading p,
.body-copy p,
.service-card p,
.step-card p,
.contact-copy,
.contact-item p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.03rem;
}

.hero-text {
  max-width: 58ch;
  margin: 1.5rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding-top: 0.5rem;
}

.hero-contact-strip a {
  font-weight: 700;
  color: var(--primary-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.button-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 12px 30px rgba(11, 110, 105, 0.22);
}

.button-primary:hover {
  background: var(--primary-deep);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
}

.hero-card-panel,
.service-card,
.step-card,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card-panel {
  padding: 2rem;
}

.card-kicker {
  margin: 0 0 1.5rem;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}

.info-row {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.info-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.info-row span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-row strong {
  font-size: 1.08rem;
}

.hero-quote {
  margin-top: 1.5rem;
  padding: 1.3rem;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, rgba(242, 159, 103, 0.18), rgba(11, 110, 105, 0.12));
}

.hero-quote p {
  margin: 0;
  line-height: 1.7;
  font-weight: 600;
}

.section {
  padding: 4.5rem 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.28);
}

.section-accent {
  background:
    linear-gradient(180deg, rgba(11, 110, 105, 0.08), rgba(11, 110, 105, 0.02)),
    transparent;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.card-grid,
.steps,
.contact-grid,
.split-layout {
  display: grid;
  gap: 1.5rem;
}

.card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.step-card {
  padding: 1.6rem;
}

.split-layout,
.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.body-copy {
  display: grid;
  gap: 1rem;
}

.body-copy p {
  margin: 0;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-number {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.contact-card {
  padding: 1.8rem;
  background: var(--surface-strong);
}

.contact-summary {
  margin-top: 1.5rem;
}

.contact-item {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.contact-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact-item span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item a {
  font-size: 1.2rem;
  font-weight: 700;
}

.social-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-links a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-deep);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

.contact-form span {
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.full-width {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.location-grid p br {
  content: "";
}

.site-footer {
  padding: 3rem 0;
  background: #173936;
  color: rgba(255, 255, 255, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 2rem;
}

.site-footer h3 {
  margin-bottom: 1rem;
  color: white;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 0.65rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.footer-label {
  color: white;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.footer-social {
  margin-top: 1rem;
}

.footer-social a {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: white;
}

.footer-social .social-icon {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

@media (max-width: 860px) {
  .nav,
  .nav-links,
  .hero-actions,
  .hero-grid,
  .card-grid,
  .steps,
  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: grid;
  }

  .nav-tools {
    display: grid;
    gap: 0.85rem;
  }

  .brand-logo {
    width: min(12rem, 62vw);
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
  }

  .hero {
    padding-top: 3.5rem;
  }

  h1 {
    max-width: 100%;
  }

  .hero-copy {
    padding: 1.4rem;
  }

  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.25rem, 1120px);
  }

  .hero-card-panel,
  .service-card,
  .step-card,
  .contact-card {
    border-radius: 1.2rem;
  }
}
