:root {
  --bg: #ffffff;
  --bg-soft: #f5f8ff;
  --paper: #ffffff;
  --panel: #ffffff;
  --ink: #06080d;
  --muted: #526073;
  --line: rgba(9, 18, 35, 0.1);
  --accent: #2154ff;
  --accent-strong: #1544dd;
  --accent-soft: rgba(33, 84, 255, 0.08);
  --accent-dark: #06080d;
  --success: #174a9b;
  --shadow: 0 18px 45px rgba(13, 24, 54, 0.06);
  --shadow-lg: 0 28px 70px rgba(13, 24, 54, 0.12);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --container: 1200px;
  --mobile-cta-height: 78px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  font-family: "Manrope", sans-serif;
  line-height: 1.72;
  overflow-x: hidden;
}

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

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

.hidden {
  display: none !important;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(9, 18, 35, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: min(220px, 44vw);
  height: auto;
}

.brand--compact img {
  width: min(188px, 44vw);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  position: relative;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(33, 84, 255, 0), rgba(33, 84, 255, 1), rgba(33, 84, 255, 0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(13, 24, 54, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.menu-toggle:hover {
  background: #ffffff;
  border-color: rgba(33, 84, 255, 0.18);
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle__bars {
  position: relative;
}

.menu-toggle__bars::before,
.menu-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle__bars::before {
  top: -6px;
}

.menu-toggle__bars::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  padding: 0 0 18px;
}

.mobile-nav nav {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  justify-items: center;
  text-align: center;
}

.mobile-nav a {
  color: var(--muted);
  font-weight: 600;
  width: 100%;
}

.mobile-nav a.is-active {
  color: var(--ink);
}

.mobile-quick-bar {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  transition: transform 0.2s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #2154ff 0%, #0b1b4f 100%);
  box-shadow: 0 12px 24px rgba(33, 84, 255, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 16px 28px rgba(33, 84, 255, 0.22);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border-color: rgba(9, 18, 35, 0.12);
  box-shadow: 0 8px 18px rgba(13, 24, 54, 0.04);
}

.btn-dark {
  color: #fff;
  background: var(--accent-dark);
  box-shadow: 0 12px 22px rgba(6, 8, 13, 0.14);
}

.btn-outline {
  color: var(--accent-strong);
  border-color: rgba(33, 84, 255, 0.24);
  background: rgba(33, 84, 255, 0.04);
}

.eyebrow {
  display: inline-block;
  padding: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.eyebrow::before {
  content: none;
}

.section {
  padding: 56px 0;
}

.section--hero {
  padding: 0 0 36px;
}

.section--tight {
  padding-top: 18px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.section-head__copy {
  max-width: 700px;
}

.section-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3.7vw, 3.75rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.section-title--sm {
  font-size: clamp(1.9rem, 2.7vw, 2.85rem);
}

.section-copy {
  margin: 16px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-card,
.content-card,
.glass-card,
.promo-card,
.service-card,
.story-card,
.contact-card,
.price-intro,
.hours-card,
.panel-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: none;
}

.hero-band {
  width: 100%;
  color: #fff;
  background:
    linear-gradient(135deg, #02040a 0%, #0c1f59 52%, #2154ff 100%);
}

.hero-band__inner {
  padding: clamp(78px, 9vw, 112px) 0 clamp(62px, 7vw, 82px);
}

.hero-band h1 {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.15rem, 7vw, 5.75rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  max-width: 980px;
}

.hero-band__copy {
  margin: 24px 0 0;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

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

.hero-band__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
}

.hero-band__meta strong {
  display: block;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.94rem;
}

.hero-band__meta span {
  display: block;
  margin-top: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

.split-banner,
.promo-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 36px 0 0;
  border-radius: 0;
  border-top: 2px solid var(--accent);
  background: transparent;
  color: var(--ink);
  overflow: visible;
}

.split-banner h2,
.promo-banner h2,
.promo-banner h3 {
  margin: 12px 0 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.split-banner h2 {
  font-size: clamp(2.5rem, 4vw, 4.1rem);
}

.split-banner p,
.promo-banner p {
  margin: 14px 0 0;
  color: var(--muted);
}

.banner-list {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.banner-list div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.banner-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.glass-card {
  padding: 0 0 14px;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  backdrop-filter: none;
}

.glass-card strong {
  display: block;
  font-size: 1.06rem;
}

.glass-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.stats-grid,
.services-grid,
.promos-grid,
.story-grid,
.contact-grid,
.two-col-grid,
.mini-grid {
  display: grid;
  gap: 20px;
}

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

.stat-card {
  padding: 22px 0 0;
  border-radius: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-width: 0;
  border-top-width: 1px;
  box-shadow: none;
}

.stat-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 18px;
  border-radius: 16px;
  overflow: hidden;
  border-width: 1px;
  border-top-width: 3px;
  border-top-color: var(--accent);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(33, 84, 255, 0.18);
}

.service-card__media {
  aspect-ratio: 5 / 4;
  border-radius: 14px;
  overflow: hidden;
  background: #eff4ff;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__header,
.status-pill {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  width: 100%;
  padding: 0;
  background: transparent;
  color: var(--accent-strong);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-card__price {
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: 0;
}

.service-card h3 {
  margin: 14px 0 0;
  font-size: 1.18rem;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.service-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.service-card__actions {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-strong);
  font-weight: 800;
}

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

.promo-card {
  padding: 22px 22px 24px;
  border-radius: 16px;
  min-height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
}

.promo-card--dark {
  color: var(--ink);
  background: transparent;
}

.promo-card--dark p,
.promo-card--dark .promo-card__meta {
  color: var(--muted);
}

.promo-card h3 {
  margin: 12px 0 0;
  font-size: 1.38rem;
  line-height: 1.04;
}

.promo-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.promo-card__meta {
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--muted);
}

.promo-card__actions {
  margin-top: 22px;
}

.story-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.story-card,
.contact-card,
.hours-card,
.panel-card,
.price-intro {
  padding: 34px;
  border-radius: 14px;
}

.story-card h3,
.contact-card h3,
.hours-card h3,
.panel-card h3 {
  margin: 0;
  font-size: 1.4rem;
}

.story-card p,
.contact-card p,
.hours-card p,
.panel-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.story-photo {
  position: relative;
  min-height: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: none;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-photo__label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.story-photo__label strong {
  display: block;
}

.story-photo__label span {
  display: block;
  margin-top: 4px;
  font-size: 0.86rem;
  color: var(--muted);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
}

.contact-stack,
.detail-stack,
.price-grid {
  display: grid;
  gap: 18px;
}

.detail-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.detail-list div {
  padding: 14px 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(9, 18, 35, 0.08);
}

.detail-list strong {
  display: block;
  font-size: 0.92rem;
}

.detail-list span,
.detail-list a {
  color: var(--muted);
}

.map-frame {
  margin-top: 18px;
  border-radius: 12px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: none;
  border: 1px solid var(--line);
}

.map-frame iframe,
.map-frame img {
  width: 100%;
  height: 100%;
  border: 0;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
}

.price-grid {
  align-content: start;
}

.price-intro p {
  color: var(--muted);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.quick-links a {
  padding: 0 0 6px;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(33, 84, 255, 0.24);
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 800;
}

.price-group {
  padding: 34px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.price-group h3 {
  margin: 0;
  font-size: 1.6rem;
}

.price-group p {
  margin: 10px 0 0;
  color: var(--muted);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.price-table th,
.price-table td {
  text-align: left;
  vertical-align: top;
  padding: 14px 8px;
  border-top: 1px solid rgba(79, 58, 43, 0.1);
}

.price-table th {
  padding-top: 0;
  border-top: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-table td:first-child,
.price-table th:first-child {
  padding-left: 0;
}

.price-table td:last-child,
.price-table th:last-child {
  padding-right: 0;
}

.price-table__service strong {
  display: block;
  font-size: 1rem;
}

.price-table__service span {
  display: block;
  margin-top: 4px;
  font-size: 0.87rem;
  color: var(--muted);
}

.price-table__value {
  font-weight: 800;
  white-space: nowrap;
}

.disclaimer {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.page-hero {
  padding: 18px 0 12px;
}

.page-hero__panel {
  padding: clamp(34px, 5vw, 54px);
  border-radius: 16px;
  background: linear-gradient(135deg, #02040a 0%, #0c1f59 52%, #2154ff 100%);
  color: #ffffff;
  box-shadow: none;
}

.page-hero__panel p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.page-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.page-hero__facts span {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-bottom: 6px;
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.timeline div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid rgba(79, 58, 43, 0.1);
}

.timeline strong {
  color: var(--accent-strong);
}

.team-grid,
.value-grid {
  display: grid;
  gap: 24px;
}

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

.team-card {
  padding: 26px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid var(--line);
  box-shadow: none;
}

.team-card__meta {
  display: flex;
  gap: 14px;
  align-items: center;
}

.team-card__meta img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
}

.team-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.team-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.value-card {
  padding: 26px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid var(--line);
}

.value-card strong {
  display: block;
  font-size: 1rem;
}

.value-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.cta-band {
  padding: 34px 36px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245, 248, 255, 1), rgba(232, 239, 255, 1));
  border: 1px solid rgba(33, 84, 255, 0.14);
  box-shadow: none;
}

.cta-band h2,
.cta-band h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 0.98;
}

.cta-band p {
  margin: 12px 0 0;
  max-width: 720px;
  color: var(--muted);
}

.cta-band__row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer {
  margin-top: 36px;
  padding: 36px 0;
}

.site-footer__panel {
  display: grid;
  gap: 20px;
  padding: 30px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(135deg, #02040a, #0d1838);
  color: #ffffff;
}

.site-footer__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.site-footer__copy {
  max-width: 420px;
  color: rgba(255, 247, 238, 0.76);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer__links a {
  color: rgba(255, 247, 238, 0.86);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 245, 230, 0.12);
  color: rgba(255, 247, 238, 0.65);
  font-size: 0.9rem;
}

.form-shell {
  display: grid;
  gap: 16px;
}

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

.field {
  display: grid;
  gap: 8px;
}

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

.field label {
  font-size: 0.88rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(9, 18, 35, 0.12);
  background: #fff;
  color: var(--ink);
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(33, 84, 255, 0.18);
  border-color: rgba(33, 84, 255, 0.26);
}

.status-message {
  display: none;
  padding: 13px 15px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 700;
}

.status-message.is-visible {
  display: block;
}

.status-message.is-success {
  color: #24512e;
  background: rgba(219, 240, 225, 0.88);
  border-color: rgba(36, 81, 46, 0.16);
}

.status-message.is-error {
  color: #8b2b23;
  background: rgba(248, 226, 223, 0.92);
  border-color: rgba(139, 43, 35, 0.14);
}

.fade-in-up {
  animation: fadeInUp 0.7s ease both;
}

.delay-1 {
  animation-delay: 0.08s;
}

.delay-2 {
  animation-delay: 0.16s;
}

.delay-3 {
  animation-delay: 0.24s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .story-grid,
  .contact-grid,
  .price-layout,
  .split-banner,
  .promo-banner {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 820px) {
  body {
    line-height: 1.66;
    padding-bottom: calc(var(--mobile-cta-height) + env(safe-area-inset-bottom) + 14px);
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .site-nav,
  .header-actions .desktop-only {
    display: none;
  }

  .site-header__inner {
    min-height: 74px;
    gap: 12px;
  }

  .brand img {
    width: min(196px, 58vw);
  }

  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .mobile-nav {
    padding-bottom: 14px;
  }

  .mobile-nav nav {
    padding: 14px;
  }

  .btn {
    min-height: 50px;
    padding: 13px 18px;
    font-size: 0.9rem;
  }

  .services-grid,
  .promos-grid,
  .team-grid,
  .value-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    margin-bottom: 26px;
    justify-items: center;
    text-align: center;
  }

  .section-head__copy,
  .hero-band__inner,
  .page-hero__panel,
  .story-card,
  .price-intro,
  .panel-card,
  .hours-card,
  .cta-band,
  .site-footer__panel {
    text-align: center;
  }

  .section-head .btn-outline {
    width: 100%;
    max-width: 320px;
    margin-top: 4px;
  }

  .hero-band__inner {
    padding: 56px 0 46px;
  }

  .hero-band h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .hero-actions,
  .stacked-actions,
  .service-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .stacked-actions .btn,
  .service-card__actions .btn {
    width: 100%;
  }

  .service-card__actions .link-inline {
    min-height: 44px;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .hero-band__meta {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }

  .section {
    padding: 38px 0;
  }

  .story-card,
  .contact-card,
  .hours-card,
  .panel-card,
  .price-intro,
  .price-group {
    padding: 28px;
  }

  .story-grid,
  .contact-grid,
  .price-layout,
  .split-banner,
  .promo-banner {
    gap: 18px;
  }

  .story-photo {
    min-height: 320px;
  }

  .story-photo__label {
    left: 12px;
    right: 12px;
    bottom: 12px;
    text-align: center;
  }

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

  .page-hero__facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-items: center;
  }

  .site-footer {
    margin-top: 24px;
  }

  .site-footer__top,
  .site-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .timeline strong,
  .detail-list strong {
    text-align: center;
  }

  .quick-links a,
  .detail-list span,
  .detail-list a,
  .site-footer__copy {
    text-align: center;
  }

  .mobile-quick-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 35;
    display: block;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(9, 18, 35, 0.08);
    backdrop-filter: blur(18px);
  }

  .mobile-quick-bar__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: min(var(--container), calc(100% - 24px));
    margin: 0 auto;
  }

  .mobile-quick-bar .btn {
    min-height: 52px;
    padding-inline: 14px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .site-header__inner {
    min-height: 72px;
  }

  .site-header__inner {
    justify-content: space-between;
  }

  .brand {
    margin-inline: 0;
  }

  .page-hero__panel,
  .cta-band {
    border-radius: 12px;
  }

  .page-hero__panel {
    padding: 26px 20px;
  }

  .cta-band {
    padding: 26px 20px;
  }

  .section {
    padding: 32px 0;
  }

  .section--hero {
    padding-bottom: 24px;
  }

  .hero-band__inner {
    padding: 48px 0 40px;
  }

  .hero-band h1 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
    line-height: 0.95;
  }

  .hero-band__copy,
  .page-hero__panel p,
  .section-copy,
  .story-card p,
  .contact-card p,
  .hours-card p,
  .panel-card p,
  .price-group p {
    font-size: 0.96rem;
  }

  .timeline div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__panel {
    padding: 24px 18px 18px;
    border-radius: 24px 24px 0 0;
  }

  .price-table thead {
    display: none;
  }

  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table td {
    display: block;
    width: 100%;
  }

  .price-table tr {
    padding: 16px 0;
    border-top: 1px solid rgba(79, 58, 43, 0.1);
  }

  .price-table td {
    padding: 6px 0;
    border-top: 0;
  }

  .price-table td[data-label]:not(.price-table__service)::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .price-table__service::before {
    content: "Service";
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .story-card,
  .contact-card,
  .hours-card,
  .panel-card,
  .price-intro,
  .price-group,
  .team-card,
  .value-card {
    padding: 22px;
  }

  .story-photo {
    min-height: 260px;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }

  .map-frame {
    min-height: 220px;
  }

  .site-footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 12px;
    text-align: center;
  }

  .mobile-quick-bar__inner {
    width: calc(100% - 20px);
  }

  .section-head {
    justify-items: start;
    text-align: left;
  }

  .section-head__copy {
    text-align: left;
  }

  .section-head .btn-outline {
    width: auto;
    min-width: 220px;
    max-width: none;
    margin-top: 8px;
  }
}
