:root {
  --owm-ink: #071a2b;
  --owm-navy: #083a70;
  --owm-blue: #0879c9;
  --owm-aqua: #13c8c1;
  --owm-aqua-dark: #009e9a;
  --owm-foam: #f2fbfb;
  --owm-mist: #edf3f5;
  --owm-white: #fff;
  --owm-copy: #3e5363;
  --owm-line: rgba(7, 26, 43, .12);
  --owm-shadow: 0 18px 55px rgba(2, 24, 45, .12);
  --owm-radius: 22px;
  --owm-shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--owm-ink);
  background: var(--owm-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.admin-bar .site-header { top: 32px; }

.wp-site-blocks { overflow: clip; }

.owm-page { margin: 0; }

.owm-shell {
  width: var(--owm-shell);
  margin-inline: auto;
}

.owm-narrow {
  width: min(780px, calc(100% - 40px));
  margin-inline: auto;
}

.owm-section {
  position: relative;
  padding: clamp(72px, 9vw, 120px) 0;
}

.owm-section--tight { padding-block: clamp(52px, 7vw, 82px); }
.owm-section--mist { background: var(--owm-mist); }
.owm-section--foam { background: var(--owm-foam); }
.owm-section--ink { color: var(--owm-white); background: var(--owm-ink); }

.owm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1rem;
  color: var(--owm-blue);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.owm-section--ink .owm-eyebrow,
.owm-hero .owm-eyebrow { color: #77e7e3; }

.owm-eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.owm-title {
  max-width: 800px;
  margin: 0 0 1.2rem;
  font-size: clamp(2.15rem, 5vw, 4rem);
}

.owm-lead {
  max-width: 720px;
  margin: 0;
  color: var(--owm-copy);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.owm-section--ink .owm-lead { color: rgba(255, 255, 255, .72); }

.owm-topbar {
  position: relative;
  z-index: 30;
  padding: .52rem 0;
  color: rgba(255, 255, 255, .82);
  background: var(--owm-ink);
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .02em;
}

.owm-topbar__inner {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.owm-topbar__item { display: inline-flex; align-items: center; gap: .45rem; }
.owm-topbar a.owm-topbar__item { color: inherit; text-decoration: none; }
.owm-topbar a.owm-topbar__item:hover { color: var(--owm-aqua); }
.owm-topbar__dot { color: var(--owm-aqua); }

.site-header {
  position: sticky;
  z-index: 25;
  top: 0;
  border-bottom: 1px solid var(--owm-line);
  background: rgba(255, 255, 255, .96);
  transition: box-shadow .2s ease, background .2s ease;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(7, 26, 43, .1); }

.owm-header__inner {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.owm-logo {
  display: inline-flex;
  width: 235px;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.owm-logo img { display: block; width: 100%; height: auto; }

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

.owm-nav > a:not(.owm-button) {
  position: relative;
  color: var(--owm-ink);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.owm-nav > a:not(.owm-button)::after {
  position: absolute;
  right: 0;
  bottom: -.5rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--owm-aqua);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.owm-nav > a:hover::after,
.owm-nav > a:focus-visible::after { transform: scaleX(1); }

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

.owm-button,
.wp-element-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 0;
  border-radius: 999px;
  padding: .82rem 1.35rem;
  color: var(--owm-ink) !important;
  background: var(--owm-aqua);
  box-shadow: 0 10px 28px rgba(19, 200, 193, .18);
  font-size: .93rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.owm-button:hover,
.wp-element-button:hover {
  background: #31d7d0;
  box-shadow: 0 14px 32px rgba(19, 200, 193, .28);
  transform: translateY(-2px);
}

.owm-button--dark { color: var(--owm-white) !important; background: var(--owm-ink); box-shadow: none; }
.owm-button--light { color: var(--owm-ink) !important; background: var(--owm-white); box-shadow: none; }
.owm-button--outline { border: 1px solid rgba(255,255,255,.5); color: var(--owm-white) !important; background: transparent; box-shadow: none; }
.owm-button--outline:hover { border-color: var(--owm-aqua); background: rgba(255,255,255,.06); }
.owm-button__arrow { font-size: 1.15em; transition: transform .2s ease; }
.owm-button:hover .owm-button__arrow { transform: translateX(3px); }

.owm-hero {
  position: relative;
  min-height: 700px;
  color: var(--owm-white);
  background: var(--owm-ink);
  isolation: isolate;
}

.owm-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 20, 34, .99) 0%, rgba(4, 26, 44, .94) 41%, rgba(4, 26, 44, .44) 68%, rgba(4, 26, 44, .16) 100%),
    url('../images/hero-aquarium.webp') center right / cover no-repeat;
}

.owm-hero::after {
  position: absolute;
  z-index: -1;
  right: -70px;
  bottom: -160px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  content: "";
  box-shadow: -110px -60px 0 -88px rgba(19,200,193,.2), -235px 55px 0 -170px rgba(255,255,255,.15);
}

.owm-hero__inner {
  display: flex;
  min-height: 700px;
  align-items: center;
  padding-block: 90px 100px;
}

.owm-hero__content { width: min(720px, 66%); }

.owm-hero h1 {
  max-width: 720px;
  margin: 0 0 1.25rem;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 760;
  line-height: .98;
  letter-spacing: -.055em;
}

.owm-hero h1 em {
  display: block;
  color: var(--owm-aqua);
  font-style: normal;
}

.owm-hero__intro {
  max-width: 610px;
  margin: 0 0 2rem;
  color: rgba(255,255,255,.8);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  line-height: 1.6;
}

.owm-actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

.owm-proofbar {
  display: grid;
  max-width: 780px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.17);
  padding-top: 1.35rem;
}

.owm-proofbar__item { padding-right: 1rem; color: rgba(255,255,255,.68); font-size: .86rem; line-height: 1.4; }
.owm-proofbar__item strong { display: block; margin-bottom: .18rem; color: var(--owm-white); font-size: 1rem; }

.owm-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
}

.owm-problem-list { display: grid; gap: .95rem; }

.owm-problem {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--owm-line);
  padding: 0 0 1rem;
}

.owm-problem:last-child { border-bottom: 0; }
.owm-problem__icon { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 14px; color: var(--owm-blue); background: #e6f7f7; font-weight: 900; }
.owm-problem h3 { margin: .12rem 0 .2rem; font-size: 1.12rem; }
.owm-problem p { margin: 0; color: var(--owm-copy); font-size: .94rem; }

.owm-service-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.2rem;
  margin-top: 3.2rem;
}

.owm-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--owm-line);
  border-radius: var(--owm-radius);
  padding: clamp(1.55rem, 3vw, 2.25rem);
  background: var(--owm-white);
  box-shadow: 0 10px 35px rgba(7,26,43,.06);
}

.owm-card--featured {
  color: var(--owm-white);
  border: 0;
  background: linear-gradient(150deg, #071a2b 0%, #083a70 100%);
  box-shadow: var(--owm-shadow);
}

.owm-card--featured::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  content: "";
  background: rgba(19,200,193,.1);
}

.owm-card__number { display: inline-flex; margin-bottom: 2.5rem; color: var(--owm-blue); font-size: .76rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.owm-card--featured .owm-card__number { color: var(--owm-aqua); }
.owm-card h3 { position: relative; margin: 0 0 .7rem; font-size: clamp(1.5rem,3vw,2rem); }
.owm-card p { position: relative; margin: 0 0 1rem; color: var(--owm-copy); }
.owm-card--featured p { color: rgba(255,255,255,.72); }
.owm-card__price { position: relative; margin: 1.3rem 0 1.5rem; color: var(--owm-ink); font-size: 1.35rem; font-weight: 850; }
.owm-card--featured .owm-card__price { color: var(--owm-white); }
.owm-card__price small { display: block; margin-top: .2rem; color: var(--owm-copy); font-size: .76rem; font-weight: 600; }
.owm-card--featured .owm-card__price small { color: rgba(255,255,255,.58); }
.owm-text-link { position: relative; display: inline-flex; align-items: center; gap: .4rem; color: var(--owm-blue); font-weight: 800; text-decoration: none; }
.owm-card--featured .owm-text-link { color: var(--owm-aqua); }

.owm-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.owm-photo {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--owm-navy);
  box-shadow: var(--owm-shadow);
}

.owm-photo img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.owm-photo video { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.owm-photo__badge { position: absolute; right: 22px; bottom: 22px; max-width: 210px; border-radius: 16px; padding: 1rem 1.2rem; color: var(--owm-white); background: rgba(7,26,43,.9); font-size: .83rem; line-height: 1.45; backdrop-filter: blur(8px); }
.owm-photo__badge strong { display: block; margin-bottom: .15rem; color: var(--owm-aqua); font-size: 1.05rem; }

.owm-checks { display: grid; gap: .7rem; margin: 1.6rem 0 2rem; padding: 0; list-style: none; }
.owm-checks li { position: relative; padding-left: 1.9rem; color: var(--owm-copy); }
.owm-checks li::before { position: absolute; top: .1rem; left: 0; display: grid; width: 1.25rem; height: 1.25rem; place-items: center; border-radius: 50%; content: "✓"; color: var(--owm-ink); background: var(--owm-aqua); font-size: .75rem; font-weight: 900; }
.owm-section--ink .owm-checks li { color: rgba(255,255,255,.72); }

.owm-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
.owm-step { border-top: 1px solid rgba(255,255,255,.22); padding: 1.5rem 1.2rem 0 0; }
.owm-step__number { color: var(--owm-aqua); font-size: .75rem; font-weight: 850; letter-spacing: .12em; }
.owm-step h3 { margin: .7rem 0 .55rem; font-size: 1.28rem; }
.owm-step p { margin: 0; color: rgba(255,255,255,.66); font-size: .95rem; }

.owm-sector-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: .8rem; margin-top: 2.5rem; }
.owm-sector { min-height: 140px; border: 1px solid var(--owm-line); border-radius: 18px; padding: 1.25rem; background: var(--owm-white); font-weight: 760; line-height: 1.35; }
.owm-sector__mark { display: block; width: 32px; height: 3px; margin-bottom: 2rem; background: var(--owm-aqua); }

.owm-gallery { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 260px 260px; gap: .85rem; margin-top: 3rem; }
.owm-gallery figure { position: relative; overflow: hidden; margin: 0; border-radius: 20px; background: var(--owm-ink); }
.owm-gallery figure:first-child { grid-row: 1 / 3; }
.owm-gallery figure:nth-child(2) { grid-column: 2 / 4; }
.owm-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.owm-gallery figure:hover img { transform: scale(1.035); }
.owm-gallery figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 2rem 1rem 1rem; color: var(--owm-white); background: linear-gradient(transparent,rgba(7,26,43,.86)); font-size: .8rem; }

.owm-quote {
  position: relative;
  border-left: 4px solid var(--owm-aqua);
  margin: 2rem 0 0;
  padding: .3rem 0 .3rem 1.4rem;
  color: var(--owm-ink);
  font-size: clamp(1.25rem,2.3vw,1.75rem);
  font-weight: 700;
  line-height: 1.4;
}

.owm-faq { display: grid; gap: .7rem; margin-top: 2.6rem; }
.owm-faq details { border: 1px solid var(--owm-line); border-radius: 16px; padding: 0 1.25rem; background: var(--owm-white); }
.owm-faq summary { position: relative; cursor: pointer; padding: 1.25rem 2.5rem 1.25rem 0; font-weight: 780; list-style: none; }
.owm-faq summary::-webkit-details-marker { display: none; }
.owm-faq summary::after { position: absolute; top: 1.05rem; right: 0; display: grid; width: 1.8rem; height: 1.8rem; place-items: center; border-radius: 50%; content: "+"; color: var(--owm-blue); background: var(--owm-foam); font-size: 1.2rem; }
.owm-faq details[open] summary::after { content: "−"; }
.owm-faq details p { margin: -.2rem 0 1.3rem; color: var(--owm-copy); }

.owm-cta {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(2.2rem, 6vw, 5rem);
  color: var(--owm-white);
  background: linear-gradient(135deg,var(--owm-navy),var(--owm-blue));
  box-shadow: var(--owm-shadow);
}
.owm-cta::after { position: absolute; right: -90px; bottom: -180px; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; content: ""; }
.owm-cta > * { position: relative; z-index: 1; }
.owm-cta h2 { max-width: 760px; margin: 0 0 1rem; font-size: clamp(2rem,5vw,3.8rem); }
.owm-cta p { max-width: 690px; margin: 0 0 1.8rem; color: rgba(255,255,255,.74); font-size: 1.08rem; }

.owm-page-hero { padding: clamp(70px,10vw,130px) 0; color: var(--owm-white); background: linear-gradient(135deg,#071a2b,#083a70); }
.owm-page-hero__grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(280px,.85fr); gap: 60px; align-items: end; }
.owm-page-hero h1 { max-width: 780px; margin: 0 0 1.1rem; font-size: clamp(2.7rem,6vw,5.2rem); }
.owm-page-hero__intro { max-width: 720px; margin: 0; color: rgba(255,255,255,.74); font-size: clamp(1.05rem,2vw,1.3rem); }
.owm-page-hero__aside { border-left: 1px solid rgba(255,255,255,.2); padding-left: 2rem; }
.owm-page-hero__aside strong { display: block; margin-bottom: .4rem; color: var(--owm-aqua); font-size: 1.5rem; }

.owm-content-grid { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr); gap: clamp(40px,7vw,90px); align-items: start; }
.owm-content h2 { margin: 0 0 1rem; font-size: clamp(1.8rem,4vw,3rem); }
.owm-content h3 { margin: 2rem 0 .65rem; font-size: 1.3rem; }
.owm-content p { color: var(--owm-copy); }
.owm-panel { border-radius: var(--owm-radius); padding: 2rem; background: var(--owm-foam); }
.owm-panel h3 { margin-top: 0; }
.owm-panel--sticky { position: sticky; top: 130px; }

.owm-pricing { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2.5rem; }
.owm-price { border: 1px solid var(--owm-line); border-radius: 20px; padding: 1.7rem; background: var(--owm-white); }
.owm-price--featured { border-color: var(--owm-aqua); box-shadow: var(--owm-shadow); }
.owm-price__label { color: var(--owm-blue); font-size: .76rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.owm-price h3 { margin: .7rem 0 .45rem; font-size: 1.35rem; }
.owm-price__amount { margin: 1.2rem 0; font-size: 1.8rem; font-weight: 850; }
.owm-price p { color: var(--owm-copy); font-size: .92rem; }

.owm-form-shell { border-radius: 24px; padding: clamp(1.5rem,4vw,2.7rem); background: var(--owm-white); box-shadow: var(--owm-shadow); }
.owm-form-shell label { display: block; margin: 0 0 .35rem; font-weight: 750; }
.owm-form-shell input:not([type="checkbox"]):not([type="radio"]),
.owm-form-shell textarea,
.owm-form-shell select { width: 100%; min-height: 50px; border: 1px solid #bfd0d8; border-radius: 10px; padding: .75rem .9rem; color: var(--owm-ink); background: #fff; font: inherit; }
.owm-form-shell textarea { min-height: 150px; resize: vertical; }
.owm-form-shell input:focus,
.owm-form-shell textarea:focus,
.owm-form-shell select:focus { border-color: var(--owm-blue); outline: 3px solid rgba(8,121,201,.12); }
.owm-form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.1rem; }
.owm-form-field { margin-bottom: 1.1rem; }
.owm-form-field--full { grid-column: 1 / -1; }
.owm-form-hint { color: var(--owm-copy); font-size: .78rem; }

.site-footer { color: rgba(255,255,255,.7); background: #04131f; }
.owm-footer__main { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 60px; padding: 72px 0 52px; }
.owm-footer__brand { width: min(300px,100%); border-radius: 10px; padding: .45rem; background: #fff; }
.owm-footer__brand img { display: block; width: 100%; height: auto; }
.owm-footer__intro { max-width: 480px; margin: 1.3rem 0 0; }
.owm-footer h3 { margin: 0 0 1rem; color: var(--owm-white); font-size: 1rem; }
.owm-footer ul { margin: 0; padding: 0; list-style: none; }
.owm-footer li { margin-bottom: .55rem; }
.owm-footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.owm-footer a:hover { color: var(--owm-aqua); }
.owm-footer__bottom { display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 0 1.8rem; font-size: .78rem; }

.owm-screen-reader { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

@media (max-width: 1080px) {
  .owm-nav { gap: .9rem; }
  .owm-nav > a:not(.owm-button) { font-size: .82rem; }
  .owm-logo { width: 205px; }
  .owm-service-grid { grid-template-columns: 1fr 1fr; }
  .owm-card--featured { grid-column: 1 / -1; }
  .owm-sector-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 860px) {
  body.admin-bar .site-header { top: 46px; }
  .owm-topbar__item:nth-child(2) { display: none; }
  .owm-header__inner { min-height: 82px; }
  .owm-nav { display: none; }
  .owm-mobile-nav { display: block; }
  .owm-mobile-nav summary { display: grid; width: 46px; height: 46px; cursor: pointer; place-items: center; border-radius: 50%; color: var(--owm-ink); background: var(--owm-mist); font-size: 0; list-style: none; }
  .owm-mobile-nav summary::-webkit-details-marker { display: none; }
  .owm-mobile-nav summary::before { content: "☰"; font-size: 1.25rem; }
  .owm-mobile-nav[open] summary::before { content: "×"; font-size: 1.65rem; }
  .owm-mobile-nav__panel { position: absolute; top: 100%; right: 0; left: 0; display: grid; gap: .2rem; border-top: 1px solid var(--owm-line); padding: 1rem 20px 1.25rem; background: #fff; box-shadow: 0 18px 34px rgba(7,26,43,.14); }
  .owm-mobile-nav__panel a { border-radius: 10px; padding: .75rem; color: var(--owm-ink); font-weight: 720; text-decoration: none; }
  .owm-mobile-nav__panel .owm-button { margin-top: .45rem; }
  .owm-hero, .owm-hero__inner { min-height: 650px; }
  .owm-hero::before { background: linear-gradient(90deg,rgba(4,20,34,.98),rgba(4,26,44,.74)), url('../images/hero-aquarium.webp') 58% center / cover no-repeat; }
  .owm-hero__content { width: 88%; }
  .owm-intro-grid, .owm-split, .owm-content-grid, .owm-page-hero__grid { grid-template-columns: 1fr; }
  .owm-steps { grid-template-columns: 1fr; gap: 2rem; }
  .owm-page-hero__aside { border-top: 1px solid rgba(255,255,255,.2); border-left: 0; padding-top: 1.5rem; padding-left: 0; }
  .owm-panel--sticky { position: static; }
  .owm-footer__main { grid-template-columns: 1fr 1fr; }
  .owm-footer__main > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --owm-shell: min(100% - 28px, 1180px); }
  .owm-topbar { font-size: .7rem; }
  .owm-topbar__inner { justify-content: space-between; gap: .5rem; }
  .owm-logo { width: 175px; }
  .owm-hero, .owm-hero__inner { min-height: 650px; }
  .owm-hero__inner { align-items: flex-end; padding-block: 90px 68px; }
  .owm-hero__content { width: 100%; }
  .owm-hero h1 { font-size: clamp(2.65rem,13vw,4rem); }
  .owm-actions { align-items: stretch; flex-direction: column; }
  .owm-actions .owm-button { width: 100%; }
  .owm-proofbar { grid-template-columns: 1fr; gap: .8rem; }
  .owm-proofbar__item { border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: .8rem; }
  .owm-proofbar__item:last-child { border-bottom: 0; }
  .owm-service-grid, .owm-sector-grid, .owm-pricing, .owm-form-grid { grid-template-columns: 1fr; }
  .owm-card--featured, .owm-form-field--full { grid-column: auto; }
  .owm-photo { min-height: 430px; }
  .owm-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 210px 210px; }
  .owm-gallery figure:first-child { grid-row: auto; grid-column: 1 / -1; }
  .owm-gallery figure:nth-child(2) { grid-column: auto; }
  .owm-gallery figure:last-child { grid-column: 1 / -1; }
  .owm-footer__main { grid-template-columns: 1fr; gap: 38px; }
  .owm-footer__main > :first-child { grid-column: auto; }
  .owm-footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
