/* ====== Tokens ====== */
:root {
  --navy: #1c3a94;
  --navy-dark: #142a6e;
  --red: #d11f25;
  --sky: #acdef7;
  --sky-light: #eef8fd;
  --ink: #0f1b3d;
  --ink-soft: #4a5578;
  --paper: #ffffff;
  --line: #e3e9f5;
  --shadow-sm: 0 2px 10px rgba(20, 35, 90, .06);
  --shadow-md: 0 16px 40px rgba(20, 35, 90, .12);
  --shadow-lg: 0 30px 70px rgba(20, 35, 90, .18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --ff-heading: "Unbounded", system-ui, sans-serif;
  --ff-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--ff-heading);
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}

.accent { color: var(--red); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 18px;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(209, 31, 37, .15);
}
.eyebrow-dark { color: var(--navy); }

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), #ef3b3f);
  color: #fff;
  box-shadow: 0 14px 30px rgba(209, 31, 37, .32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(209, 31, 37, .4); }
.btn-ghost {
  background: rgba(28, 58, 148, .06);
  color: var(--navy);
  padding: 12px 20px;
  font-size: 15px;
}
.btn-ghost:hover { background: rgba(28, 58, 148, .12); }

/* ====== Header ====== */
.site-header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 24px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  height: 80px;
  padding: 0 16px 0 32px;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  height: 42px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.header-cta { font-family: var(--ff-heading); font-size: 15px; padding: 14px 24px; flex-shrink: 0; }

/* ====== Hero ====== */
.hero {
  position: relative;
  padding: 148px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--sky-light) 0%, #ffffff 75%);
}
.hero-bg-decor {
  position: absolute;
  inset: -20% -10% auto auto;
  width: 60%;
  height: 70%;
  background: radial-gradient(closest-side, rgba(172, 222, 247, .9), transparent 70%);
  filter: blur(10px);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 0 32px;
}

.city-switch {
  display: inline-flex;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.city-tab {
  border: none;
  background: transparent;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink-soft);
  transition: background .2s ease, color .2s ease;
}
.city-tab.is-active {
  background: var(--navy);
  color: #fff;
}

.city-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
  max-width: 540px;
}
.city-address {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 4px;
}
.city-hours {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.city-phone { width: 100%; font-size: 15px; padding: 14px 20px; }

.hero-trust { display: flex; gap: 14px; flex-wrap: wrap; }
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sky-light);
  border: 1px solid var(--sky);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--navy-dark);
}
.stars { color: #f5a623; letter-spacing: 1px; font-size: 13px; }

.hero-media {
  position: relative;
  display: grid;
}
.hero-media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.hero-media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-media-card {
  position: absolute;
  bottom: -36px;
  left: -40px;
  width: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow-md);
  transform: rotate(-3deg);
}
.hero-media-card img { aspect-ratio: 4/3; object-fit: cover; }

/* ====== Why us ====== */
.why {
  padding: 110px 0 100px;
  background: var(--ink);
  background: radial-gradient(140% 100% at 50% 0%, #16234f 0%, #0f1b3d 55%, #0c1530 100%);
  color: #fff;
}
.section-head { max-width: 640px; margin-bottom: 56px; }
.why .eyebrow-dark { color: var(--sky); }
.why h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 40px);
}
.br-mobile { display: none; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 56px;
}
.why-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .2);
}
.why-card--big {
  grid-column: span 1;
  grid-row: span 2;
  background: linear-gradient(160deg, rgba(209,31,37,.22), rgba(28,58,148,.18));
  border-color: rgba(255, 255, 255, .16);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-card--big h3 { font-size: 24px; margin-bottom: 14px; }
.why-card--big p { font-size: 16px; }
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--sky);
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .68);
  margin: 0;
}

.why-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-photos figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.why-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.why-photos figure:hover img { transform: scale(1.06); }
.why-photos figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(8, 14, 35, .85));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

/* ====== Responsive ====== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 64px; }
  .hero-media { order: -1; max-width: 420px; margin: 0 auto; }
  .hero-media-card { left: 0; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card--big { grid-column: span 2; grid-row: span 1; }
  .why-photos { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .site-header { top: 16px; padding: 0 18px; }
  .header-inner {
    justify-content: center;
    height: 64px;
    padding: 0 22px;
  }
  .header-cta { display: none; }
  .brand-logo { height: 32px; }
  .hero { padding: 108px 0 72px; }
  .hero-media-card { width: 140px; bottom: -24px; }
  .hero-trust { gap: 10px; }
  .city-card { padding: 18px; }
  .why { padding: 72px 0 64px; }
  .br-mobile { display: block; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card--big { grid-column: span 1; grid-row: span 1; }
  .why-photos { grid-template-columns: 1fr; }
  .why-photos figure { aspect-ratio: 16/10; }
}
