:root {
  --navy: #0d1b29;
  --navy-soft: #16283a;
  --ink: #182029;
  --ivory: #f5f1e9;
  --paper: #fffdf9;
  /* Darker accent for WCAG AA on light backgrounds and white-on-accent buttons */
  --accent: #a05c24;
  --accent-light: #e8a36a;
  --muted-on-dark: #9aa3ab;
  --line: rgb(24 32 41 / 14%);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Poppins", Arial, sans-serif;
  --shadow: 0 24px 70px rgb(13 27 41 / 12%);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.lightbox-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button,
input,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.site-header.is-scrolled,
.site-header.menu-open {
  border-color: var(--line);
  background: rgb(255 253 249 / 94%);
  box-shadow: 0 10px 40px rgb(13 27 41 / 8%);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  width: min(1280px, calc(100% - 48px));
  height: 88px;
  margin-inline: auto;
  align-items: center;
  gap: 40px;
}
.brand img {
  width: 62px;
  filter: invert(1);
  transition: filter 0.25s;
}
.site-header.is-scrolled .brand img,
.site-header.menu-open .brand img {
  filter: none;
}
.desktop-nav {
  display: flex;
  margin-left: auto;
  gap: 34px;
}
.desktop-nav a {
  position: relative;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.site-header.is-scrolled .desktop-nav a,
.site-header.menu-open .desktop-nav a {
  color: var(--ink);
}
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s;
}
.desktop-nav a:hover::after {
  transform: scaleX(1);
}
.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 26px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  border-radius: 2px;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s,
    border-color 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button--small {
  min-height: 44px;
  padding-inline: 20px;
}
.header-cta {
  margin-left: 4px;
  border-color: rgb(255 255 255 / 55%);
  background: transparent;
}
.site-header.is-scrolled .header-cta,
.site-header.menu-open .header-cta {
  border-color: var(--navy);
  color: #fff;
  background: var(--navy);
}
.button--accent {
  border-color: var(--accent);
  background: var(--accent);
}
.button--accent:hover {
  border-color: #8b4513;
  background: #8b4513;
}
.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 920px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
  place-items: center;
}
.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-media {
  background: url("./assets.zyrosite.com/mb4aWQYVxeJbzcZa/dsc09043-1520x1013-MD21y0UYUPwS8Wdh.jpg")
    center 62% / cover no-repeat;
  transform: scale(1.02);
}
.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgb(6 18 30 / 90%) 0%,
      rgb(6 18 30 / 67%) 49%,
      rgb(6 18 30 / 18%) 100%
    ),
    linear-gradient(0deg, rgb(6 18 30 / 62%), transparent 45%);
}
.hero-content {
  position: relative;
  padding-top: 106px;
}
.eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow--light {
  color: var(--accent-light);
}
h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
}
.hero h1 {
  max-width: 880px;
  margin-bottom: 30px;
  font-size: clamp(56px, 6.5vw, 92px);
  letter-spacing: -0.035em;
}
.hero h1 span {
  display: block;
  color: #d7dee5;
  font-size: 0.72em;
  font-style: italic;
}
.hero-copy {
  max-width: 690px;
  margin: 0;
  color: rgb(255 255 255 / 78%);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 30px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.text-link span {
  color: var(--accent);
  font-size: 18px;
}
.text-link--light {
  color: #fff;
}
.hero-facts {
  display: grid;
  max-width: 780px;
  margin: 70px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid rgb(255 255 255 / 28%);
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}
.hero-facts li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-facts strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
}
.hero-facts span {
  color: rgb(255 255 255 / 58%);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  padding: 120px 0;
}
.section--ivory {
  background: var(--ivory);
}
.section--white {
  background: var(--paper);
}
.section--dark,
.section--navy {
  color: #fff;
  background: #0b141d;
}
.section--navy {
  background: var(--navy);
}
.section h2,
.manifesto h2,
.contact h2 {
  margin-bottom: 28px;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -0.025em;
}
.section h3 {
  font-size: 28px;
}
.split-layout,
.leadership-grid {
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: 1.04fr 0.96fr;
}
.section-copy {
  max-width: 610px;
}
.lead {
  margin: -8px 0 30px;
  color: #59616a;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.5;
}
.prose p {
  margin: 0 0 16px;
}
blockquote {
  margin: 34px 0;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  line-height: 1.4;
}
.editorial-image {
  position: relative;
  margin: 0;
}
.editorial-image img {
  width: 100%;
  height: 680px;
  box-shadow: var(--shadow);
  object-fit: cover;
}
.editorial-image figcaption {
  position: absolute;
  right: -20px;
  bottom: 30px;
  padding: 14px 18px;
  color: #fff;
  background: var(--navy);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-heading {
  max-width: 780px;
  margin-bottom: 60px;
}
.section-heading > p:last-child {
  color: rgb(255 255 255 / 72%);
  font-size: 19px;
}
.section-heading--center {
  margin-inline: auto;
  text-align: center;
}
/* Muted body copy under center headings on light sections only */
.section--ivory .section-heading--center > p:last-child,
.section--white .section-heading--center > p:last-child {
  color: #59616a;
}
.section--dark .section-heading > p:last-child,
.section--navy .section-heading > p:last-child {
  color: var(--muted-on-dark);
}
.contrast-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}
.contrast-card {
  position: relative;
  min-height: 480px;
  padding: 54px;
  border: 1px solid rgb(255 255 255 / 13%);
  background: rgb(255 255 255 / 4%);
}
.contrast-card--accent {
  border-color: rgb(160 92 36 / 50%);
  background: linear-gradient(
    145deg,
    rgb(160 92 36 / 18%),
    rgb(255 255 255 / 4%)
  );
}
.card-number {
  display: block;
  margin-bottom: 70px;
  color: var(--accent-light);
  font-size: 11px;
  letter-spacing: 0.15em;
}
.contrast-card h3 {
  margin-bottom: 30px;
  font-size: 43px;
}
.check-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 16px;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 24px;
  color: rgb(255 255 255 / 78%);
}
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--accent-light);
  content: "+";
}
.check-list--negative li::before {
  color: rgb(255 255 255 / 38%);
  content: "–";
}
.statement {
  max-width: 900px;
  margin: 70px auto 0;
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.45;
  text-align: center;
}
.statement strong {
  display: block;
  color: var(--accent-light);
  font-weight: 500;
}
.leadership-grid {
  grid-template-columns: 0.9fr 1.1fr;
}
.leadership-visual {
  position: relative;
}
.leadership-visual img {
  width: 100%;
  height: 720px;
  object-fit: cover;
}
.image-note {
  position: absolute;
  right: -24px;
  bottom: 30px;
  max-width: 210px;
  padding: 20px;
  color: #fff;
  background: var(--navy);
  font-family: var(--serif);
  font-size: 18px;
}
.feature-list {
  display: grid;
  margin: 28px 0;
  padding: 0;
  gap: 15px;
  list-style: none;
}
.feature-list li {
  padding: 0 0 15px 28px;
  border-bottom: 1px solid var(--line);
}
.feature-list li::before {
  position: absolute;
  margin-left: -28px;
  color: var(--accent);
  content: "◆";
  font-size: 9px;
}
.coach-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
}
.coach-card {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 13%);
  background: rgb(255 255 255 / 4%);
}
.coach-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.8);
}
.coach-copy {
  padding: 38px 42px 42px;
}
.role {
  min-height: 38px;
  margin: 0 0 14px;
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.coach-copy h3 {
  margin-bottom: 20px;
  font-size: 40px;
}
.coach-copy > p:not(.role) {
  color: rgb(255 255 255 / 68%);
}
.coach-copy a {
  display: inline-block;
  margin-top: 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
.coach-copy a span {
  color: var(--accent-light);
}
.outcome-grid {
  display: grid;
  align-items: stretch;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
.outcome-card {
  padding: 44px 36px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.outcome-card--featured {
  color: #fff;
  background: var(--navy);
  transform: translateY(-18px);
}
.outcome-card > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.outcome-card--featured > span {
  color: var(--accent-light);
}
.outcome-card h3 {
  min-height: 65px;
  margin: 60px 0 24px;
  font-size: 31px;
}
.outcome-card p {
  margin: 0;
  color: #686f76;
}
.outcome-card--featured p {
  color: rgb(255 255 255 / 68%);
}

.manifesto {
  position: relative;
  display: grid;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  place-items: end start;
}
.manifesto > img,
.manifesto-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.manifesto-shade {
  background: linear-gradient(90deg, rgb(8 20 32 / 92%), rgb(8 20 32 / 38%));
}
.manifesto-content {
  position: relative;
  padding-bottom: 100px;
}
.manifesto-content h2,
.manifesto-content > p {
  max-width: 720px;
}
.manifesto-content > p:not(.eyebrow) {
  color: rgb(255 255 255 / 74%);
  font-size: 19px;
}
.manifesto-line {
  margin-top: 36px;
  padding-top: 25px;
  border-top: 1px solid rgb(255 255 255 / 28%);
  font-family: var(--serif);
  font-style: italic;
}
.process-layout {
  display: grid;
  gap: 100px;
  grid-template-columns: 0.8fr 1.2fr;
}
.process-intro {
  position: sticky;
  top: 140px;
  align-self: start;
}
.process-intro > p:last-child {
  color: #656d74;
}
.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}
.timeline li {
  display: grid;
  padding: 0 0 58px;
  gap: 32px;
  grid-template-columns: 55px 1fr;
}
.timeline li:not(:last-child) {
  border-bottom: 1px solid var(--line);
  margin-bottom: 58px;
}
.timeline > li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 11px;
}
.timeline h3 {
  margin: 0 0 12px;
  font-size: 34px;
}
.timeline p {
  max-width: 540px;
  margin: 0;
  color: #656d74;
}
.details-layout {
  display: grid;
  gap: 80px;
  grid-template-columns: 0.8fr 1.2fr;
}
.details-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}
.details-copy > p:not(.eyebrow) {
  color: rgb(255 255 255 / 65%);
}
.details-copy img {
  width: 100%;
  height: 310px;
  margin-top: 40px;
  object-fit: cover;
}
.details-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr;
}
.details-grid article {
  min-height: 220px;
  padding: 32px;
  border: 1px solid rgb(255 255 255 / 13%);
  background: rgb(255 255 255 / 4%);
}
.details-grid article > span {
  color: var(--accent-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.details-grid h3 {
  margin: 50px 0 8px;
  font-size: 25px;
}
.details-grid p {
  margin: 0;
  color: rgb(255 255 255 / 54%);
  font-size: 13px;
}
.details-card--wide {
  grid-column: 1 / -1;
}
.included-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  gap: 12px 30px;
  grid-template-columns: 1fr 1fr;
  list-style: none;
}
.included-list li::before {
  margin-right: 10px;
  color: var(--accent-light);
  content: "✓";
}
.details-button {
  grid-column: 1 / -1;
}
.gallery {
  display: grid;
  height: 760px;
  gap: 12px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 1fr 1fr;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--navy);
  cursor: zoom-in;
}
.gallery-item--large {
  grid-row: span 2;
}
.gallery-item--wide {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s,
    opacity 0.4s;
}
.gallery-item:hover img {
  opacity: 0.82;
  transform: scale(1.035);
}

.contact {
  padding: 120px 0;
  color: #fff;
  background: var(--navy);
}
.contact-grid {
  display: grid;
  gap: 100px;
  grid-template-columns: 0.85fr 1.15fr;
}
.contact-copy > p:not(.eyebrow) {
  color: rgb(255 255 255 / 67%);
  font-size: 18px;
}
.contact-direct {
  display: flex;
  margin-top: 40px;
  flex-direction: column;
  gap: 5px;
}
.contact-direct a {
  color: #fff;
  font-family: var(--serif);
  font-size: 23px;
  text-decoration: none;
}
.contact-form {
  padding: 45px;
  border: 1px solid rgb(255 255 255 / 15%);
  background: rgb(255 255 255 / 5%);
}
.contact-form label {
  display: grid;
  gap: 9px;
  color: rgb(255 255 255 / 72%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid rgb(255 255 255 / 28%);
  border-radius: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  text-transform: none;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-light);
}
.contact-form > label {
  margin-top: 25px;
}
.contact-form .button {
  width: 100%;
  margin-top: 28px;
}
.form-note {
  margin: 12px 0 0;
  color: rgb(255 255 255 / 68%);
  font-size: 10px;
  line-height: 1.5;
}
.site-footer {
  padding: 36px 0;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: rgb(255 255 255 / 55%);
  background: #08121c;
  font-size: 11px;
}
.footer-grid {
  display: grid;
  align-items: center;
  gap: 30px;
  grid-template-columns: auto 1fr auto;
}
.footer-grid > img {
  width: 47px;
  filter: invert(1);
}
.footer-links {
  display: flex;
  gap: 22px;
}
.footer-links a {
  color: inherit;
  text-decoration: none;
}

.lightbox {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  padding: 50px 90px;
  place-items: center;
  background: rgb(5 13 21 / 96%);
}
.lightbox[hidden] {
  display: none;
}
.lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 100px);
  box-shadow: 0 30px 90px #000;
  object-fit: contain;
}
.lightbox button {
  position: absolute;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 50%;
  color: #fff;
  background: rgb(255 255 255 / 7%);
  font-size: 28px;
  cursor: pointer;
}
.lightbox-close {
  top: 25px;
  right: 25px;
}
.lightbox-nav--prev {
  left: 24px;
}
.lightbox-nav--next {
  right: 24px;
}

@media (max-width: 960px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 11px;
    place-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
  }
  .menu-toggle span {
    display: block;
    width: 23px;
    height: 1px;
    background: #fff;
    transition: transform 0.2s;
  }
  .site-header.is-scrolled .menu-toggle span,
  .site-header.menu-open .menu-toggle span {
    background: var(--ink);
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .mobile-nav {
    position: fixed;
    top: 88px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    gap: 0;
    background: var(--paper);
    transition:
      max-height 0.3s,
      padding 0.3s;
  }
  .mobile-nav.is-open {
    max-height: calc(100vh - 88px);
    padding-block: 22px 35px;
  }
  .mobile-nav a:not(.button) {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 27px;
    text-decoration: none;
  }
  .mobile-nav .button {
    margin-top: 24px;
  }
  .split-layout,
  .leadership-grid,
  .process-layout,
  .details-layout,
  .contact-grid {
    gap: 55px;
    grid-template-columns: 1fr;
  }
  .process-intro,
  .details-copy {
    position: static;
  }
  .coach-card img {
    height: 410px;
  }
  .gallery {
    height: 620px;
  }
}

@media (max-width: 700px) {
  .container,
  .header-inner {
    width: min(100% - 32px, 1180px);
  }
  .header-inner {
    height: 76px;
  }
  .brand img {
    width: 50px;
  }
  .mobile-nav {
    top: 76px;
  }
  .hero {
    min-height: 830px;
    align-items: end;
  }
  .hero-media {
    background-position: 58% center;
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      rgb(6 18 30 / 96%) 0%,
      rgb(6 18 30 / 58%) 70%,
      rgb(6 18 30 / 25%) 100%
    );
  }
  .hero-content {
    padding: 130px 0 45px;
  }
  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(45px, 13vw, 62px);
  }
  .hero h1 span {
    margin-top: 8px;
    font-size: 0.65em;
  }
  .hero-copy {
    font-size: 18px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }
  .hero-actions .text-link {
    justify-content: center;
  }
  .hero-facts {
    margin-top: 38px;
    padding-top: 20px;
    gap: 16px;
  }
  .hero-facts strong {
    font-size: 14px;
  }
  .hero-facts span {
    font-size: 8px;
  }
  .section,
  .contact {
    padding: 82px 0;
  }
  .section h2,
  .manifesto h2,
  .contact h2 {
    font-size: clamp(38px, 11vw, 52px);
  }
  .split-layout,
  .leadership-grid {
    gap: 45px;
  }
  .editorial-image img,
  .leadership-visual img {
    height: 470px;
  }
  .editorial-image figcaption,
  .image-note {
    right: 12px;
  }
  .contrast-grid,
  .coach-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }
  .contrast-card {
    min-height: auto;
    padding: 34px 28px;
  }
  .card-number {
    margin-bottom: 40px;
  }
  .statement {
    margin-top: 50px;
    text-align: left;
  }
  .coach-card img {
    height: 420px;
  }
  .coach-copy {
    padding: 30px 25px 34px;
  }
  .outcome-card--featured {
    transform: none;
  }
  .outcome-card h3 {
    min-height: 0;
    margin-top: 38px;
  }
  .manifesto {
    min-height: 680px;
  }
  .manifesto > img {
    object-position: 62% center;
  }
  .manifesto-content {
    padding-bottom: 65px;
  }
  .timeline li {
    gap: 18px;
    grid-template-columns: 45px 1fr;
  }
  .details-grid {
    grid-template-columns: 1fr;
  }
  .details-card--wide,
  .details-button {
    grid-column: auto;
  }
  .included-list {
    grid-template-columns: 1fr;
  }
  .gallery {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }
  .gallery-item {
    aspect-ratio: 1;
  }
  .gallery-item--large {
    grid-row: auto;
    grid-column: span 2;
    aspect-ratio: 1.45;
  }
  .gallery-item--wide {
    grid-column: span 2;
    aspect-ratio: 1.6;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 28px 22px;
  }
  .footer-grid {
    justify-items: start;
    grid-template-columns: 1fr;
  }
  .footer-links {
    flex-wrap: wrap;
  }
  .lightbox {
    padding: 70px 16px;
  }
  .lightbox-nav {
    bottom: 14px;
    top: auto;
  }
  .lightbox-nav--prev {
    left: calc(50% - 55px);
  }
  .lightbox-nav--next {
    right: calc(50% - 55px);
  }
}

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