/* ==========================================================================
   TOBIRA outdoor guide  style.css
   構成: reset → 変数 → base → components → sections → utilities
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  /* Conceptのはみ出し写真（calc(50% - 50vw)）がスクロールバー幅分あふれるのを防ぐ */
  overflow-x: clip;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

button {
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   2. 変数
   -------------------------------------------------------------------------- */
:root {
  --color-bg: #F6F8F7;
  --color-dark: #17323B;
  --color-dark-2: #112730;
  --color-text: #1E2A30;
  --color-text-weak: #75828A;
  --color-text-invert: #F2F5F4;
  --color-accent: #E8632B;
  --color-accent-hover: #C94F1D;
  --color-sub: #3E7C6B;
  --color-line: #DDE3E1;
  --color-white: #FFFFFF;

  --font-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-display: "Anton", Impact, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.7s;
  --dur-hover: 0.3s;

  --shadow-card: 0 8px 32px rgba(30, 42, 48, 0.10);
  --shadow-card-hover: 0 16px 48px rgba(30, 42, 48, 0.16);

  --header-h: 60px;
}

@media (min-width: 1024px) {
  :root {
    --header-h: 72px;
  }
}

/* --------------------------------------------------------------------------
   3. Base
   -------------------------------------------------------------------------- */
body {
  font-family: var(--font-ja);
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
  background-color: var(--color-bg);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

body.is-loaded {
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  body {
    font-size: 15px;
  }
}

section {
  scroll-margin-top: 88px;
}

/* --------------------------------------------------------------------------
   4. Components
   -------------------------------------------------------------------------- */

/* container */
.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 24px;
}

.container--narrow { max-width: calc(560px + 48px); }
.container--medium { max-width: calc(720px + 48px); }
.container--wide   { max-width: calc(1000px + 48px); }
.container--full   { max-width: calc(1080px + 48px); }

/* section-title */
.section-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 48px;
}

.section-title__en {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-title__ja {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-text-weak);
}

.section-title--invert .section-title__en {
  color: var(--color-text-invert);
}

.section-title--invert .section-title__ja {
  color: rgba(242, 245, 244, 0.6);
}

@media (min-width: 768px) {
  .section-title__en {
    font-size: 56px;
  }
  .section-title__ja {
    font-size: 15px;
  }
}

/* btn */
.btn {
  display: inline-block;
  padding: 16px 40px;
  background-color: var(--color-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  border-radius: 999px;
  transition: background-color var(--dur-hover) var(--ease-out), transform 0.15s var(--ease-out);
}

.btn:hover {
  background-color: var(--color-accent-hover);
}

.btn:active {
  transform: scale(0.97);
}

.btn--wide {
  display: block;
  width: 100%;
}

/* badge */
.badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 4px;
  line-height: 1.7;
}

.badge--fill {
  background-color: var(--color-sub);
  color: #fff;
}

.badge--outline {
  border: 1px solid var(--color-sub);
  color: var(--color-sub);
}

/* fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--dur) var(--ease-out),
    transform var(--dur) var(--ease-out);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* section--dark */
.section--dark {
  background-color: var(--color-dark);
  color: var(--color-text-invert);
}

/* --------------------------------------------------------------------------
   5. Sections
   -------------------------------------------------------------------------- */

/* Header
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background-color: rgba(246, 248, 247, 0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-line);
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding-inline: 20px;
}

.header__logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.header__logo span {
  font-family: var(--font-ja);
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-weak);
  margin-left: 8px;
  letter-spacing: 0.06em;
}

.global-nav {
  display: none;
}

.reserve-btn {
  margin-left: auto;
  padding: 10px 18px;
  background-color: var(--color-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 999px;
  transition: background-color var(--dur-hover) var(--ease-out);
}

.reserve-btn:hover {
  background-color: var(--color-accent-hover);
}

.reserve-btn__long {
  display: none;
}

@media (min-width: 1024px) {
  .header__inner {
    padding-inline: 32px;
  }

  .global-nav {
    display: block;
    margin-left: auto;
  }

  .global-nav__list {
    display: flex;
    gap: 28px;
  }

  .global-nav__list a {
    font-family: var(--font-display);
    font-size: 15px;
    letter-spacing: 0.05em;
    transition: color var(--dur-hover) var(--ease-out);
  }

  .global-nav__list a:hover {
    color: var(--color-accent);
  }

  .reserve-btn {
    margin-left: 32px;
    padding: 10px 26px;
    font-size: 14px;
  }

  .reserve-btn__long {
    display: inline;
  }
}

/* hamburger */
.hamburger {
  position: relative;
  width: 44px;
  height: 44px;
  margin-left: 8px;
  z-index: 210;
}

.hamburger__line,
.hamburger__line::before,
.hamburger__line::after {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.4s var(--ease-out), top 0.4s var(--ease-out), background-color 0.4s var(--ease-out);
}

.hamburger__line {
  top: 50%;
  transform: translate(-50%, -50%);
}

.hamburger__line::before,
.hamburger__line::after {
  content: "";
  left: 0;
  width: 100%;
}

.hamburger__line::before { top: -8px; }
.hamburger__line::after  { top: 8px; }

.hamburger.is-open {
  color: var(--color-text-invert);
}

.hamburger.is-open .hamburger__line {
  background-color: transparent;
}

.hamburger.is-open .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
  background-color: currentColor;
}

.hamburger.is-open .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: currentColor;
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

/* mobile-menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--color-dark);
  color: var(--color-text-invert);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out);
  z-index: 200;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__nav {
  width: min(100%, 320px);
  padding: 24px;
  max-height: 100vh;
  overflow-y: auto;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.mobile-menu__list a {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.mobile-menu__reserve {
  display: block;
  width: 100%;
  padding: 16px;
  background-color: var(--color-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  border-radius: 999px;
  transition: background-color var(--dur-hover) var(--ease-out);
}

.mobile-menu__reserve:hover {
  background-color: var(--color-accent-hover);
}

/* Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

body.is-zoomed .hero__bg img {
  transform: scale(1);
  transition: transform 6s var(--ease-out);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(23, 50, 59, 0.3);
}

.hero__content {
  position: absolute;
  left: 6%;
  bottom: 18%;
  color: #fff;
}

.hero__title {
  display: flex;
  flex-direction: column;
}

.hero__title-line {
  display: block;
  overflow: hidden;
}

.hero__title-inner {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 128px);
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transform: translateY(100%);
}

body.is-hero-ready .hero__title-line:nth-child(1) .hero__title-inner {
  transform: translateY(0);
  transition: transform 0.8s var(--ease-out) 0.3s;
}

body.is-hero-ready .hero__title-line:nth-child(2) .hero__title-inner {
  transform: translateY(0);
  transition: transform 0.8s var(--ease-out) 0.42s;
}

body.is-hero-ready .hero__title-line:nth-child(3) .hero__title-inner {
  transform: translateY(0);
  transition: transform 0.8s var(--ease-out) 0.54s;
}

.hero__copy {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  opacity: 0;
}

body.is-hero-ready .hero__copy {
  opacity: 1;
  transition: opacity 0.8s var(--ease-out) 1.1s;
}

@media (min-width: 768px) {
  .hero__copy {
    font-size: 16px;
  }
}

/* scroll-indicator */
.scroll-indicator {
  position: absolute;
  bottom: 0;
  right: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.scroll-indicator__label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.scroll-indicator__line {
  position: relative;
  width: 2px;
  height: 64px;
  overflow: hidden;
}

.scroll-indicator__line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  animation: scrollLine 2s var(--ease-out) infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Marquee
   -------------------------------------------------------------------------- */
.marquee {
  display: flex;
  align-items: center;
  height: 64px;
  background-color: var(--color-dark);
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--color-text-invert);
  letter-spacing: 0.04em;
  padding-right: 0.5em;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

@media (min-width: 768px) {
  .marquee {
    height: 96px;
  }
  .marquee__track {
    font-size: 48px;
  }
}

/* Concept
   -------------------------------------------------------------------------- */
.concept__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.concept__heading {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 20px;
}

.concept__body p + p {
  margin-top: 16px;
}

.concept__img img {
  width: 100%;
  aspect-ratio: 9 / 7;
  object-fit: cover;
  border-radius: 16px;
}

@media (min-width: 768px) {
  .concept__inner {
    grid-template-columns: 55fr 45fr;
    gap: 48px;
  }

  .concept__heading {
    font-size: 22px;
  }

  /* 写真の右端を画面端まで伸ばす。%基準がグリッド列幅になるため
     コンテナ（max-width 1128px・中央寄せ）基準で計算する */
  .concept__img--bleed {
    margin-right: -24px;
  }

  .concept__img--bleed img {
    border-radius: 16px 0 0 16px;
  }
}

@media (min-width: 1128px) {
  .concept__img--bleed {
    margin-right: calc(564px - 50vw);
  }
}

/* Tours
   -------------------------------------------------------------------------- */
.tours__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.tour-card {
  display: grid;
  grid-template-columns: 1fr;
  background-color: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--dur-hover) var(--ease-out), box-shadow var(--dur-hover) var(--ease-out);
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.tour-card__photo {
  overflow: hidden;
}

.tour-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.tour-card:hover .tour-card__photo img {
  transform: scale(1.05);
}

.tour-card__body {
  padding: 28px 24px;
}

.tour-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tour-card__name {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 12px;
}

.tour-card__desc {
  margin-bottom: 18px;
}

.tour-card__spec {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 18px;
  font-size: 13px;
}

.tour-card__spec li {
  padding: 0 14px;
  border-left: 1px solid var(--color-line);
  line-height: 1.6;
}

.tour-card__spec li:first-child {
  padding-left: 0;
  border-left: none;
}

.tour-card__price {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1.4;
  margin-bottom: 14px;
}

.tour-card__price span {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-weak);
  margin-left: 6px;
}

.tour-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 14px;
}

.tour-card__link span {
  transition: transform var(--dur-hover) var(--ease-out);
}

.tour-card__link:hover span {
  transform: translateX(6px);
}

@media (min-width: 768px) {
  .tour-card {
    grid-template-columns: 45fr 55fr;
  }

  .tour-card--reverse .tour-card__photo {
    order: 2;
  }

  .tour-card--reverse .tour-card__body {
    order: 1;
  }

  .tour-card__body {
    padding: 40px 44px;
    align-self: center;
  }

  .tour-card__name {
    font-size: 22px;
  }

  .tour-card__price {
    font-size: 28px;
  }
}

/* Flow
   -------------------------------------------------------------------------- */
.flow__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.flow__list::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 19px;
  width: 2px;
  background-color: var(--color-sub);
}

.flow-step {
  position: relative;
  display: flex;
  gap: 20px;
}

.flow-step__num {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-sub);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.04em;
  z-index: 1;
}

.flow-step__name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.6;
}

.flow-step__body p {
  color: rgba(242, 245, 244, 0.85);
  font-size: 14px;
}

/* Guide
   -------------------------------------------------------------------------- */
.guide-profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.guide-profile__photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
}

.guide-profile__name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.guide-profile__name span {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-weak);
  margin-left: 10px;
  letter-spacing: 0.08em;
}

.guide-profile__license {
  font-size: 13px;
  color: var(--color-text-weak);
  margin-bottom: 16px;
}

.guide-profile__body p + p {
  margin-top: 14px;
}

.guide-profile__comment {
  margin-top: 24px;
  font-size: 17px;
  font-weight: 700;
}

.guide-profile__comment span {
  color: var(--color-accent);
  margin-right: 8px;
  font-size: 22px;
}

@media (min-width: 768px) {
  .guide-profile {
    grid-template-columns: 40fr 60fr;
    gap: 56px;
  }
}

/* Voice
   -------------------------------------------------------------------------- */
.voice__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.voice-card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.voice-card__text {
  margin-bottom: 20px;
}

.voice-card__meta {
  padding-top: 16px;
  border-top: 1px solid var(--color-line);
  font-size: 13px;
  color: var(--color-text-weak);
}

@media (min-width: 768px) {
  .voice__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Gallery
   -------------------------------------------------------------------------- */
.gallery {
  padding-inline: 8px;
}

.gallery__title {
  max-width: calc(1080px + 48px);
  margin-inline: auto;
  padding-inline: 16px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.gallery__grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
}

.gallery__grid img:hover {
  transform: scale(1.04);
  opacity: 0.85;
}

@media (min-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* FAQ
   -------------------------------------------------------------------------- */
.faq-item {
  border-bottom: 1px solid var(--color-line);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-line);
}

.faq-item__question {
  display: flex;
  align-items: baseline;
  gap: 16px;
  width: 100%;
  padding: 22px 0;
  text-align: left;
}

.faq-item__num {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--color-sub);
  flex-shrink: 0;
}

.faq-item__q-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.faq-item__icon {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--color-text-weak);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-item__answer p {
  padding: 0 0 22px 44px;
  font-size: 14px;
  color: #46535A;
}

/* Reserve
   -------------------------------------------------------------------------- */
.reserve__lead {
  margin-bottom: 40px;
  color: rgba(242, 245, 244, 0.85);
  font-size: 14px;
}

.reserve-form__field {
  margin-bottom: 22px;
}

.reserve-form__field label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.reserve-form__req {
  display: inline-block;
  margin-left: 8px;
  font-size: 11px;
  font-weight: 400;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 0 6px;
  border-radius: 4px;
  line-height: 1.8;
}

.reserve-form__field input,
.reserve-form__field select,
.reserve-form__field textarea {
  display: block;
  width: 100%;
  padding: 12px 14px;
  background-color: rgba(242, 245, 244, 0.08);
  border: 1px solid rgba(242, 245, 244, 0.3);
  border-radius: 8px;
  color: var(--color-text-invert);
  line-height: 1.6;
  transition: border-color var(--dur-hover) var(--ease-out);
}

.reserve-form__field select option {
  color: var(--color-text);
  background-color: var(--color-bg);
}

.reserve-form__field input:focus,
.reserve-form__field select:focus,
.reserve-form__field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.reserve-form__field input[type="date"] {
  color-scheme: dark;
}

.reserve__done {
  margin-top: 32px;
  text-align: center;
  line-height: 2.2;
}

/* Footer
   -------------------------------------------------------------------------- */
.footer {
  padding: 56px 24px;
  background-color: var(--color-dark-2);
  color: var(--color-text-invert);
  text-align: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.footer__info {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(242, 245, 244, 0.75);
}

.footer__sns {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.06em;
  transition: opacity var(--dur-hover) var(--ease-out);
}

.footer__sns:hover {
  opacity: 0.6;
}

.footer__copyright {
  margin-top: 28px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(242, 245, 244, 0.5);
}

/* to-top */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: #fff;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-hover) var(--ease-out), visibility var(--dur-hover) var(--ease-out), background-color var(--dur-hover) var(--ease-out);
  z-index: 90;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.to-top:hover {
  background-color: var(--color-accent-hover);
}

/* --------------------------------------------------------------------------
   6. Utilities
   -------------------------------------------------------------------------- */
.py-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

@media (min-width: 1024px) {
  .py-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }

  body,
  .fade-in,
  .hero__copy {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__title-inner,
  .hero__bg img {
    transform: none !important;
  }

  .marquee__track {
    animation: none !important;
  }
}
