/* ==========================================================================
   Language Access Partners — design system
   Palette from brand logo: navy #23548a · terracotta #cd5b33 · ink #222024
   ========================================================================== */

:root {
  /* Brand */
  --navy: #23548a;
  --navy-deep: #1a3f68;
  --navy-ink: #14304f;
  --terracotta: #cd5b33;
  --terracotta-deep: #b04a26;
  --ink: #222024;
  --ink-soft: #4b4a4f;
  --ink-mute: #6e6d73;

  /* Surfaces */
  --paper: #fdfcfa;
  --paper-warm: #f7f4ef;
  --paper-blue: #f0f4f9;
  --line: #e5e1da;
  --line-strong: #d5d0c8;
  --white: #ffffff;

  /* Type */
  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Rhythm */
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(34, 32, 36, 0.05), 0 2px 8px rgba(34, 32, 36, 0.05);
  --shadow-md: 0 2px 4px rgba(34, 32, 36, 0.05), 0 12px 32px rgba(34, 32, 36, 0.09);
  --shadow-lg: 0 4px 8px rgba(20, 48, 79, 0.06), 0 24px 56px rgba(20, 48, 79, 0.14);
  --wrap: 1140px;
}

/* ---------- Reset / base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.35rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); letter-spacing: -0.008em; }
h3 { font-size: 1.28rem; }
h4 { font-size: 1.08rem; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--terracotta); }

ul { padding-left: 1.2em; }

:focus-visible {
  outline: 3px solid rgba(35, 84, 138, 0.45);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection { background: rgba(35, 84, 138, 0.18); }

.wrap {
  width: min(var(--wrap), calc(100% - 2.5rem));
  margin-inline: auto;
}

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

.skip-link {
  position: absolute;
  left: 1rem; top: -3.5rem;
  z-index: 200;
  background: var(--navy-ink);
  color: #fff;
  padding: 0.55rem 1rem;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- Top utility bar ---------- */

.topbar {
  background: var(--navy-ink);
  color: #cfdcec;
  font-size: 0.85rem;
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.4rem;
  padding-block: 0.3rem;
}

.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: #f0b9a2; }

.topbar-group { display: flex; align-items: center; gap: 1.35rem; flex-wrap: wrap; }

.topbar-item { display: inline-flex; align-items: center; gap: 0.4rem; white-space: nowrap; }
.topbar-item svg { width: 14px; height: 14px; flex: none; opacity: 0.75; }

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(205, 91, 51, 0.22);
  color: #f6c9b5;
  border: 1px solid rgba(205, 91, 51, 0.45);
  border-radius: 999px;
  padding: 0.12rem 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .topbar-hours, .topbar-mail { display: none; }
  .topbar .wrap {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.1rem;
    padding-block: 0.4rem;
  }
}

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.6rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand img { height: 46px; width: auto; }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--ink);
  letter-spacing: 0.002em;
  white-space: nowrap;
}
.brand-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  white-space: nowrap;
}

.site-nav { display: flex; align-items: center; gap: 1.9rem; }

.site-nav a {
  color: var(--ink-soft);
  font-weight: 550;
  font-size: 0.96rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--navy); }
.site-nav a[aria-current="page"] {
  color: var(--navy);
  border-bottom-color: var(--terracotta);
}

.header-cta { display: inline-flex; align-items: center; gap: 0.9rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0.5rem 0.6rem;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 1.25rem 1rem;
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.7rem 0.25rem; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
  .site-nav a:last-child { border-bottom: none; }
  .site-nav a[aria-current="page"] { border-bottom-color: var(--line); }
  .nav-toggle { display: inline-flex; }
  .header-cta .btn { display: none; }
  .brand img { height: 40px; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 650;
  font-size: 0.98rem;
  line-height: 1;
  padding: 0.9rem 1.5rem;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.12s ease, box-shadow 0.16s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 17px; height: 17px; }

.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 2px 6px rgba(205, 91, 51, 0.35);
}
.btn-primary:hover { background: var(--terracotta-deep); color: #fff; box-shadow: 0 4px 14px rgba(205, 91, 51, 0.4); }

.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-deep); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(35, 84, 138, 0.4);
}
.btn-outline:hover { border-color: var(--navy); background: rgba(35, 84, 138, 0.06); color: var(--navy); }

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.22); color: #fff; }

.btn-lg { padding: 1.05rem 1.85rem; font-size: 1.05rem; border-radius: 12px; }
.btn-sm { padding: 0.6rem 1.05rem; font-size: 0.88rem; }

/* ---------- Sections ---------- */

.section { padding-block: clamp(3.4rem, 7vw, 5.6rem); }
.section-warm { background: var(--paper-warm); }
.section-blue { background: var(--paper-blue); }
.section-navy { background: linear-gradient(160deg, var(--navy-ink) 0%, var(--navy-deep) 55%, var(--navy) 130%); color: #dbe6f2; }
.section-navy h2, .section-navy h3 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.section-navy .section-head p { color: #b9cade; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}
.section-head.center .eyebrow::after {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}

/* ---------- Hero (home) ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(52rem 30rem at 112% -18%, rgba(35, 84, 138, 0.1), transparent 60%),
    radial-gradient(40rem 26rem at -14% 118%, rgba(205, 91, 51, 0.08), transparent 55%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-block: clamp(3.6rem, 8vw, 6.4rem);
}

.hero-copy p.lead {
  font-size: clamp(1.08rem, 1.9vw, 1.24rem);
  color: var(--ink-soft);
  max-width: 34em;
  margin-bottom: 1.9rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.2rem; }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--ink-mute);
  font-size: 0.92rem;
  font-weight: 550;
}
.hero-proof li { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-proof svg { width: 16px; height: 16px; color: var(--terracotta); flex: none; }

.hero-art { position: relative; min-height: 320px; }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { display: none; }
}

/* ---------- Service cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
  .card-grid, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .card-grid, .card-grid.cols-2, .card-grid.cols-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }

.card .icon-tile { margin-bottom: 1.1rem; }
.card h3 { margin-bottom: 0.45rem; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }
.card .card-link {
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 650;
  font-size: 0.93rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.card .card-link svg { width: 15px; height: 15px; transition: transform 0.16s ease; }
.card .card-link:hover svg { transform: translateX(3px); }

.card-feature {
  border-top: 3px solid var(--navy);
}
.card-feature.accent { border-top-color: var(--terracotta); }

.icon-tile {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, rgba(35, 84, 138, 0.12), rgba(35, 84, 138, 0.05));
  color: var(--navy);
}
.icon-tile svg { width: 26px; height: 26px; }
.icon-tile.accent {
  background: linear-gradient(150deg, rgba(205, 91, 51, 0.14), rgba(205, 91, 51, 0.05));
  color: var(--terracotta);
}

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  counter-reset: step;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 1.5rem 1.5rem 1.4rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: rgba(35, 84, 138, 0.25);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step h3 { font-size: 1.12rem; }
.step p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ---------- Language chips ---------- */

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--navy-ink);
}
.chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.85;
}
.chip.chip-more { background: transparent; border-style: dashed; color: var(--ink-mute); }
.chip.chip-more::before { background: var(--ink-mute); }

/* ---------- Industry grid ---------- */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 980px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }

.industry {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.industry svg { width: 20px; height: 20px; color: var(--navy); flex: none; }

/* ---------- Feature list (why choose us) ---------- */

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem 2.2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 760px) { .feature-list { grid-template-columns: 1fr; } }

.feature-list li { display: flex; gap: 0.95rem; align-items: flex-start; }
.feature-list .icon-tile { width: 44px; height: 44px; border-radius: 11px; flex: none; }
.feature-list .icon-tile svg { width: 22px; height: 22px; }
.feature-list h3 { font-size: 1.08rem; margin-bottom: 0.25rem; }
.feature-list p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ---------- Mission quote ---------- */

.mission {
  position: relative;
  text-align: center;
  max-width: 46em;
  margin-inline: auto;
}
.mission blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}
.mission blockquote::before { content: "\201C"; color: var(--terracotta); }
.mission blockquote::after { content: "\201D"; color: var(--terracotta); }
.mission figcaption {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9fb7d0;
}

/* ---------- Stats band ---------- */

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  text-align: center;
}
@media (max-width: 800px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }

.stat .stat-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
}
.stat .stat-label { color: var(--ink-mute); font-weight: 550; font-size: 0.92rem; margin-top: 0.3rem; }

/* ---------- CTA band ---------- */

.cta-band {
  background:
    radial-gradient(42rem 20rem at 90% -30%, rgba(205, 91, 51, 0.35), transparent 60%),
    linear-gradient(150deg, var(--navy-ink), var(--navy-deep));
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(2.4rem, 5vw, 3.6rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #dbe6f2;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; margin-bottom: 0.35rem; }
.cta-band p { color: #b9cade; margin: 0; max-width: 34em; }
.cta-band .cta-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; flex: none; }
@media (max-width: 860px) { .cta-band { flex-direction: column; align-items: flex-start; } }

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  background:
    radial-gradient(46rem 24rem at 108% -30%, rgba(35, 84, 138, 0.12), transparent 60%),
    radial-gradient(34rem 20rem at -10% 130%, rgba(205, 91, 51, 0.07), transparent 55%),
    var(--paper-warm);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.8rem, 6vw, 4.4rem);
}
.page-hero h1 { max-width: 18em; }
.page-hero .lead {
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 40em;
  margin: 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-mute);
  margin-bottom: 1.1rem;
}
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--terracotta); }

/* ---------- Split layout ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split > * { min-width: 0; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split.split-40-60 { grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); }
@media (max-width: 880px) { .split.split-40-60 { grid-template-columns: 1fr; } }

/* ---------- Service detail blocks ---------- */

.service-block {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}
.service-block + .service-block { margin-top: 1.4rem; }
.service-block .icon-tile { width: 64px; height: 64px; border-radius: 16px; }
.service-block .icon-tile svg { width: 30px; height: 30px; }
.service-block h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.service-block .service-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.2rem;
}
.service-block p { color: var(--ink-soft); }
.service-block ul { color: var(--ink-soft); margin: 0.7rem 0 0; }
.service-block li { margin-bottom: 0.35rem; }
.service-block li::marker { color: var(--terracotta); }
@media (max-width: 620px) {
  .service-block { grid-template-columns: 1fr; }
}

/* ---------- Checklist ---------- */

.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: var(--ink-soft);
}
.checklist svg { width: 20px; height: 20px; color: var(--terracotta); flex: none; margin-top: 0.15rem; }
.checklist strong { color: var(--ink); }

/* ---------- Forms ---------- */

.form-shell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem 1.3rem;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-weight: 650;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.field .hint { font-weight: 500; color: var(--ink-mute); font-size: 0.82rem; }

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.72rem 0.9rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(35, 84, 138, 0.14);
}

.form-note {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  background: var(--paper-blue);
  border: 1px solid rgba(35, 84, 138, 0.18);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--navy-ink);
}
.form-note svg { width: 18px; height: 18px; flex: none; margin-top: 0.1rem; color: var(--navy); }

.form-success {
  background: #eef7ef;
  border: 1px solid #bcdcc0;
  color: #245c2d;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---------- Tabs ---------- */

.tabs { display: flex; gap: 0.5rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.tab-btn {
  font-family: var(--sans);
  font-weight: 650;
  font-size: 0.96rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.15s ease;
}
.tab-btn:hover { border-color: var(--navy); color: var(--navy); }
.tab-btn[aria-selected="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.tab-panel[hidden] { display: none; }

/* ---------- Accordion (FAQ) ---------- */

.accordion { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); overflow: hidden; }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion details:last-child { border-bottom: none; }
.accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 650;
  font-size: 1.02rem;
  color: var(--ink);
  transition: background 0.14s ease;
}
.accordion summary:hover { background: var(--paper-warm); }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary .acc-icon {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.accordion summary .acc-icon svg { width: 13px; height: 13px; }
.accordion details[open] summary { color: var(--navy); }
.accordion details[open] .acc-icon {
  transform: rotate(45deg);
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.accordion .acc-body { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); max-width: 60em; }

/* ---------- Contact cards ---------- */

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.contact-card .icon-tile { margin-bottom: 0.9rem; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.contact-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 0.2rem; }
.contact-card a.big {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  overflow-wrap: anywhere;
}
.contact-card { min-width: 0; }
.contact-card a.big:hover { color: var(--terracotta); }

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-frame iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-ink);
  color: #b9cade;
  padding: clamp(3rem, 6vw, 4.2rem) 0 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1.4fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  padding-bottom: 2.6rem;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { height: 44px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { color: #93aac4; font-size: 0.92rem; max-width: 26em; }

.site-footer h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: #b9cade; }
.footer-links a:hover { color: #f0b9a2; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 0.6rem; margin-bottom: 0.7rem; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; flex: none; margin-top: 0.28rem; color: var(--terracotta); }
.footer-contact a { color: #dbe6f2; font-weight: 600; }
.footer-contact a:hover { color: #f0b9a2; }

.footer-bottom {
  border-top: 1px solid rgba(185, 202, 222, 0.16);
  padding: 1.3rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #7f97b3;
}

/* ---------- Reveal animation ---------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.in { opacity: 1; transform: none; }
  .reveal-d1 { transition-delay: 0.08s; }
  .reveal-d2 { transition-delay: 0.16s; }
  .reveal-d3 { transition-delay: 0.24s; }
}

/* ---------- Hero bubble art (home) ---------- */

.bubble-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0.5rem;
}

.speech {
  position: relative;
  max-width: 78%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  padding: 0.75rem 1.25rem;
  box-shadow: var(--shadow-md);
  align-self: flex-start;
}
.speech .speech-text {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-ink);
  line-height: 1.2;
}
.speech .speech-lang {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 0.15rem;
}
.speech.right {
  align-self: flex-end;
  background: var(--navy);
  border-color: var(--navy);
  border-radius: 18px;
  border-bottom-right-radius: 4px;
}
.speech.right .speech-text { color: #fff; }
.speech.right .speech-lang { color: #a8c0d9; }
.speech.accent {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.speech.accent .speech-text { color: #fff; }
.speech.accent .speech-lang { color: #f3cdbc; }

@media (prefers-reduced-motion: no-preference) {
  .speech { animation: speech-in 0.7s ease backwards; }
  .speech:nth-child(2) { animation-delay: 0.18s; }
  .speech:nth-child(3) { animation-delay: 0.36s; }
  .speech:nth-child(4) { animation-delay: 0.54s; }
  @keyframes speech-in {
    from { opacity: 0; transform: translateY(14px) scale(0.97); }
    to { opacity: 1; transform: none; }
  }
}

.hero-art .art-caption {
  margin-top: 1.4rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- Utility ---------- */

.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.text-center { text-align: center; }
