:root {
  --green: #62b63f;
  --green-dark: #397b28;
  --green-soft: #eff8ea;
  --ink: #182018;
  --charcoal: #222622;
  --muted: #5f695f;
  --cream: #fbfaf5;
  --white: #ffffff;
  --line: #dfe7dc;
  --shadow: 0 18px 48px rgba(21, 37, 19, 0.12);
  --shadow-small: 0 10px 28px rgba(21, 37, 19, 0.1);
  --radius: 24px;
  --radius-small: 14px;
  --page: min(1180px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.5rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 18px;
}

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

.section {
  padding: clamp(72px, 9vw, 128px) 0;
}

.section-tight {
  padding: clamp(56px, 7vw, 88px) 0;
}

.section-white {
  background: var(--white);
}

.section-green {
  color: var(--white);
  background: var(--green-dark);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.section-green .section-kicker {
  color: #dff5d7;
}

.section-green .section-kicker::before {
  background: #a4e589;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 60px);
}

.section-heading p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-green .section-heading p {
  color: #e1ecde;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  padding: 22px 0;
  color: var(--white);
}

.site-header.is-solid {
  position: relative;
  background: var(--charcoal);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--page);
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.22));
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
}

.header-nav a {
  position: relative;
  color: inherit;
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.header-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

.header-nav a:not(.button):hover::after,
.header-nav a:not(.button):focus-visible::after,
.header-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  place-items: center;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: var(--green);
  background: var(--green);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  background: var(--green);
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.015em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: #78c958;
  box-shadow: 0 10px 26px rgba(69, 134, 44, 0.28);
  transform: translateY(-2px);
}

.button-white {
  color: var(--ink);
  background: var(--white);
}

.button-white:hover,
.button-white:focus-visible {
  background: #edf8e8;
}

.button-outline {
  border-color: var(--green-dark);
  color: var(--green-dark);
  background: transparent;
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--white);
  background: var(--green-dark);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #303a30;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(900px, 100svh);
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #24411e;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 66%;
}

.hero-media::after {
  background:
    linear-gradient(180deg, rgba(8, 14, 8, 0.2) 0%, rgba(8, 14, 8, 0.08) 34%, rgba(8, 14, 8, 0.82) 100%),
    linear-gradient(90deg, rgba(8, 14, 8, 0.38) 0%, transparent 64%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--page);
  margin-inline: auto;
  padding: 190px 0 68px;
}

.hero-content-inner {
  max-width: 770px;
}

.hero h1 {
  margin-bottom: 18px;
  text-wrap: balance;
}

.hero p {
  max-width: 620px;
  margin-bottom: 30px;
  color: #eef3ec;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 34px 0 0;
  padding: 0;
  color: #f2f7ef;
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust li::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(98, 182, 63, 0.22);
  content: "";
}

.intro-grid,
.team-grid,
.contact-grid,
.booking-intro {
  display: grid;
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
  grid-template-columns: 1.05fr 0.95fr;
}

.intro-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-feature {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.intro-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 250px;
  padding: 18px 20px;
  border-radius: 18px;
  color: var(--white);
  background: rgba(24, 32, 24, 0.92);
  backdrop-filter: blur(8px);
}

.intro-badge strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1.18rem;
}

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

.image-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: #233323;
  box-shadow: var(--shadow-small);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.image-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(11, 18, 11, 0.88) 100%);
  content: "";
}

.image-card-content {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 22px;
  left: 22px;
}

.image-card h3 {
  margin-bottom: 4px;
  font-size: 1.45rem;
}

.image-card p {
  margin-bottom: 0;
  color: #eef5eb;
  font-size: 0.93rem;
}

.image-card:hover img {
  transform: scale(1.045);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 94px) 0;
  color: var(--white);
  background: var(--green-dark);
}

.cta-band::after {
  position: absolute;
  top: -130px;
  right: -90px;
  width: 350px;
  height: 350px;
  border: 70px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-band h2 {
  max-width: 680px;
  margin-bottom: 8px;
}

.cta-band p {
  max-width: 650px;
  margin-bottom: 0;
  color: #e5f1e1;
}

.training-card {
  position: relative;
  display: grid;
  min-height: 470px;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.training-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}

.training-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 26, 18, 0.94) 0%, rgba(18, 26, 18, 0.68) 54%, rgba(18, 26, 18, 0.18) 100%);
  content: "";
}

.training-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: clamp(38px, 7vw, 84px);
}

.training-content p {
  color: #e6eee3;
  font-size: 1.06rem;
}

.person-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.person-card img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}

.person-card:nth-child(1) img {
  object-position: center 30%;
}

.person-card:nth-child(2) img {
  object-position: center;
}

.person-copy {
  align-self: center;
  padding: clamp(28px, 5vw, 58px);
}

.person-copy p {
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 250px 250px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #e8eee5;
}

.gallery-grid figure:first-child {
  grid-row: 1 / 3;
}

.gallery-grid figure:last-child {
  grid-column: 2 / 4;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.inner-hero {
  position: relative;
  display: grid;
  min-height: 470px;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.inner-hero.has-image {
  min-height: 560px;
}

.not-found-hero {
  min-height: 100svh;
}

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

.inner-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-hero-media::after {
  background: linear-gradient(180deg, rgba(11, 18, 11, 0.22), rgba(11, 18, 11, 0.83));
  content: "";
}

.inner-hero-content {
  position: relative;
  z-index: 1;
  width: var(--page);
  margin-inline: auto;
  padding: clamp(74px, 10vw, 130px) 0 62px;
}

.inner-hero h1 {
  max-width: 920px;
  margin-bottom: 14px;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.inner-hero p {
  max-width: 680px;
  margin-bottom: 0;
  color: #e8efe5;
  font-size: 1.15rem;
}

.service-list {
  display: grid;
  gap: 30px;
}

.service-row {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
  grid-template-columns: minmax(300px, 0.92fr) 1.08fr;
}

.service-row:nth-child(even) {
  grid-template-columns: 1.08fr minmax(300px, 0.92fr);
}

.service-row:nth-child(even) .service-image {
  order: 2;
}

.service-image {
  min-height: 430px;
  background: #e6ece3;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(32px, 6vw, 72px);
}

.service-copy p,
.service-copy li {
  color: var(--muted);
}

.service-copy ul {
  display: grid;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-copy li {
  position: relative;
  padding-left: 19px;
  font-size: 0.94rem;
}

.service-copy li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.price {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--green-dark);
  font-size: 1.15rem;
  font-weight: 850;
}

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

.small-service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.small-service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.small-service-copy {
  padding: 30px;
}

.small-service-copy p {
  color: var(--muted);
}

.booking-intro-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-intro-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.booking-steps {
  display: grid;
  margin-top: 32px;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-step {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.booking-step strong {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 13px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-dark);
  place-items: center;
}

.booking-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.booking-frame-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-frame-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}

.booking-frame-header p {
  margin-bottom: 0;
  color: var(--muted);
}

.booking-frame {
  display: block;
  width: 100%;
  min-height: 980px;
  border: 0;
  background: #f7f8f5;
}

.booking-fallback {
  margin-top: 18px;
  color: var(--muted);
  text-align: center;
}

.booking-fallback a {
  color: var(--green-dark);
  font-weight: 800;
}

.contact-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.contact-details {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.contact-card p,
.contact-card address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
}

.contact-card a {
  color: var(--green-dark);
  font-weight: 780;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hours-list {
  display: grid;
  max-width: 620px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.hours-list li:last-child {
  border-bottom: 0;
}

.hours-list span:last-child {
  color: var(--muted);
}

.site-footer {
  padding: 70px 0 28px;
  color: var(--white);
  background: #171c17;
}

.footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1.2fr 0.75fr 0.9fr;
}

.footer-brand img {
  width: 140px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 390px;
  color: #c9d3c6;
}

.footer-heading {
  margin-bottom: 15px;
  color: #f1f6ef;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 10px;
}

.footer-links a {
  color: #cbd5c8;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--green);
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact a,
.footer-contact span {
  color: #cbd5c8;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #aeb9ab;
  font-size: 0.84rem;
}

.footer-bottom a {
  color: inherit;
  text-underline-offset: 3px;
}

.floating-call {
  position: fixed;
  z-index: 45;
  right: 18px;
  bottom: 18px;
  display: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-dark);
  box-shadow: 0 12px 32px rgba(26, 60, 22, 0.34);
  place-items: center;
}

.floating-call svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.notice {
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  border-radius: 0 12px 12px 0;
  color: var(--muted);
  background: var(--green-soft);
}

.notice strong {
  color: var(--ink);
}

@media (max-width: 1080px) {
  .header-nav {
    position: fixed;
    z-index: 40;
    top: 0;
    right: 0;
    width: min(410px, 88vw);
    height: 100dvh;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    padding: 120px 38px 46px;
    color: var(--white);
    background: #182018;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.22);
    transform: translateX(102%);
    transition: transform 0.26s ease;
  }

  .menu-open .header-nav {
    transform: translateX(0);
  }

  .header-nav a:not(.button) {
    padding: 7px 0;
    font-size: 1.18rem;
  }

  .header-nav .social-links {
    margin: 12px 0;
  }

  .menu-toggle {
    position: relative;
    z-index: 50;
    display: block;
  }

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

  .image-card {
    min-height: 440px;
  }

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

  .booking-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --page: min(100% - 30px, 680px);
  }

  .brand img {
    width: 90px;
    height: 90px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-media img {
    object-position: 51% 72%;
  }

  .hero-content {
    padding-bottom: 48px;
  }

  .intro-grid,
  .contact-grid,
  .booking-intro {
    grid-template-columns: 1fr;
  }

  .intro-feature {
    order: -1;
  }

  .cta-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .person-card,
  .service-row,
  .service-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-row:nth-child(even) .service-image {
    order: 0;
  }

  .service-image {
    min-height: 360px;
  }

  .small-services {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / 3;
  }
}

@media (max-width: 600px) {
  :root {
    --page: calc(100% - 26px);
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.8rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .site-header {
    padding-top: 14px;
  }

  .brand img {
    width: 76px;
    height: 76px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media img {
    object-position: 52% 74%;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(8, 14, 8, 0.1), rgba(8, 14, 8, 0.16) 42%, rgba(8, 14, 8, 0.92) 100%);
  }

  .hero-content {
    padding: 128px 0 42px;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions .button,
  .action-row .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    gap: 10px;
  }

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

  .image-card {
    min-height: 380px;
  }

  .training-card {
    min-height: 520px;
  }

  .training-card::after {
    background: linear-gradient(180deg, rgba(18, 26, 18, 0.32), rgba(18, 26, 18, 0.94) 78%);
  }

  .training-content {
    align-self: end;
    padding: 34px 24px;
  }

  .person-card {
    grid-template-columns: 1fr;
  }

  .person-card img {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 210px);
  }

  .gallery-grid figure:first-child,
  .gallery-grid figure:last-child {
    grid-row: auto;
    grid-column: auto;
  }

  .inner-hero,
  .inner-hero.has-image {
    min-height: 470px;
  }

  .inner-hero-content {
    padding-bottom: 42px;
  }

  .service-copy {
    padding: 30px 22px;
  }

  .service-copy ul {
    grid-template-columns: 1fr;
  }

  .service-image {
    min-height: 300px;
  }

  .booking-frame-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-frame {
    min-height: 900px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    display: grid;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .floating-call {
    display: grid;
  }
}

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