/*
Theme Name: Pilates Studio SAYS GYM
Theme URI: https://pilates-says.com/
Author: 光洋通信
Description: Pilates Studio SAYS GYM 専用オリジナルテーマ
Version: 1.9.0
Text Domain: pilates-says
*/

/* ==========================================================
   1. Base
========================================================== */
:root {
  --color-accent: #c5757f;
  --color-accent-rgb: 197, 117, 127;
  --color-main: #fae3e5;
  --color-main-rgb: 250, 227, 229;
  --color-text: #414a5d;
  --color-text-rgb: 65, 74, 93;
  --color-line: #06c755;
  --font-sans: "Noto Sans CJK JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --font-serif: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  --font-size-main-h2: clamp(20px, 4vw, 45px);
  --font-size-main-h3: clamp(16px, 2.7vw, 30px);
  --font-size-main-body: clamp(14px, 1.8vw, 20px);
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: #fff;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.page-title,
.section-title,
.entry-title,
.wp-block-heading {
  font-family: var(--font-serif);
}

/* Main content typography (header and footer are intentionally excluded). */
main h2 {
  font-size: var(--font-size-main-h2);
}

main h3 {
  font-size: var(--font-size-main-h3);
}

main p {
  font-size: var(--font-size-main-body);
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  color: #fff;
  background: var(--color-text);
  white-space: normal;
}

/* ==========================================================
   2. Header
========================================================== */
.site-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.3);
}

.site-header__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 9px 16px;
}

.site-header__brand,
.site-header__brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.site-header__brand img,
.site-header__brand .custom-logo {
  display: block;
  width: clamp(182px, 52vw, 224px);
  height: auto;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 54px;
  min-width: 54px;
  min-height: 58px;
  padding: 3px 2px 0;
  color: var(--color-text);
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

.menu-toggle__lines {
  position: relative;
  display: block;
  width: 42px;
  height: 25px;
}

.menu-toggle__line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: top 0.25s ease, transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle__line:nth-child(1) {
  top: 1px;
}

.menu-toggle__line:nth-child(2) {
  top: 12px;
}

.menu-toggle__line:nth-child(3) {
  top: 23px;
}

.menu-toggle__label {
  display: block;
  margin-top: 3px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.menu-toggle:focus-visible,
.hero-cta__button:focus-visible,
.site-drawer a:focus-visible {
  outline: 3px solid rgba(var(--color-text-rgb), 0.75);
  outline-offset: 4px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
  top: 12px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
  top: 12px;
  transform: rotate(-45deg);
}

/* ==========================================================
   3. Drawer menu
========================================================== */
.site-drawer {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: calc(var(--header-height) + 28px) 24px 48px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.92) 0 9%, transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(255, 255, 255, 0.68) 0 8%, transparent 26%),
    rgba(var(--color-main-rgb), 0.98);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.site-drawer.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.site-drawer__nav {
  width: min(100%, 560px);
}

.site-drawer__nav ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(var(--color-accent-rgb), 0.35);
}

.site-drawer__nav li {
  margin: 0;
  border-bottom: 1px solid rgba(var(--color-accent-rgb), 0.35);
}

.site-drawer__nav a {
  position: relative;
  display: block;
  padding: 17px 36px 17px 10px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
}

.site-drawer__nav a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "→";
  color: var(--color-accent);
  transform: translateY(-50%);
}

/* ==========================================================
   4. Main visual
========================================================== */
.home-main {
  display: block;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-main);
}

.hero__picture,
.hero__picture img {
  display: block;
  width: 100%;
}

.hero__picture img {
  height: auto;
}

.hero-cta {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: clamp(22px, 7.2vw, 38px);
  left: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: clamp(10px, 3vw, 16px);
}

.hero-cta__button {
  display: block;
  min-width: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.hero-cta__button:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.hero-cta__button picture,
.hero-cta__button img {
  display: block;
  width: 100%;
}

.hero-cta__button img {
  height: auto;
}

/* ==========================================================
   5. Reasons
========================================================== */
.reasons {
  padding: clamp(64px, 15vw, 104px) 0;
  background: #fff;
}

.reasons__inner {
  width: min(calc(100% - 20px), 960px);
  margin-inline: auto;
}

.reasons__heading {
  margin-bottom: clamp(42px, 11vw, 64px);
  text-align: center;
}

.reasons__heading h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(7px, 2.6vw, 16px);
  margin: 0;
  color: var(--color-text);
  font-size: var(--font-size-main-h2);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.reasons__heading h2::before,
.reasons__heading h2::after {
  width: clamp(18px, 9vw, 78px);
  height: 1px;
  content: "";
  background: var(--color-text);
}

.reasons__heading p {
  margin: 5px 0 0;
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: var(--font-size-main-body);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.reasons__list {
  display: grid;
  gap: clamp(30px, 8vw, 48px);
  max-width: 860px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.reason-item {
  display: grid;
  grid-template-columns: clamp(84px, 24vw, 112px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(12px, 4vw, 24px);
}

.reason-item__visual {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
}

.reason-item__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reason-item__number {
  position: absolute;
  z-index: 2;
  top: -3px;
  left: -7px;
  display: grid;
  width: clamp(36px, 9vw, 48px);
  aspect-ratio: 1;
  color: #fff;
  background: var(--color-accent);
  border-radius: 50%;
  place-items: center;
  font-family: var(--font-serif);
  font-size: clamp(18px, 5vw, 25px);
  font-weight: 500;
  line-height: 1;
}

.reason-item__body {
  min-width: 0;
}

.reason-item__body h3 {
  margin: 0 0 6px;
  color: var(--color-accent);
  font-family: var(--font-sans);
  font-size: var(--font-size-main-h3);
  font-weight: 700;
  line-height: 1.5;
}

.reason-item__body p {
  margin: 0;
  color: var(--color-text);
  font-size: var(--font-size-main-body);
  font-weight: 400;
  line-height: 1.85;
}

.reason-item__pc-break {
  display: none;
}

/* ==========================================================
   6. Worries
========================================================== */
.worries {
  padding: clamp(58px, 14vw, 92px) 0 clamp(52px, 13vw, 80px);
  background: #fff;
}

.worries__inner {
  width: min(calc(100% - 20px), 960px);
  margin-inline: auto;
}

.worries__heading {
  width: min(100%, 780px);
  margin: 0 auto clamp(22px, 5vw, 38px);
  line-height: 0;
}

.worries__heading img {
  display: block;
  width: 100%;
  height: auto;
}

.worries__check-panel {
  width: min(100%, 900px);
  padding: clamp(13px, 3.5vw, 28px) clamp(14px, 4.5vw, 40px);
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--color-accent);
}

.worries__checks {
  padding: 0;
  margin: 0;
  list-style: none;
}

.worries__checks li {
  position: relative;
  display: grid;
  grid-template-columns: clamp(24px, 7vw, 34px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(8px, 2.5vw, 14px);
  min-height: clamp(42px, 11vw, 56px);
  padding: 6px 0;
  color: var(--color-text);
  border-bottom: 1px solid rgba(var(--color-accent-rgb), 0.28);
  font-size: var(--font-size-main-body);
  font-weight: 500;
  line-height: 1.65;
}

.worries__checks li::before {
  display: grid;
  width: clamp(24px, 7vw, 34px);
  aspect-ratio: 1;
  content: "✓";
  color: #fff;
  background: var(--color-accent);
  border-radius: 50%;
  place-items: center;
  font-size: clamp(15px, 4.2vw, 22px);
  font-weight: 700;
  line-height: 1;
}

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

.worries__button {
  display: grid;
  grid-template-columns: clamp(38px, 11vw, 54px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(8px, 2.5vw, 15px);
  width: min(calc(100% - 20px), 700px);
  min-height: clamp(68px, 18vw, 92px);
  padding: 8px clamp(13px, 4vw, 28px);
  margin: clamp(22px, 5.5vw, 38px) auto 0;
  color: var(--color-accent);
  background: #fff;
  border: 2px solid var(--color-accent);
  border-radius: 999px;
  box-shadow: 0 4px 9px rgba(var(--color-text-rgb), 0.16);
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.worries__button:hover,
.worries__button:focus-visible {
  color: #fff;
  background: var(--color-accent);
  box-shadow: 0 6px 14px rgba(var(--color-accent-rgb), 0.3);
  transform: translateY(-2px);
}

.worries__button:focus-visible {
  outline: 3px solid rgba(var(--color-accent-rgb), 0.45);
  outline-offset: 4px;
}

.worries__button-icon {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 400 / 307;
}

.worries__button-icon img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.worries__button-icon-white {
  opacity: 0;
}

.worries__button:hover .worries__button-icon-pink,
.worries__button:focus-visible .worries__button-icon-pink {
  opacity: 0;
}

.worries__button:hover .worries__button-icon-white,
.worries__button:focus-visible .worries__button-icon-white {
  opacity: 1;
}

.worries__button-copy {
  min-width: 0;
}

.worries__button-lead,
.worries__button-label {
  display: block;
}

.worries__button-lead {
  margin-bottom: 1px;
  font-size: clamp(10px, 2.8vw, 15px);
  font-weight: 500;
  line-height: 1.35;
}

.worries__button-label {
  font-size: clamp(15px, 4.1vw, 24px);
  font-weight: 700;
  line-height: 1.35;
}

.worries__button-arrow {
  font-family: var(--font-sans);
  font-size: clamp(24px, 7vw, 38px);
  font-weight: 300;
  line-height: 1;
}

.worries__flow {
  width: clamp(112px, 33vw, 190px);
  height: clamp(58px, 16vw, 92px);
  margin: clamp(26px, 7vw, 46px) auto clamp(28px, 7vw, 48px);
  background: linear-gradient(180deg, rgba(var(--color-accent-rgb), 0.04) 0%, var(--color-accent) 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.worries__message {
  margin: 0;
  color: var(--color-text);
  font-size: var(--font-size-main-h2);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.01em;
  text-align: center;
}

.worries__message-accent {
  color: var(--color-accent);
}

/* ==========================================================
   7. Effects
========================================================== */
.effects {
  padding: clamp(34px, 9vw, 68px) 10px clamp(74px, 18vw, 116px);
  background: var(--color-main);
}

.effects__panel {
  width: min(100%, 1120px);
  margin-inline: auto;
}

.effects__heading {
  margin-bottom: clamp(20px, 6vw, 42px);
  text-align: center;
}

.effects__heading h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 3vw, 22px);
  margin: 0;
  color: var(--color-text);
  font-size: var(--font-size-main-h2);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.effects__heading h2::before,
.effects__heading h2::after {
  width: clamp(22px, 9vw, 100px);
  height: 1px;
  content: "";
  background: var(--color-text);
}

.effects__heading p {
  margin: 2px 0 0;
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: clamp(11px, 3vw, 17px);
  font-weight: 500;
  line-height: 1.4;
}

.effects__list {
  display: grid;
  gap: clamp(28px, 7vw, 46px);
}

.effect-card {
  overflow: hidden;
  background: #fff;
  border-radius: clamp(12px, 3vw, 18px);
  box-shadow: 0 5px 18px rgba(var(--color-text-rgb), 0.06);
}

.effect-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 697 / 410;
  object-fit: cover;
}

.effect-card__body {
  display: grid;
  min-height: clamp(112px, 30vw, 148px);
  padding: clamp(15px, 4vw, 24px) clamp(12px, 4vw, 24px) clamp(17px, 4.5vw, 27px);
  align-content: center;
  text-align: center;
}

.effect-card__body h3 {
  margin: 0 0 clamp(6px, 1.8vw, 10px);
  color: var(--color-accent);
  font-size: var(--font-size-main-h3);
  font-weight: 600;
  line-height: 1.45;
}

.effect-card__body p {
  margin: 0;
  color: var(--color-text);
  font-size: var(--font-size-main-body);
  font-weight: 400;
  line-height: 1.75;
}

.effect-card__pc-break {
  display: none;
}

/* ==========================================================
   8. Lesson gallery
========================================================== */
.lesson-gallery {
  padding: clamp(70px, 17vw, 112px) 0;
  background: #fff;
}

.lesson-gallery__inner {
  width: min(calc(100% - 20px), 1120px);
  margin-inline: auto;
}

.lesson-gallery__heading {
  margin-bottom: clamp(22px, 6vw, 42px);
  text-align: center;
}

.lesson-gallery__heading h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 3vw, 22px);
  margin: 0;
  color: var(--color-text);
  font-size: var(--font-size-main-h2);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.lesson-gallery__heading h2::before,
.lesson-gallery__heading h2::after {
  width: clamp(30px, 12vw, 110px);
  height: 1px;
  content: "";
  background: var(--color-text);
}

.lesson-gallery__heading p {
  margin: 2px 0 0;
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: clamp(11px, 3vw, 17px);
  font-weight: 500;
  line-height: 1.4;
}

.lesson-gallery__images {
  display: grid;
  gap: clamp(12px, 3.5vw, 24px);
}

.lesson-gallery__images img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 2vw, 14px);
}

.lesson-gallery__button {
  display: block;
  width: min(100%, 690px);
  margin: clamp(22px, 6vw, 38px) auto 0;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.lesson-gallery__button img {
  display: block;
  width: 100%;
  height: auto;
}

.lesson-gallery__button:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.lesson-gallery__button:focus-visible {
  outline: 3px solid rgba(var(--color-accent-rgb), 0.5);
  outline-offset: 4px;
}

/* ==========================================================
   9. Basic fixed-page layout (for future pages)
========================================================== */
body:not(.home) .site-header {
  position: relative;
  background: rgba(255, 255, 255, 0.3);
}

.page-main,
.archive-main {
  width: min(100% - 40px, 1100px);
  min-height: 50vh;
  padding: 64px 0 96px;
  margin-inline: auto;
}

.page-title {
  margin: 0 0 40px;
  color: var(--color-text);
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.35;
}

.page-content {
  font-size: 16px;
  line-height: 2;
}

/* ==========================================================
   10. Desktop
========================================================== */
@media (min-width: 900px) {
  :root {
    --header-height: clamp(96px, 7.2vw, 138px);
  }

  .site-header__inner {
    padding: 14px clamp(34px, 3.5vw, 72px);
  }

  .site-header__brand img,
  .site-header__brand .custom-logo {
    width: clamp(285px, 22vw, 420px);
  }

  .menu-toggle {
    width: 78px;
    min-width: 78px;
    min-height: 82px;
  }

  .menu-toggle__lines {
    width: 58px;
    height: 31px;
  }

  .menu-toggle__line:nth-child(1) {
    top: 1px;
  }

  .menu-toggle__line:nth-child(2) {
    top: 15px;
  }

  .menu-toggle__line:nth-child(3) {
    top: 29px;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1),
  .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
    top: 15px;
  }

  .menu-toggle__label {
    margin-top: 6px;
    font-size: 20px;
  }

  .site-drawer__nav {
    width: min(100%, 720px);
  }

  .site-drawer__nav a {
    padding: 21px 46px 21px 14px;
    font-size: 19px;
  }

  .hero-cta {
    right: auto;
    bottom: clamp(24px, 2.6vw, 54px);
    left: 50%;
    width: min(70%, 1400px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(22px, 2.4vw, 50px);
    transform: translateX(-50%);
  }

  .reasons {
    padding: clamp(92px, 7vw, 132px) 0;
  }

  .reasons__inner {
    width: min(calc(100% - 80px), 1080px);
  }

  .reasons__heading {
    margin-bottom: clamp(62px, 5vw, 88px);
  }

  .reasons__heading h2 {
    gap: clamp(16px, 1.5vw, 28px);
  }

  .reasons__heading h2::before,
  .reasons__heading h2::after {
    width: clamp(70px, 7vw, 120px);
  }

  .reasons__heading p {
    margin-top: 7px;
  }

  .reasons__list {
    gap: clamp(46px, 4vw, 68px);
    max-width: 920px;
  }

  .reason-item {
    grid-template-columns: clamp(154px, 12vw, 184px) minmax(0, 1fr);
    gap: clamp(42px, 4vw, 68px);
  }

  .reason-item__number {
    top: -5px;
    left: -15px;
    width: clamp(50px, 4vw, 60px);
    font-size: clamp(25px, 2vw, 30px);
  }

  .reason-item__body h3 {
    margin-bottom: 10px;
  }

  .reason-item__body p {
    line-height: 1.9;
  }

  .reason-item__pc-break {
    display: inline;
  }

  .worries {
    padding: clamp(88px, 7vw, 126px) 0 clamp(72px, 5.5vw, 96px);
  }

  .worries__inner {
    width: min(calc(100% - 80px), 1120px);
  }

  .worries__heading {
    width: min(100%, 820px);
    margin-bottom: clamp(32px, 3vw, 48px);
  }

  .worries__check-panel {
    padding: 30px clamp(44px, 4vw, 64px);
  }

  .worries__checks li {
    min-height: 62px;
  }

  .worries__button {
    margin-top: 42px;
  }

  .worries__flow {
    margin-top: 48px;
    margin-bottom: 54px;
  }

  .effects {
    padding: clamp(54px, 4.5vw, 78px) 40px clamp(104px, 8vw, 148px);
  }

  .effects__heading {
    margin-bottom: clamp(38px, 3vw, 54px);
  }

  .effects__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 2vw, 32px);
  }

  .effect-card {
    display: grid;
    grid-template-rows: auto 1fr;
  }

  .effect-card__body {
    min-height: 176px;
    padding: 24px 18px 28px;
  }

  .effect-card__pc-break {
    display: inline;
  }

  .lesson-gallery {
    padding: clamp(96px, 7vw, 136px) 0;
  }

  .lesson-gallery__inner {
    width: min(calc(100% - 80px), 1120px);
  }

  .lesson-gallery__heading {
    margin-bottom: clamp(38px, 3vw, 54px);
  }

  .lesson-gallery__images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 2.5vw, 34px);
  }

  .lesson-gallery__button {
    margin-top: clamp(34px, 3vw, 48px);
  }
}

/* WordPress admin bar adjustment */
body.admin-bar .site-header {
  top: 32px;
}

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

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  body.admin-bar .site-drawer {
    top: 46px;
  }
}

@media (max-width: 359px) {
  .site-header__inner {
    padding-inline: 11px;
  }

  .site-header__brand img,
  .site-header__brand .custom-logo {
    width: 172px;
  }

  .hero-cta {
    right: 10px;
    left: 10px;
    gap: 7px;
  }

  .worries__button {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 7px;
    width: 100%;
    padding-inline: 10px;
  }

  .worries__button-lead {
    font-size: 9px;
  }

  .worries__button-label {
    font-size: 14px;
  }

  .worries__message {
    font-size: 18px;
  }

}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
