:root {
  --blue: #1b4fcc;
  --blue-deep: #123a9e;
  --blue-soft: #e8effc;
  --blue-mid: #4d7ae8;
  --ink: #152238;
  --ink-muted: #5c6b82;
  --surface: #ffffff;
  --bg: #f4f7fc;
  --bg-warm: #eef3fa;
  --line: rgba(21, 34, 56, 0.1);
  --shadow: 0 18px 50px rgba(18, 58, 158, 0.12);
  --radius: 1.25rem;
  --header-h: 4.25rem;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(27, 79, 204, 0.08), transparent 60%),
    radial-gradient(900px 400px at 100% 0%, rgba(77, 122, 232, 0.07), transparent 55%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--blue);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(244, 247, 252, 0.86);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  display: block;
  border-radius: 0.55rem;
}

.brand-text {
  line-height: 1;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  color: var(--ink-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, box-shadow 0.2s;
}

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

.btn:focus-visible {
  outline: 3px solid rgba(27, 79, 204, 0.35);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue));
  color: #fff;
  box-shadow: 0 10px 24px rgba(27, 79, 204, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  border-color: #fff;
  color: var(--blue-deep);
}

.hero .btn-ghost {
  backdrop-filter: blur(6px);
}

.btn-phone-header {
  display: none;
}

.menu-toggle {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: var(--header-h);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  padding: 1rem 1rem 1.25rem;
  box-shadow: var(--shadow);
}

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

.mobile-nav a {
  display: block;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 12s var(--ease) forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 24, 56, 0.25) 0%, rgba(10, 24, 56, 0.55) 45%, rgba(8, 18, 42, 0.88) 100%),
    linear-gradient(90deg, rgba(8, 18, 42, 0.55), transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 3.5rem;
  animation: fadeUp 0.9s var(--ease) both;
}

.hero-brand {
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 5.8rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  max-width: 34rem;
  margin: 0 0 1.75rem;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-meta svg {
  width: 1rem;
  height: 1rem;
  opacity: 0.9;
}

/* Sections */
section {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head h2,
.section-title {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.section-head p {
  margin: 0;
  color: var(--ink-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* About */
.about-grid {
  display: grid;
  gap: 1.5rem;
}

.about-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(21, 34, 56, 0.04);
}

.about-card p {
  margin: 0;
  color: var(--ink-muted);
}

.about-card p + p {
  margin-top: 1rem;
}

.promo {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  border: 0;
  box-shadow: var(--shadow);
}

.promo h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.45rem;
}

.promo p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

/* Services */
.services-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  transition: border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}

.service-card:hover {
  border-color: rgba(27, 79, 204, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(27, 79, 204, 0.08);
}

.service-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 0.9rem;
}

.service-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.service-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.service-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* Prices */
.prices {
  background: linear-gradient(180deg, transparent, rgba(232, 239, 252, 0.65), transparent);
}

.price-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.price-tab {
  min-height: 2.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.price-tab.is-active,
.price-tab:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.price-panel {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.price-panel.is-active {
  display: block;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span:first-child {
  color: var(--ink);
  font-size: 0.98rem;
}

.price-row strong {
  color: var(--blue);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.price-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

/* Doctors */
.doctors-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}

.doctor-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.7rem;
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.doctor-photo {
  margin: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #eef3fa;
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.doctor-card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.92rem;
  line-height: 1.25;
}

.doctor-role {
  margin: 0 0 0.3rem;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.78rem;
  line-height: 1.35;
}

.doctor-meta {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.78rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}

.gallery-item {
  margin: 0;
  padding: 0;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  display: block;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-cap {
  display: block;
  padding: 0.55rem 0.75rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

/* Documents */
.docs-summary {
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.docs-summary p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.docs-summary p + p {
  margin-top: 0.45rem;
}

.docs-gallery {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr 1fr;
}

.doc-shot {
  display: block;
  width: 100%;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, border-color 0.2s;
}

.doc-shot:hover {
  transform: translateY(-2px);
  border-color: rgba(27, 79, 204, 0.3);
  box-shadow: 0 14px 30px rgba(27, 79, 204, 0.1);
}

.doc-shot img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  background: #f5f7fb;
}

.doc-shot span {
  display: block;
  padding: 0.7rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

/* Benefits */
.benefits {
  background: var(--ink);
  color: #fff;
}

.benefits .eyebrow {
  color: #8fb4ff;
}

.benefits .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.benefits-grid {
  display: grid;
  gap: 1rem;
}

.benefit {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

/* Reviews */
.reviews-shell {
  position: relative;
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.55rem;
}

.reviews-nav {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(27, 79, 204, 0.08);
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}

.reviews-nav svg {
  width: 1.05rem;
  height: 1.05rem;
}

.reviews-nav:hover {
  background: var(--blue-soft);
  border-color: rgba(27, 79, 204, 0.35);
}

.reviews-nav:active {
  transform: scale(0.96);
}

.reviews-nav:focus-visible {
  outline: 3px solid rgba(27, 79, 204, 0.35);
  outline-offset: 2px;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0.1rem 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: auto;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  width: 280px;
  min-width: 280px;
  max-width: 280px;
  box-sizing: border-box;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}

.review-stars {
  color: #e0a100;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.review-card blockquote {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1 1 auto;
}

.review-card cite {
  display: block;
  margin-top: 0.55rem;
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.review-source {
  display: block;
  margin-top: 0.2rem;
  color: var(--ink-muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.review-card:hover {
  border-color: rgba(27, 79, 204, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(27, 79, 204, 0.08);
}

.review-card:focus-visible {
  outline: 3px solid rgba(27, 79, 204, 0.35);
  outline-offset: 2px;
}

/* Lightbox */
.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 36, 0.78);
  backdrop-filter: blur(4px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(90vh, 920px);
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: min(78vh, 820px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-caption {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -0.35rem;
  right: -0.15rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.lightbox-close:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

body.lightbox-open {
  overflow: hidden;
}

/* Contacts */
.contacts-grid {
  display: grid;
  gap: 1.25rem;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-bottom: 0.2rem;
}

.contact-item a {
  color: var(--blue);
  font-weight: 700;
}

.contact-item a:hover {
  text-decoration: underline;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
  background: var(--bg-warm);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.footer-brand {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.footer-copy,
.footer-legal {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.footer-legal {
  margin-top: 0.75rem;
  max-width: 42rem;
}

.by-sentryc {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--ink);
}

.by-sentryc a {
  color: var(--blue);
}

.by-sentryc a:hover {
  text-decoration: underline;
}

/* Floating call on mobile */
.fab-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(27, 79, 204, 0.35);
}

.fab-call svg {
  width: 1.1rem;
  height: 1.1rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@media (min-width: 640px) {
  .services-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-grid {
    grid-template-columns: 1.4fr 1fr;
  }

  .docs-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-nav {
    width: 2.6rem;
    height: 2.6rem;
  }

  .reviews-nav svg {
    width: 1.15rem;
    height: 1.15rem;
  }

  .reviews-track {
    grid-auto-columns: 300px;
  }

  .review-card {
    width: 300px;
    min-width: 300px;
    max-width: 300px;
  }

  .btn-phone-header {
    display: inline-flex;
  }
}

@media (min-width: 900px) {
  .menu-toggle,
  .mobile-nav,
  .fab-call {
    display: none;
  }

  .nav {
    display: flex;
  }

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

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

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

  .docs-gallery {
    grid-template-columns: repeat(5, 1fr);
  }

  .reviews-track {
    grid-auto-columns: 300px;
  }

  .review-card {
    width: 300px;
    min-width: 300px;
    max-width: 300px;
  }

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

  .contacts-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }

  .hero-content {
    padding: 7rem 0 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .hero-content,
  .reveal,
  .gallery-item img,
  .btn {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .reveal {
    opacity: 1;
  }
}
