:root {
  --blue: #0e3254;
  --blue-2: #195c86;
  --orange: #ff9800;
  --ink: #17212b;
  --muted: #5d6975;
  --paper: #f7fbfd;
  --card: #ffffff;
  --line: #dbe8ef;
  --green: #1f7a5b;
  --shadow: 0 18px 48px rgba(14, 50, 84, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(247, 251, 253, 0.98), rgba(255, 247, 235, 0.74)),
    var(--paper);
  line-height: 1.55;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 12px clamp(18px, 5%, 72px);
  background: rgba(247, 251, 253, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  font-weight: 900;
  font-size: 1.35rem;
}

.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: 0.82rem; }

nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

nav a, .lang-toggle, .icon-action {
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid transparent;
}

nav a {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}

nav a:hover { color: var(--blue); background: white; }

.header-actions { display: flex; gap: 8px; justify-content: end; }

.lang-toggle, .icon-action {
  display: inline-grid;
  place-items: center;
  width: 44px;
  background: white;
  border-color: var(--line);
  color: var(--blue);
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5%, 74px);
  align-items: center;
  min-height: min(820px, calc(100svh - 76px));
  padding: clamp(42px, 7%, 86px) clamp(18px, 5%, 78px) 28px;
}

.hero-copy { max-width: 760px; }

.eyebrow, .panel-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; line-height: 1.04; letter-spacing: 0; }
h1 { max-width: 12ch; font-size: 5.5rem; }
h2 { font-size: 3.4rem; }
h3 { font-size: 2.05rem; }

.hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
}

.button.primary { background: var(--blue); color: white; }
.button.secondary { background: white; border-color: var(--line); color: var(--blue); }

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 34px;
}

.proof-row span {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.proof-row strong, .proof-row small { display: block; }
.proof-row strong { color: var(--blue); font-size: 1.25rem; }
.proof-row small { color: var(--muted); }

.hero-image {
  position: relative;
  min-height: 560px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.image-badge {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(14, 50, 84, 0.84);
  color: white;
}

.image-badge span { color: rgba(255,255,255,0.78); }

.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 5%, 78px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}

.contact-strip a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  align-items: center;
  padding: 16px;
  background: white;
  text-decoration: none;
}

.contact-strip span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #e8f2f8;
  color: var(--blue);
  font-weight: 900;
}

.contact-strip small { color: var(--muted); }

.section { padding: clamp(54px, 7%, 104px) clamp(18px, 5%, 78px); }

.intro, .section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.74fr);
  gap: clamp(24px, 5%, 72px);
  align-items: end;
}

.intro p, .section-head p { color: var(--muted); font-size: 1.06rem; }

.flow { background: white; }
.flow-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 22px;
  margin-top: 34px;
}

.reason-list { display: grid; gap: 10px; }

.reason {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
  min-height: 82px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  text-align: left;
  cursor: pointer;
}

.reason span { grid-row: span 2; color: var(--orange); font-weight: 900; }
.reason small { color: var(--muted); }
.reason.active { border-color: var(--orange); background: #fff6e9; box-shadow: inset 5px 0 0 var(--orange); }

.reason-panel {
  min-height: 100%;
  padding: clamp(20px, 4%, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #e8f2f8, #fff);
}

.reason-panel p { color: var(--muted); font-size: 1.05rem; }

.panel-boxes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.panel-boxes div {
  display: grid;
  gap: 8px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.panel-boxes a { color: var(--blue); font-weight: 900; }

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--blue);
  color: white;
}

.proof-band div { padding: clamp(24px, 4%, 42px); border-right: 1px solid rgba(255,255,255,0.12); }
.proof-band strong, .proof-band span { display: block; }
.proof-band strong { font-size: 1.22rem; }
.proof-band span { margin-top: 8px; color: rgba(255,255,255,0.76); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.service {
  display: grid;
  align-content: start;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  text-decoration: none;
}

.service img { width: 100%; aspect-ratio: 1.25; object-fit: cover; }
.service span, .service strong { margin-left: 16px; margin-right: 16px; }
.service span { margin-top: 16px; color: var(--orange); font-weight: 900; text-transform: uppercase; font-size: 0.8rem; }
.service strong { margin-top: 6px; margin-bottom: 18px; font-size: 1.08rem; }

.hours {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 18px;
  background: #edf6fb;
}

.hours-card, .checklist {
  padding: clamp(22px, 4%, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.hours-card p { color: var(--muted); }
.today-box {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 8px;
  background: var(--blue);
  color: white;
}

.today-box span { color: rgba(255,255,255,0.78); }

.checklist ul { margin: 18px 0 0; padding-left: 20px; color: var(--muted); }
.checklist li + li { margin-top: 10px; }

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 18px;
  background: var(--blue);
}

.contact-card, .request-card {
  padding: clamp(22px, 4%, 42px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: white;
}

.contact-card p, .request-card small { color: rgba(255,255,255,0.76); }
.contact-card dl { display: grid; gap: 12px; margin: 24px 0 0; }
.contact-card dl div { display: grid; grid-template-columns: 100px 1fr; gap: 12px; }
.contact-card dt { color: rgba(255,255,255,0.64); }
.contact-card dd { margin: 0; font-weight: 900; }

.request-card { display: grid; gap: 16px; }
.request-card label { display: grid; gap: 8px; }
.request-card select, .request-card textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  color: var(--ink);
}
.request-card textarea { resize: vertical; }
.request-card .button.primary { background: white; color: var(--blue); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5%, 78px) 94px;
  background: white;
  color: var(--muted);
}
.site-footer p { margin: 0; max-width: 780px; }
.site-footer a { color: var(--blue); font-weight: 900; white-space: nowrap; }

.mobile-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 14px 40px rgba(14, 50, 84, 0.24);
}
.mobile-bar a {
  display: grid;
  place-items: center;
  min-height: 58px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 900;
}
.mobile-bar small { font-size: 0.72rem; }

@media (max-width: 1060px) {
  .site-header { grid-template-columns: auto auto; }
  .site-header nav { grid-column: 1 / -1; justify-content: flex-start; overflow-x: auto; }
  .hero, .intro, .section-head, .flow-grid, .hours, .contact { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-image { min-height: 460px; }
  h1 { font-size: 4.2rem; max-width: 14ch; }
  h2 { font-size: 2.8rem; }
  .contact-strip, .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-band { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header { min-height: 64px; padding: 10px 14px; }
  .site-header nav, .brand small { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  h1 { font-size: 2.85rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.55rem; }
  .hero { padding: 34px 14px 20px; }
  .hero-image { min-height: 360px; }
  .hero-actions, .proof-row, .panel-boxes, .contact-strip, .service-grid { grid-template-columns: 1fr; }
  .hero-actions { display: grid; }
  .contact-strip { margin: 0 14px; }
  .contact-strip a:nth-child(2) { display: none; }
  .section { padding: 48px 14px; }
  .proof-row { display: grid; }
  .contact-card dl div { grid-template-columns: 1fr; gap: 2px; }
  .site-footer { display: grid; padding: 24px 14px 94px; }
  .mobile-bar { display: grid; }
}
