:root {
  --navy: #061c3a;
  --navy-2: #0b2a50;
  --ink: #10223f;
  --muted: #526278;
  --gold: #d7a64f;
  --gold-dark: #bd8731;
  --paper: #fbfaf6;
  --line: #dce3ea;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(12, 28, 52, 0.14);
  --fs-small: 14px;
  --fs-base: 16px;
  --fs-accent: 18px;
  --fs-title: clamp(22px, 2.2vw, 30px);
  --fs-hero-title: clamp(26px, 2.8vw, 36px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto auto;
  align-items: center;
  gap: 42px;
  padding: 24px 7vw 24px 11vw;
  color: var(--white);
  transition: background 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease;
}

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(6, 28, 58, 0.92);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.brand-block {
  min-width: 0;
}

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

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-mark {
  display: block;
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  background: url("assets/parom-nt-shturval-logo.png") center / contain no-repeat;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.18));
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--fs-accent);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-mobile-phone {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: var(--fs-accent);
  font-weight: 700;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.86);
}

.main-nav a:hover {
  color: var(--white);
}

.mobile-nav-call {
  display: none;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 5px;
  background: linear-gradient(180deg, #e1ba66, var(--gold-dark));
  color: var(--white);
  font-size: var(--fs-base);
  font-weight: 800;
  border: 0;
  box-shadow: 0 14px 30px rgba(137, 86, 22, 0.28);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: none;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e1ba66, var(--gold-dark));
  box-shadow: 0 14px 34px rgba(137, 86, 22, 0.34);
}

.floating-call::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='white'%20stroke-width='2.4'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M22%2016.92v3a2%202%200%200%201-2.18%202%2019.79%2019.79%200%200%201-8.63-3.07%2019.5%2019.5%200%200%201-6-6%2019.79%2019.79%200%200%201-3.07-8.67A2%202%200%200%201%204.11%202h3a2%202%200%200%201%202%201.72%2012.84%2012.84%200%200%200%20.7%202.81%202%202%200%200%201-.45%202.11L8.09%209.91a16%2016%200%200%200%206%206l1.27-1.27a2%202%200%200%201%202.11-.45%2012.84%2012.84%200%200%200%202.81.7A2%202%200%200%201%2022%2016.92z'/%3E%3C/svg%3E") center / 28px 28px no-repeat;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: #071c39;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(5, 22, 45, 0.98) 0%, rgba(5, 22, 45, 0.72) 34%, rgba(5, 22, 45, 0.24) 62%, rgba(5, 22, 45, 0.06) 100%),
    url("assets/tagil-prud-progulki-parom-kater-hero.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "⚓";
  position: absolute;
  left: 34px;
  top: 255px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 132px;
  line-height: 1;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 680px;
  flex-direction: column;
  justify-content: center;
  padding-top: 74px;
}

.eyebrow {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--fs-accent);
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  max-width: 650px;
  font-size: var(--fs-hero-title);
  text-transform: uppercase;
}

.hero-kicker {
  margin: 20px 0 0;
  color: #f0c36d;
  font-size: var(--fs-accent);
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 440px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 22px;
  font-weight: 700;
}

.hero-actions,
.footer-contact .btn {
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border: 0;
  border-radius: 5px;
  font-size: var(--fs-small);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-gold {
  background: linear-gradient(180deg, #e1ba66, var(--gold-dark));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(137, 86, 22, 0.28);
}

.hero-call-btn {
  min-width: 210px;
}

.btn-blue {
  min-height: 42px;
  background: var(--navy);
  color: var(--white);
}

.features {
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 42px 0 38px;
}

.features article {
  display: grid;
  grid-template-rows: 88px 66px auto;
  align-items: start;
  min-height: 168px;
  padding: 0 30px;
  text-align: center;
}

.features article + article {
  border-left: 1px solid var(--line);
}

.feature-icon {
  display: block;
  align-self: center;
  color: var(--navy);
  font-size: 50px;
  line-height: 1;
}

.feature-icon-image {
  width: 78px;
  height: 78px;
  margin: 0 auto;
  background: url("assets/torzhestva-na-vode-icon.png") center / contain no-repeat;
}

.feature-icon-boat {
  font-size: 60px;
}

.feature-icon-location {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: url("assets/park-bondina-prichal-icon.png") center / contain no-repeat;
}

.features h2 {
  align-self: start;
  margin: 14px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.35;
  text-transform: uppercase;
}

.features p {
  align-self: start;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: var(--fs-accent);
  font-weight: 700;
}

.section {
  padding: 48px 0;
}

.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
  text-align: center;
}

.section-title span {
  height: 12px;
  background:
    radial-gradient(circle at 8px 6px, transparent 7px, rgba(7, 31, 61, 0.16) 8px, transparent 9px) 0 0 / 32px 12px;
}

.section-title h2 {
  color: var(--navy);
  font-size: var(--fs-title);
  text-transform: uppercase;
}

.fleet {
  background: linear-gradient(180deg, #fff 0%, #f8f8f4 100%);
}

.service-card {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  min-height: 380px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card + .service-card {
  margin-top: 48px;
}

.service-card-reverse {
  grid-template-columns: 0.9fr 1.45fr;
}

.service-card-reverse .service-photo {
  order: 2;
}

.service-card-reverse .service-content {
  order: 1;
}

.service-photo {
  min-height: 380px;
  background-image: url("assets/tagil-prud-progulki-parom-kater-hero.png");
  background-size: cover;
}

.service-photo-parom {
  background-image: url("assets/parom-dlya-meropriyatiy-tagilskiy-prud.jpg");
  background-position: center 48%;
}

.service-photo-mini-parom {
  background-image: url("assets/mini-parom-park-bondina-nizhniy-tagil.jpg");
  background-position: center;
}

.service-photo-boat-15 {
  background-image: url("assets/kater-15-mest-tagilskiy-prud.jpg");
  background-position: center 58%;
}

.service-photo-hydrocycle {
  background-image: url("assets/gidrocikl-tagilskiy-prud.jpg");
  background-position: center 58%;
}

.service-photo-two {
  background-image: url("assets/kater-10-mest-tagilskiy-prud.jpg");
  background-position: 52% 68%;
}

.service-photo-three {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-image: url("assets/katamarany-park-bondina-tagilskiy-prud.jpg");
  background-position: center;
  background-size: cover;
}

.service-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 54px;
}

.service-content::after {
  content: "☸";
  position: absolute;
  right: 24px;
  bottom: 12px;
  width: 168px;
  height: 168px;
  background: url("assets/parom-nt-shturval-logo.png") center / contain no-repeat;
  opacity: 0.12;
}

.service-content h3 {
  max-width: 380px;
  color: var(--navy);
  font-size: var(--fs-title);
  text-transform: uppercase;
}

.service-content ul {
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
  color: #233755;
  font-size: var(--fs-base);
  font-weight: 700;
}

.service-content li::before {
  content: "⚓";
  margin-right: 10px;
  color: var(--gold-dark);
}

.service-content .btn {
  z-index: 1;
  align-self: flex-start;
}

.events {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  background: var(--white);
}

.events-inner {
  display: block;
}

.video-embed {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: var(--navy);
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.info-panels {
  padding-top: 0;
  background: var(--white);
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.review-panel {
  min-height: 230px;
  padding: 30px 38px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.review-panel h2 {
  color: var(--navy);
  font-size: var(--fs-accent);
  line-height: 1.25;
  text-transform: uppercase;
}

.review {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 22px;
  margin-top: 22px;
}

.avatar {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #d9b57b, #eadbc0);
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.stars {
  margin: 3px 0 8px;
  color: var(--gold-dark);
  letter-spacing: 2px;
}

.review p:last-child {
  margin: 0;
  color: #263954;
  font-size: var(--fs-small);
  font-weight: 700;
}

.faq {
  background: var(--white);
  padding-top: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(12, 28, 52, 0.06);
}

summary {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: #263954;
  cursor: pointer;
  font-size: var(--fs-small);
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: var(--fs-small);
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 58px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 22, 45, 0.98), rgba(5, 22, 45, 0.88) 54%, rgba(5, 22, 45, 0.76)),
    url("assets/tagil-prud-progulki-parom-kater-hero.png") center / cover;
}

.footer::after {
  content: "";
  position: absolute;
  right: -78px;
  bottom: -88px;
  width: 330px;
  height: 330px;
  background: url("assets/parom-nt-shturval-logo.png") center / contain no-repeat;
  opacity: 0.78;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(320px, 420px);
  align-items: start;
  gap: 72px;
}

.footer h2 {
  max-width: 460px;
  font-size: var(--fs-title);
  line-height: 1.35;
  text-transform: uppercase;
}

.footer-main {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-contact {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.footer-phone {
  display: inline-block;
  font-size: var(--fs-title);
  font-weight: 900;
}

.footer-contact p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-base);
  line-height: 1.6;
  font-weight: 700;
}

.footer-requisites {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: var(--fs-small);
  line-height: 1.45;
  font-weight: 700;
}

.footer-contact .btn {
  margin-top: 0;
}

.footer-policy {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-small);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-policy:hover {
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(215, 166, 79, 0.32);
  border-radius: 8px;
  background: rgba(6, 28, 58, 0.96);
  color: var(--white);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--fs-small);
  font-weight: 700;
  line-height: 1.5;
}

.cookie-banner a {
  color: #f0c36d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-accept {
  min-width: 132px;
  min-height: 42px;
}

.policy-page {
  background: #f7f5ee;
}

.policy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 7vw;
  background: var(--navy);
  color: var(--white);
}

.policy-main {
  padding: 42px 0 70px;
}

.policy-content {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 52px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.policy-back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--gold-dark);
  font-weight: 800;
}

.policy-content h1 {
  max-width: 780px;
  color: var(--navy);
  font-size: var(--fs-title);
  text-transform: uppercase;
}

.policy-date {
  margin: 14px 0 34px;
  color: var(--muted);
  font-weight: 700;
}

.policy-content section + section {
  margin-top: 28px;
}

.policy-content h2 {
  margin-bottom: 10px;
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: var(--fs-accent);
  line-height: 1.35;
}

.policy-content p {
  margin: 0;
  color: #263954;
  font-size: var(--fs-base);
}

.policy-content p + p {
  margin-top: 12px;
}

.policy-content a {
  color: var(--gold-dark);
  font-weight: 800;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 18px;
    padding-inline: 32px;
  }

  .main-nav {
    gap: 20px;
  }

  .header-phone {
    padding-inline: 16px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 16px 24px;
  }

  .menu-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 6px;
    background: rgba(6, 28, 58, 0.4);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 24px;
    left: 24px;
    display: none;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 8px;
    background: rgba(6, 28, 58, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 12px;
    font-size: var(--fs-base);
  }

  .header-phone {
    display: none;
  }

  .mobile-nav-call {
    display: block;
    margin-top: 8px;
    border-radius: 5px;
    background: linear-gradient(180deg, #e1ba66, var(--gold-dark));
    color: var(--white);
    text-align: center;
  }

  .features-grid,
  .two-columns,
  .faq-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .features-grid {
    padding-bottom: 12px;
  }

  .features article {
    grid-template-rows: 88px auto auto;
    min-height: auto;
    padding: 26px 12px;
  }

  .features article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-card,
  .service-card-reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-card-reverse .service-photo,
  .service-card-reverse .service-content {
    order: initial;
  }

}

@media (max-width: 640px) {
  :root {
    --fs-title: clamp(21px, 7vw, 26px);
    --fs-hero-title: clamp(29px, 9vw, 34px);
  }

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

  .site-header {
    padding: 12px;
    gap: 10px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: var(--fs-accent);
  }

  .brand {
    gap: 12px;
    transform: translateY(4px);
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    right: 12px;
    left: 12px;
    top: calc(100% + 6px);
  }

  .hero,
  .hero-inner {
    min-height: 620px;
  }

  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(5, 22, 45, 0.88) 0%, rgba(5, 22, 45, 0.72) 47%, rgba(5, 22, 45, 0.92) 100%),
      url("assets/tagil-prud-progulki-parom-kater-hero.png");
    background-position: 64% center;
  }

  .hero-inner {
    justify-content: center;
    padding-top: 118px;
    padding-bottom: 118px;
    transform: translateY(-48px);
  }

  .hero::after {
    left: 50%;
    top: 502px;
    transform: translateX(-50%);
    font-size: 78px;
    color: rgba(255, 255, 255, 0.14);
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.24);
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: var(--fs-base);
  }

  .hero-kicker {
    margin-top: 28px;
    font-size: var(--fs-base);
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 34px;
    font-size: var(--fs-base);
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
    margin-top: 42px;
  }

  .floating-call {
    display: block;
  }

  .btn {
    width: 100%;
    margin-left: 0;
  }

  .section {
    padding: 34px 0;
  }

  .section-title {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-title span {
    display: none;
  }

  .service-photo {
    min-height: 250px;
  }

  .service-content {
    padding: 28px 22px;
  }

  .service-content h3 {
    max-width: 100%;
  }

  .service-content ul {
    font-size: var(--fs-base);
  }

  .service-content .btn {
    width: 100%;
  }

  .events {
    padding: 34px 0;
  }

  .video-embed {
    border-radius: 8px;
  }

  .review-panel {
    padding: 24px 18px;
  }

  .review {
    grid-template-columns: 58px 1fr;
    gap: 16px;
  }

  .avatar {
    width: 58px;
    height: 58px;
    font-size: var(--fs-title);
  }

  .footer {
    padding: 40px 0 54px;
  }

  .footer::after {
    right: -94px;
    bottom: -72px;
    width: 230px;
    height: 230px;
    opacity: 0.5;
  }

  .footer-inner {
    gap: 24px;
  }

  .footer-phone {
    font-size: var(--fs-accent);
  }

  .footer h2 {
    max-width: 300px;
  }

  .footer-contact {
    gap: 14px;
  }

  .footer-contact .btn {
    width: 210px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    justify-items: start;
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    padding: 16px;
  }

  .cookie-accept {
    width: 100%;
  }

  .policy-header {
    padding: 14px 12px;
  }

  .policy-header .header-phone {
    display: inline-flex;
    min-height: 42px;
    padding: 0 14px;
    font-size: var(--fs-small);
  }

  .policy-content {
    width: min(100% - 24px, 920px);
    padding: 30px 18px;
  }
}

@media (max-width: 420px) {
  .features article {
    padding-right: 8px;
    padding-left: 8px;
  }

  .features h2 {
    font-size: var(--fs-accent);
  }

  .features p {
    font-size: var(--fs-base);
  }

  .service-photo {
    min-height: 220px;
  }

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

  .footer::after {
    opacity: 0.34;
  }
}
