:root {
  --bg: #ffffff;
  --bg-soft: #faf8f7;
  --bg-muted: #f4f1f0;
  --card: rgba(255, 255, 255, 0.94);
  --line: rgba(21, 21, 21, 0.08);
  --text: #151515;
  --muted: #727272;
  --accent: #d83b34;
  --accent-soft: rgba(216, 59, 52, 0.1);
  --accent-strong: rgba(216, 59, 52, 0.16);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
  --dock-h: 76px;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shadow-soft: 0 18px 50px rgba(21, 21, 21, 0.06);
  --shadow-card: 0 10px 28px rgba(21, 21, 21, 0.05);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 59, 52, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(216, 59, 52, 0.05), transparent 32%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

#app {
  position: relative;
  width: min(100%, 520px);
  height: 100vh;
  height: 100dvh;
  margin: 0 auto;
  background: transparent;
}

#pages {
  position: relative;
  height: 100%;
}

.page {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: calc(10px + var(--safe-top)) 12px calc(var(--dock-h) + var(--safe-bottom) + 16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.page.active {
  opacity: 1;
  pointer-events: auto;
}

.page::-webkit-scrollbar,
.assistant-messages::-webkit-scrollbar,
.booking-shell::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 2px 10px;
}

.page-title,
.section-title,
.card-title,
.booking-title,
.success-card h2,
.assistant-card-title,
.service-card-title,
.booking-card-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.page-title {
  font-size: 24px;
}

.section-title {
  font-size: 19px;
}

.card-title {
  font-size: 24px;
}

.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.section-block.compact {
  padding-top: 4px;
}

.stack {
  display: grid;
  gap: 10px;
}

.stack.tight {
  gap: 10px;
}

.loader-wrap,
.empty-state,
.state-card {
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.loader-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.loader {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid rgba(21, 21, 21, 0.1);
  border-top-color: var(--accent);
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.state-card,
.empty-state {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 180px;
  padding: 28px 22px;
  text-align: center;
}

.state-card p,
.empty-state p,
.card-text,
.service-card-text,
.booking-info-text,
.booking-subtitle,
.detail-note,
.dialog-card p,
.success-card p,
.hero-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.hero-card,
.info-card,
.booking-card,
.assistant-shell,
.booking-info-card,
.calendar-card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.hero-card {
  overflow: hidden;
  border-radius: 34px;
  margin-bottom: 18px;
}

.hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 188px;
  padding: 24px 18px;
  background:
    linear-gradient(180deg, rgba(216, 59, 52, 0.03), rgba(255, 255, 255, 0.92)),
    linear-gradient(90deg, rgba(21, 21, 21, 0.02), transparent 45%, rgba(21, 21, 21, 0.02));
  overflow: hidden;
}

.hero-logo-plaque {
  position: relative;
  z-index: 2;
  width: min(100%, 420px);
  min-height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(216, 59, 52, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    #111111;
  box-shadow: 0 18px 40px rgba(21, 21, 21, 0.18);
}

.hero-banner-image {
  width: min(100%, 350px);
  height: auto;
  display: block;
}

.hero-lines {
  position: absolute;
  inset: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  pointer-events: none;
}

.hero-lines span {
  display: block;
  width: 2px;
  height: 32%;
  border-radius: 999px;
  background: rgba(216, 59, 52, 0.22);
  transform-origin: center bottom;
  animation:
    hero-pulse calc(4.8s + var(--line-index) * 0.2s) ease-in-out infinite,
    hero-depth calc(8s + var(--line-index) * 0.35s) ease-in-out infinite;
}

.hero-lines span:nth-child(2n) {
  height: 46%;
}

.hero-lines span:nth-child(3n) {
  height: 58%;
}

.hero-lines span:nth-child(4n) {
  height: 38%;
}

@keyframes hero-pulse {
  0%, 100% {
    transform: scaleY(0.82);
  }
  20% {
    transform: scaleY(1.12);
  }
  45% {
    transform: scaleY(0.92);
  }
  70% {
    transform: scaleY(1.34);
  }
}

@keyframes hero-depth {
  0%, 100% {
    opacity: 0.14;
    filter: blur(0);
  }
  35% {
    opacity: 0.22;
    filter: blur(0.4px);
  }
  65% {
    opacity: 0.18;
    filter: blur(1px);
  }
}

.hero-copy {
  display: grid;
  gap: 10px;
  padding: 20px 20px 20px;
}

.hero-kicker,
.card-label,
.field-label,
.booking-progress,
.service-card-category,
.service-card-mode,
.contact-key,
.booking-info-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: var(--muted);
}

.hero-title {
  margin: 0;
  max-width: 9ch;
  font-size: 31px;
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: -0.06em;
  text-transform: lowercase;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-meta span,
.service-card-mode,
.service-card-category,
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.hero-meta span {
  max-width: 100%;
  font-size: 13px;
  line-height: 1.35;
}

.service-card-category {
  background: transparent;
}

.hero-button {
  justify-self: start;
  min-width: 168px;
  margin-top: 6px;
}

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

.service-card {
  position: relative;
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.service-card:active {
  transform: scale(0.985);
}

.service-card.featured {
  grid-column: 1 / -1;
  grid-template-columns: 1fr;
  margin-bottom: 12px;
}

.service-card.disabled {
  cursor: default;
  opacity: 0.6;
}

.service-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(216, 59, 52, 0.02), rgba(21, 21, 21, 0.02)),
    var(--bg-soft);
}

.service-card.featured .service-card-media {
  aspect-ratio: 1.22 / 1;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.18);
  transform-origin: center;
}

.service-card-body {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 14px 14px 16px;
}

.service-card-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card-title {
  font-size: 26px;
  line-height: 0.96;
}

.service-card:not(.featured) .service-card-title {
  font-size: 18px;
}

.service-card-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-card-price {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.service-card-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.service-card-mode.muted {
  color: var(--text);
  background: rgba(21, 21, 21, 0.06);
}

.assistant-page {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.assistant-shell {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 26px;
}

.assistant-messages {
  flex: 1;
  overflow-y: auto;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px;
}

.chat-bubble {
  max-width: 84%;
  padding: 11px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.chat-bubble.model {
  background: var(--bg-soft);
  color: var(--text);
  border-bottom-left-radius: 6px;
}

.chat-bubble.user {
  margin-left: auto;
  background: var(--accent);
  color: #ffffff;
  border-bottom-right-radius: 6px;
}

.chat-typing {
  color: var(--muted);
  font-size: 13px;
}

.assistant-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--bg);
}

.assistant-card-media {
  aspect-ratio: 1.1 / 0.92;
  overflow: hidden;
  background: var(--bg-soft);
}

.assistant-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.18);
}

.assistant-card-body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.assistant-card-title {
  font-size: 20px;
}

.assistant-card-price {
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

.assistant-card-button {
  width: auto;
}

.assistant-composer {
  display: flex;
  gap: 10px;
  padding: 10px 12px 12px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.booking-card,
.info-card {
  border-radius: var(--radius-lg);
  padding: 16px;
}

.booking-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.booking-card-title {
  font-size: 19px;
}

.booking-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.booking-card-divider {
  color: rgba(21, 21, 21, 0.32);
}

.booking-card-details {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.detail-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.detail-row span {
  color: var(--muted);
  font-size: 13px;
}

.detail-row strong {
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

.detail-row.total {
  padding-top: 10px;
  margin-top: 6px;
  border-top: 1px solid var(--line);
}

.detail-row.total span,
.detail-row.total strong {
  font-size: 15px;
  color: var(--text);
}

.detail-note {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.contact-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.contact-row.address-row {
  align-items: flex-start;
}

.contact-value,
.contact-link,
.contact-action {
  display: block;
  min-width: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  text-decoration: none;
}

.contact-action {
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
}

.contact-action.accent {
  color: var(--accent);
}

.action-grid {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

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

.compact-actions > :first-child {
  grid-column: 1 / -1;
}

.compact-actions .button {
  width: 100%;
}

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

.field-block + .field-block {
  margin-top: 14px;
}

.form-actions {
  display: flex;
  margin-top: 18px;
}

.form-actions .button {
  min-width: 162px;
}

.text-input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.text-input:focus {
  border-color: rgba(216, 59, 52, 0.34);
  box-shadow: 0 0 0 4px rgba(216, 59, 52, 0.08);
}

.text-input::placeholder {
  color: #9a9a9a;
}

.text-area {
  min-height: 168px;
  padding: 14px 16px;
  resize: vertical;
}

.button,
.link-button,
.dock-item,
.icon-btn,
.time-slot,
.calendar-day {
  border: 0;
  -webkit-tap-highlight-color: transparent;
}

.button {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-transform: lowercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.16s ease, opacity 0.16s ease, background-color 0.16s ease;
}

.button:active {
  transform: scale(0.985);
}

.button:disabled {
  opacity: 0.4;
  cursor: default;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
}

.button-secondary {
  background: var(--bg-soft);
  color: var(--text);
  border: 1px solid var(--line);
}

.button.compact {
  min-height: 42px;
}

.link-button {
  padding: 0;
  background: none;
  color: var(--accent);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-transform: lowercase;
  cursor: pointer;
}

.icon-btn {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.icon-btn.accent {
  background: var(--accent);
  color: #ffffff;
}

.status-pill {
  line-height: 1;
  font-size: 11px;
  font-weight: 800;
  text-transform: lowercase;
  white-space: nowrap;
}

.status-pill.pending {
  color: #9c6200;
  background: rgba(245, 167, 35, 0.12);
}

.status-pill.confirmed {
  color: #18794e;
  background: rgba(24, 121, 78, 0.12);
}

.status-pill.in_progress {
  color: var(--accent);
  background: var(--accent-soft);
}

.status-pill.completed {
  color: #555555;
  background: rgba(21, 21, 21, 0.06);
}

.status-pill.cancelled {
  color: #b3241e;
  background: rgba(216, 59, 52, 0.12);
}

.dock {
  position: fixed;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: min(calc(100% - 18px), 500px);
  z-index: 90;
}

.dock-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 10px 8px calc(10px + var(--safe-bottom));
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 21, 21, 0.06);
  backdrop-filter: blur(22px);
  box-shadow: 0 22px 40px rgba(21, 21, 21, 0.1);
}

.dock-item {
  flex: 1;
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 4px 2px 2px;
  background: none;
  color: #8a8a8a;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: lowercase;
  cursor: pointer;
}

.dock-item svg {
  width: 21px;
  height: 21px;
}

.dock-item.active {
  color: var(--accent);
}

body.assistant-input-mode .dock {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(120%);
}

.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.98);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.booking-overlay.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.booking-shell {
  width: min(100%, 520px);
  height: 100%;
  margin: 0 auto;
  overflow-y: auto;
}

.booking-page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: calc(14px + var(--safe-top)) 16px 26px;
}

.booking-topbar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88) 78%, rgba(255, 255, 255, 0));
}

.booking-progress {
  flex-shrink: 0;
}

.booking-back {
  font-size: 13px;
}

.booking-body {
  display: grid;
  gap: 14px;
  align-content: start;
}

.booking-title {
  font-size: 30px;
}

.booking-subtitle {
  margin-top: -6px;
}

.booking-info-card {
  overflow: hidden;
  border-radius: 26px;
}

.booking-info-media {
  aspect-ratio: 1.08 / 0.92;
  overflow: hidden;
  background: var(--bg-soft);
}

.booking-info-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.16);
}

.booking-info-copy {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.calendar-card {
  border-radius: 24px;
  padding: 16px;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.calendar-month {
  font-size: 15px;
  font-weight: 800;
  text-transform: lowercase;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-weekdays {
  margin-bottom: 8px;
}

.calendar-weekdays span {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: lowercase;
}

.calendar-day {
  min-height: 46px;
  border-radius: 14px;
  background: var(--bg-soft);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.calendar-day.empty {
  background: transparent;
  cursor: default;
}

.calendar-day.disabled {
  opacity: 0.34;
  cursor: default;
}

.calendar-day.selected {
  background: var(--accent);
  color: #ffffff;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.time-slot {
  min-height: 48px;
  border-radius: 14px;
  background: var(--bg-soft);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.time-slot.start,
.time-slot.end {
  background: var(--accent);
  color: #ffffff;
}

.time-slot.in-range {
  background: var(--accent-soft);
  color: var(--accent);
}

.time-slot.blocked,
.time-slot.disabled {
  opacity: 0.36;
  cursor: default;
}

.selection-summary,
.terms-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--bg-soft);
  border: 1px solid rgba(21, 21, 21, 0.04);
}

.selection-summary span,
.terms-row span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.selection-summary strong {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  white-space: nowrap;
}

.terms-row input {
  margin-top: 3px;
  accent-color: var(--accent);
}

.success-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
  padding: 54px 18px 18px;
}

.success-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
}

.success-icon svg {
  width: 30px;
  height: 30px;
}

.dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(21, 21, 21, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.dialog-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.dialog-card {
  width: min(100%, 360px);
  padding: 22px 20px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.dialog-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.dialog-actions {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.dialog-actions > * {
  flex: 1;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--dock-h) + var(--safe-bottom) + 26px);
  transform: translateX(-50%) translateY(20px);
  min-width: 160px;
  max-width: min(calc(100% - 28px), 360px);
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.94);
  color: #ffffff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 160;
}

.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (min-width: 640px) {
  .page {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-title {
    font-size: 38px;
  }

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