@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap");

:root {
  --bg: #0b0f0e;
  --bg-soft: #121817;
  --surface: #1a221f;
  --ivory: #f6f1e8;
  --cream: #ebe3d4;
  --gold: #c4a46a;
  --gold-light: #e8d5a8;
  --gold-dark: #9a7b45;
  --sage: #8ba89a;
  --ink: #141a18;
  --muted: #8a8478;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(11, 15, 14, 0.18);
  --radius: 18px;
  --nav-h: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
}

body {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font-family: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
}

h1,
h2,
h3,
.serif {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--ink);
  margin: 14px 0 18px;
}

.section-lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
}

.gold-line {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 18px 0;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader img {
  width: 78px;
  height: auto;
  margin: 0 auto 22px;
  background: var(--ivory);
  border-radius: 50%;
  padding: 8px;
  animation: pulse 1.6s ease-in-out infinite;
}

.preloader-bar {
  width: 160px;
  height: 1px;
  background: rgba(196, 164, 106, 0.2);
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--gold);
  animation: load 1.2s ease-in-out infinite;
}

@keyframes load {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(350%); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s, height 0.4s;
}

.site-header.scrolled {
  height: 74px;
  background: rgba(11, 15, 14, 0.96);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

html.nav-open,
html.nav-open body {
  overflow: hidden;
}

.nav-wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 101;
}

.logo img {
  width: 52px;
  height: auto;
  background: var(--ivory);
  border-radius: 50%;
  padding: 5px;
}

.logo span {
  font-family: "Cormorant Garamond", serif;
  color: var(--ivory);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  color: rgba(246, 241, 232, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 14px;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--bg) !important;
  padding: 11px 20px !important;
  letter-spacing: 0.14em !important;
  font-size: 0.72rem !important;
  font-weight: 500;
  border-radius: 999px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--bg) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(196, 164, 106, 0.4);
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 101;
  border-radius: 50%;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: var(--ivory);
  left: 12px;
  transition: 0.3s var(--ease);
}

.menu-toggle span {
  top: 21px;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle.open span {
  background: transparent;
}

.menu-toggle.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 500;
  transition: transform 0.35s var(--ease), background 0.35s, color 0.35s, box-shadow 0.35s;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 12px 30px rgba(196, 164, 106, 0.28);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(232, 213, 168, 0.45);
}

.btn-ghost:hover {
  background: rgba(246, 241, 232, 0.08);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ink);
  color: var(--ivory);
}

.btn-dark:hover {
  background: #24302c;
  transform: translateY(-2px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--ivory);
  background: var(--bg);
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shader {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11, 15, 14, 0.62) 0%, rgba(11, 15, 14, 0.48) 45%, rgba(11, 15, 14, 0.72) 100%),
    radial-gradient(ellipse at center, rgba(11, 15, 14, 0.15), rgba(11, 15, 14, 0.55) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 48px));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
}

.hero h1 {
  font-size: clamp(2.8rem, 6.4vw, 5.8rem);
  max-width: 14ch;
  margin: 16px 0 12px;
}

.hero .hero-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* ---------- Sections ---------- */
.section {
  padding: 120px 0;
  position: relative;
}

.section-dark {
  background: var(--bg);
  color: var(--ivory);
}

.section-dark .section-title,
.section-dark .section-lead {
  color: var(--ivory);
}

.section-dark .section-lead {
  color: rgba(246, 241, 232, 0.68);
}

.section-head {
  margin-bottom: 64px;
}

.parallax-band {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ivory);
}

.parallax-band .bg {
  position: absolute;
  inset: -20% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.parallax-band .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 14, 0.55), rgba(11, 15, 14, 0.72));
}

.parallax-band .inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(860px, calc(100% - 48px));
}

.parallax-band h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 12px 0 20px;
}

/* ---------- Specialty cards ---------- */
.grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.specialty {
  position: relative;
  min-height: 280px;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid rgba(196, 164, 106, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}

.specialty::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 164, 106, 0.22), transparent 70%);
  z-index: -1;
  transition: transform 0.6s var(--ease);
}

.specialty:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.specialty:hover::before {
  transform: scale(1.6);
}

.specialty .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

.specialty h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.specialty p {
  color: var(--muted);
  font-size: 0.95rem;
}

.treat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.treat-item {
  padding: 8px 8px 0;
}

.treat-item h3 {
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
}

.treat-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.split img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
}

/* ---------- Gallery ---------- */
.gallery-track {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.08);
}

.gallery-item:nth-child(1) {
  grid-row: 1 / 3;
}

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-info {
  background: var(--bg);
  color: var(--ivory);
  padding: 56px 44px;
}

.contact-info h2 {
  font-size: 3rem;
  margin: 10px 0 16px;
}

.contact-info .phone {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--gold-light);
  display: block;
  margin: 18px 0 28px;
}

.contact-form {
  padding: 56px 44px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea {
  border: none;
  border-bottom: 1px solid rgba(20, 26, 24, 0.16);
  background: transparent;
  padding: 10px 0 12px;
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  resize: vertical;
  transition: border-color 0.3s;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--gold);
}

.map-wrap {
  margin-top: 56px;
  border-radius: 24px;
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

/* ---------- Team ---------- */
.page-hero {
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.page-hero .bg {
  position: absolute;
  inset: -12% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.page-hero .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 14, 0.35), rgba(11, 15, 14, 0.78));
}

.page-hero .inner {
  position: relative;
  z-index: 2;
  padding: 140px 0 72px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.member {
  background: var(--white);
  border-radius: 24px;
  padding: 42px 32px 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(196, 164, 106, 0.16);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}

.member::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.member:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow);
}

.member:hover::after {
  transform: scaleX(1);
}

.member .mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--gold-dark);
  margin-bottom: 24px;
}

.member h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.member p {
  color: var(--muted);
  margin-bottom: 18px;
}

.member .cro {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ---------- Clinic about ---------- */
.mission-list {
  display: grid;
  gap: 48px;
}

.mission-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(196, 164, 106, 0.2);
}

.mission-row h3 {
  font-size: 2rem;
}

.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 6px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}

.advantages {
  background: var(--bg);
  color: var(--ivory);
  padding: 48px;
  border-radius: 28px;
}

.advantages h3 {
  color: var(--ivory);
}

.advantages .check-list li {
  color: rgba(246, 241, 232, 0.78);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  color: rgba(246, 241, 232, 0.7);
  padding: 56px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(246, 241, 232, 0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 46px;
  background: var(--ivory);
  border-radius: 50%;
  padding: 4px;
}

.footer-brand span {
  font-family: "Cormorant Garamond", serif;
  color: var(--ivory);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
}

.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.62);
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-copy {
  padding-top: 22px;
  font-size: 0.8rem;
  text-align: center;
  letter-spacing: 0.04em;
}

/* ---------- Float ---------- */
.float-links {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-links a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--ivory);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s var(--ease), background 0.3s;
}

.float-links a:hover {
  transform: translateY(-3px) scale(1.05);
  background: var(--gold);
  color: var(--bg);
}

.float-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.wa {
  background: #1f6b4a !important;
}

/* ---------- Grain ---------- */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

/* ---------- Page-specific ---------- */
.intro-stats {
  display: flex;
  gap: 48px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.intro-stats strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}

.intro-stats span {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 8px 0 28px;
}

.divider-ornament i {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-ornament svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-8,
  .treat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .contact-wrap,
  .mission-row {
    grid-template-columns: 1fr;
  }

  .split img {
    height: 380px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-track {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }

  .gallery-item:nth-child(1) {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 280px;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 130;
  }

  .logo {
    position: relative;
    z-index: 130;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 0;
    background: rgba(11, 15, 14, 0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    z-index: 150;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1rem;
    padding: 14px 20px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-wrap,
  .hero-content,
  .page-hero .inner {
    width: calc(100% - 32px);
  }

  .section {
    padding: 88px 0;
  }

  .grid-8,
  .treat-grid,
  .team-grid,
  .form-grid,
  .gallery-track {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-item,
  .gallery-item:nth-child(1) {
    min-height: 240px;
  }

  .contact-info,
  .contact-form,
  .advantages {
    padding: 36px 24px;
  }

  .hero h1 {
    max-width: none;
  }

  .split img {
    height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
