:root {
  --color-ink: #2c2a26;
  --color-muted: #6f6a61;
  --color-paper: #ffffff;
  --color-cream: #f7f2e8;
  --color-cream-deep: #ece2cc;
  --color-accent: #f7a264;
  --color-accent-strong: #a84f17;
  --color-blue: #3d91ae;
  --color-blue-strong: #236a80;
  --color-green: #6fa642;
  --color-surface-soft: #faf6ef;
  --color-surface-muted: #f7f7f7;
  --color-border: #dcc7a3;
  --color-border-strong: #aaa;
  --content-width: 1200px;
  --reading-width: 760px;
  --wide-width: 1060px;
  --container-inline-offset: clamp(2rem, 4vw, 3rem);
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.25rem;
  --space-lg: 1.5rem;
  --space-xl: 1.75rem;
  --space-2xl: 2rem;
  --space-3xl: 2.5rem;
  --space-4xl: 3rem;
  --space-5xl: 3.5rem;
  --space-6xl: 4rem;
  --space-8xl: 5rem;
  --section-space-sm: clamp(2.5rem, 4.667vw, 3.5rem);
  --section-space-md: clamp(3rem, 6vw, 4.5rem);
  --section-space-lg: clamp(3.875rem, 7.5vw, 5.625rem);
  --border-subtle: 1px solid var(--color-border);
  --border-strong: 1px solid var(--color-border-strong);
  --font-xs: clamp(0.8125rem, 0.78rem + 0.13vw, 0.875rem);
  --font-sm: clamp(0.875rem, 0.82rem + 0.22vw, 1rem);
  --font-base: clamp(1rem, 0.96rem + 0.15vw, 1.125rem);
  --font-lg: clamp(1.125rem, 1.04rem + 0.35vw, 1.375rem);
  --font-xl: clamp(1.375rem, 1.18rem + 0.75vw, 1.875rem);
  --font-2xl: clamp(1.75rem, 1.45rem + 1.2vw, 2.25rem);
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 100%; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-sans);
  font-size: var(--font-base);
  line-height: 1.75;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
a:hover { text-decoration-thickness: 2px; }

.site-frame { width: 100%; min-width: 0; background: var(--color-paper); }
.content-container { width: min(calc(100% - var(--container-inline-offset)), var(--reading-width)); margin-inline: auto; }
.wide-container { width: min(calc(100% - var(--container-inline-offset)), var(--wide-width)); margin-inline: auto; }
.container { width: min(var(--reading-width), calc(100% - var(--container-inline-offset))); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 10;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.5rem 0.75rem;
  color: var(--color-paper);
  background: var(--color-ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: relative;
  z-index: 2;
  padding-top: var(--space-4xl);
  background: var(--color-paper);
}

.site-header::before {
  position: absolute;
  inset: 0 0 auto;
  height: 48px;
  content: "";
  background: url("../images/common/wood-texture-1920.webp") center / cover;
  box-shadow: inset 0 -7px #eadfc9;
}

.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 145px; gap: var(--space-lg); }
.site-logo { display: block; width: 150px; flex: 0 0 auto; }
.primary-nav__list { display: flex; align-items: center; margin: 0; padding: 0; font-size: var(--font-base); list-style: none; }
.primary-nav li + li { border-left: 1px solid #e5a071; }
.primary-nav a { display: block; padding: 0.25em 1em; text-decoration: none; white-space: nowrap; }
.primary-nav a[aria-current="page"] { font-weight: 600; }
.menu-toggle { display: none; border: 1px solid var(--color-ink); padding: 0.5rem 0.75rem; color: var(--color-ink); background: var(--color-paper); font: inherit; }

.page-intro { padding-block: var(--section-space-lg); }
.section-title { margin: 0; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.25; }
.section-title::after { display: block; width: 3rem; height: 0.25rem; margin-top: 1rem; content: ""; background: var(--color-accent); }

.ornament-heading {
  position: relative;
  min-height: 48px;
  margin: 0;
  border-block: 3px solid #f2ebdc;
  padding: 0.375rem 5.75rem;
  font-size: clamp(1.25rem, 1.15rem + 0.4vw, 1.5625rem);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.ornament-heading::before,
.ornament-heading::after {
  position: absolute;
  top: 50%;
  width: 76px;
  height: 24px;
  content: "";
  background:
    linear-gradient(#f5efe3 0 0) 0 50% / 24px 24px no-repeat,
    linear-gradient(#e3f1e8 0 0) 26px 50% / 24px 24px no-repeat,
    linear-gradient(#eadabd 0 0) 52px 50% / 24px 24px no-repeat;
  transform: translateY(-50%);
}

.ornament-heading::before { left: 0; }
.ornament-heading::after { right: 0; transform: translateY(-50%) rotate(180deg); }

.brands-hero { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: 100%; height: clamp(240px, 27.5vw, 330px); gap: 3px; }
.brands-hero__image { width: 100%; height: 100%; object-fit: cover; }
.brands-hero__image:first-child { object-position: center; }

.brands-wish__layout,
.mission__layout,
.home-about__layout { align-items: stretch; }

.brands-wish__illustration,
.philosophy-mission__illustration,
.home-about__image { height: 100%; object-fit: cover; }

.brands-wish { padding-block: var(--section-space-sm); }
.brands-wish__layout { display: grid; grid-template-columns: 1.45fr 1fr; gap: var(--space-3xl); margin-top: var(--space-xl); }
.brands-wish__copy { font-size: var(--font-sm); line-height: 1.85; }
.brands-wish__copy p { margin: 0; }
.brands-wish__copy p + p { margin-top: var(--space-md); }
.brands-wish__illustration { width: 100%; border-radius: 0; box-shadow: none; }

.brand-catalog { padding-block: var(--section-space-sm); }
.frame-brands { background: var(--color-surface-soft); }
.lens-brands { min-height: 491px; background: var(--color-paper); }
.brand-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-xs); margin-top: var(--space-2xl); }
.lens-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-xs); width: 580px; max-width: 100%; margin: var(--space-2xl) auto 0; }
.brand-card { display: grid; min-height: 100px; place-items: center; border: var(--border-strong); padding: 0.875rem; background: var(--color-paper); box-shadow: none; text-decoration: none; transition: border-color 150ms ease; }
.brand-card img { width: min(100%, 150px); max-height: 58px; object-fit: contain; }
.brand-card:hover { border-color: var(--color-accent); transform: none; box-shadow: none; }
.brand-catalog__note { margin: 0.375rem 0 0; color: var(--color-muted); font-size: var(--font-xs); }
.brand-catalog__example { margin: var(--space-3xl) 0 0; color: var(--color-muted); font-size: var(--font-xs); text-align: center; }

.section-eyebrow { margin: 0 0 0.65rem; color: var(--color-blue-strong); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }

.philosophy-hero { width: 100%; overflow: hidden; background: var(--color-paper); }
.philosophy-hero__images { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); height: clamp(240px, 27.917vw, 335px); gap: 3px; }
.philosophy-hero__images img { width: 100%; height: 100%; object-fit: cover; }
.philosophy-hero__images img:first-child { object-position: center; }

.mission { padding-block: var(--section-space-sm); }
.mission__layout { display: grid; grid-template-columns: 1.55fr 1fr; gap: var(--space-3xl); margin-top: var(--space-xl); }
.mission__copy { font-size: var(--font-sm); line-height: 1.85; }
.mission__copy p { margin: 0; }
.mission__copy p + p { margin-top: var(--space-lg); }
.philosophy-mission__illustration { width: 100%; border-radius: 0; box-shadow: none; object-position: center 45%; }

.exam-flow { padding-block: var(--section-space-md); background: var(--color-surface-soft); }
.exam-flow__steps { --exam-marker-size: 82px; --exam-marker-overlap: 14px; display: grid; width: min(calc(100% - var(--container-inline-offset)), 600px); margin: var(--space-2xl) auto 0; padding: 0; list-style: none; }
.exam-step { position: relative; display: grid; grid-template-columns: calc(var(--exam-marker-size) - var(--exam-marker-overlap)) minmax(0, 1fr); align-items: center; gap: 0; min-height: 123px; padding-bottom: var(--space-3xl); }
.exam-step:not(:last-child)::after { position: absolute; z-index: 0; top: 83px; left: 50%; width: 0; height: 0; border-top: 20px solid #e4d8c1; border-right: 28px solid transparent; border-left: 28px solid transparent; content: ""; transform: translateX(-50%); }
.exam-step--focus { --step-color: var(--color-accent-strong); }
.step-number { position: relative; z-index: 2; display: grid; width: var(--exam-marker-size); height: var(--exam-marker-size); place-items: center; border: 0; border-radius: 50%; margin: 0; color: var(--color-blue-strong); background: #eadabd; font-size: var(--font-xs); font-weight: 700; letter-spacing: 0.04em; text-align: center; }
.exam-step--focus .step-number { color: #7f3107; background: #ffa466; }
.exam-step__content { display: grid; grid-template-columns: 180px 1fr; align-items: center; min-height: 54px; border: var(--border-subtle); background: var(--color-paper); }
.exam-step--focus .exam-step__content { border-color: var(--color-accent-strong); }
.exam-step h3 { margin: 0; border-right: var(--border-subtle); padding: 0.625rem var(--space-sm); color: #333; font-size: var(--font-base); font-weight: 400; line-height: 1.4; text-align: center; }
.exam-step--focus h3 { color: var(--color-accent-strong); }
.exam-step--focus h3::after { content: none; }
.exam-step p { margin: 0; padding: var(--space-2xs) var(--space-sm); color: var(--color-muted); font-size: var(--font-xs); line-height: 1.5; }
.exam-flow__note { margin: 0; color: var(--color-muted); font-size: var(--font-xs); text-align: center; }
.exam-flow__note span { color: var(--color-accent-strong); font-weight: 700; }

.binocular-exam { margin-top: var(--space-5xl); }
.binocular-exam__box { display: grid; grid-template-columns: 140px minmax(0, 1fr); gap: var(--space-lg); border: 4px dotted #ead7ad; border-radius: 18px; padding: var(--space-lg) var(--space-xl); background: var(--color-paper); box-shadow: none; }
.binocular-exam h2 { align-self: center; margin: 0; border: 2px solid var(--color-accent); border-radius: 16px; padding: var(--space-xs); color: var(--color-accent-strong); font-size: var(--font-lg); font-weight: 400; line-height: 1.35; text-align: center; }
.binocular-exam__copy p { margin: 0; }
.binocular-exam__copy { align-self: center; font-size: var(--font-xs); line-height: 1.65; }
.binocular-exam__copy p + p { margin-top: var(--space-xs); }

.community { min-height: 598px; padding-block: var(--section-space-lg); }
.community__inner { text-align: center; }
.community__copy { margin-top: var(--space-2xl); font-size: var(--font-sm); line-height: 2; }
.community__copy p { margin: 0; }
.community__copy p + p { margin-top: var(--space-lg); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.home-hero { display: grid; grid-template-columns: 2fr repeat(3, 1fr); width: 100%; height: clamp(250px, 31.667vw, 380px); gap: 2px; background: var(--color-paper); }
.home-hero__image { width: 100%; height: 100%; object-fit: cover; }
.home-hero__image--main { object-position: center; }

.home-about { padding-block: var(--section-space-sm); }
.home-about__layout { display: grid; grid-template-columns: 1.55fr 1fr; gap: var(--space-3xl); margin-top: var(--space-xl); }
.home-about__copy { font-size: var(--font-sm); line-height: 1.8; }
.home-about__copy p { margin: 0; }
.home-about__copy p:first-child { display: none; }
.home-about__copy p + p { margin-top: 1.125rem; }
.home-about__image { width: 100%; border-radius: 0; box-shadow: none; }

.home-youtube { padding-block: var(--space-3xl); background: var(--color-surface-soft); }
.home-news { padding-block: var(--section-space-sm); background: var(--color-paper); }
.social-feed__description { margin: var(--space-md) 0 var(--space-lg); font-size: var(--font-sm); text-align: center; }
.social-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-md); }
.social-card { min-width: 0; overflow: visible; background: transparent; box-shadow: none; }
.social-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.social-card--instagram img { aspect-ratio: 1; }
.social-card h3 { margin: var(--space-2xs) 0 0; color: var(--color-ink); font-size: var(--font-sm); font-weight: 400; line-height: 1.45; }
.social-card p { margin: 0.125rem 0 0; font-size: var(--font-xs); line-height: 1.4; }
.sample-note { margin: 0.625rem 0 0; color: var(--color-muted); font-size: var(--font-xs); text-align: center; }

.home-calendars { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; max-width: var(--content-width); gap: var(--space-3xl); margin-inline: auto; padding-block: var(--section-space-md); padding-inline: var(--space-lg); }
.home-calendars > .sample-note { position: absolute; top: 225px; left: 50%; z-index: 1; padding: var(--space-2xs) 0.9375rem; background: rgb(225 225 225 / 88%); transform: translateX(-50%); white-space: nowrap; }
.business-calendar { min-width: 0; border: 0; padding: 0; background: var(--color-paper); box-shadow: none; }
.business-calendar .ornament-heading { padding-inline: 4.0625rem; font-size: var(--font-lg); }
.business-calendar__month { margin: 1.625rem 0 var(--space-xs); text-align: center; font-size: var(--font-base); font-weight: 600; }
.business-calendar table { width: 100%; border-collapse: separate; border-spacing: 4px; table-layout: fixed; text-align: center; }
.business-calendar th { padding: 0.375rem 0.125rem; font-size: var(--font-sm); }
.business-calendar td { position: relative; height: 48px; padding: 0.1875rem; background: var(--color-surface-muted); font-size: var(--font-sm); vertical-align: middle; }
.business-calendar td:empty { background: transparent; }
.business-calendar td.is-closed { color: var(--color-paper); background: var(--color-blue-strong); }
.business-calendar td.is-closed span { display: block; font-size: 0.75rem; font-weight: 700; line-height: 1; }

.home-social { display: flex; justify-content: flex-end; width: 100%; max-width: var(--content-width); gap: 0.625rem; margin-inline: auto; padding: 0 3.25rem var(--space-lg); }
.home-social__link { display: block; width: 22px; height: 22px; }
.home-social__link img { width: 100%; height: 100%; object-fit: contain; }

.access-main { padding-top: 0.125rem; }
.access-heading { margin-bottom: var(--space-3xl); }
.store-section { width: min(calc(100% - var(--container-inline-offset)), 620px); margin-inline: auto; }
.store-heading { margin-bottom: var(--space-lg); }
.store-heading h2 { margin: 0; border-bottom: 2px solid var(--color-accent); padding: 0 var(--space-2xs) 0.1875rem; font-size: var(--font-lg); font-weight: 400; line-height: 1.45; }
.store-heading h2::first-letter { color: var(--color-accent); }
.store-details { display: grid; grid-template-columns: 94px minmax(0, 1fr); gap: 0.5625rem 0; margin: 0; font-size: var(--font-base); line-height: 1.4; }
.store-details dt,
.store-details dd { margin: 0; padding: 0.3125rem 0.625rem; }
.store-details dt { align-self: start; background: #f5edde; text-align: center; }
.store-details dd { min-width: 0; overflow-wrap: anywhere; }
.store-details a { text-decoration: none; }
.store-map { position: relative; width: min(calc(100% - var(--container-inline-offset)), var(--reading-width)); margin: var(--space-3xl) auto 0; text-align: center; }
.store-map__title { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.map-frame { width: 100%; overflow: hidden; border: var(--border-strong); aspect-ratio: 760 / 245; background: var(--color-surface-muted); }
.map-frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.map-link { position: absolute; right: 10px; bottom: 8px; z-index: 1; display: inline-block; padding: 0.125rem 0.4375rem; color: var(--color-muted); background: rgb(255 255 255 / 88%); font-size: var(--font-sm); text-decoration: none; }
.store-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); width: min(calc(100% - var(--container-inline-offset)), var(--reading-width)); gap: 3px; margin: 1.125rem auto var(--space-6xl); }
.store-gallery__image { width: 100%; height: 140px; object-fit: cover; }
.head-store-area { padding-block: var(--section-space-md); background: var(--color-surface-soft); }
.head-store-map { margin-top: var(--space-2xl); }

.contact-main { padding-top: 0.9375rem; }
.contact-heading { margin-bottom: var(--space-2xl); }
.line-contact { width: min(calc(100% - var(--container-inline-offset)), 730px); margin: 0 auto var(--section-space-md); text-align: center; }
.line-contact__lead { margin: 0; font-size: var(--font-lg); line-height: 1.5; }
.line-contact__lead::first-letter,
.phone-contact__lead::first-letter,
.phone-contact__store-name::first-letter { color: var(--color-accent); }
.line-contact__instruction { margin: 0.875rem 0 var(--space-lg); font-size: var(--font-sm); }
.line-contact__panel { display: grid; grid-template-columns: minmax(0, 1fr) 200px; gap: var(--space-sm); padding: var(--space-xs); color: var(--color-ink); background: #6bb243; text-decoration: none; }
.line-contact__panel:focus-visible { outline: 4px solid #1c5263; outline-offset: 4px; }
.line-contact__message { min-width: 0; }
.line-contact__brand { margin: -0.4375rem 0 0.3125rem; color: var(--color-paper); font-size: var(--font-2xl); font-weight: 700; line-height: 1.35; }
.line-contact__banner { margin: 0; padding: 0.125rem var(--space-xs); color: #63a940; background: #ffff9d; font-size: var(--font-xl); font-weight: 400; line-height: 1.45; }
.line-contact__description { min-height: 96px; margin: 0; padding: var(--space-xs) 0.625rem var(--space-2xs); color: #777; background: var(--color-paper); font-size: var(--font-base); line-height: 1.55; }
.line-contact__qr { display: grid; align-self: stretch; place-items: center; padding: 0.8125rem; background: var(--color-paper); }
.line-contact__qr img { width: 100%; }
.phone-contact { padding-block: var(--space-4xl); padding-inline: var(--space-sm); background: var(--color-surface-soft); text-align: center; }
.phone-contact__lead { margin: 0; font-size: var(--font-lg); line-height: 1.5; }
.phone-contact__notice { margin: var(--space-xs) 0 0; font-size: var(--font-sm); }
.phone-contact__stores { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: min(100%, var(--reading-width)); gap: var(--space-8xl); margin: 0.8125rem auto 0; }
.phone-contact__store-name { margin: 0; border-bottom: 2px solid var(--color-accent); padding-bottom: 0.1875rem; font-size: var(--font-xl); line-height: 1.45; }
.phone-contact__store a { display: inline-block; margin-top: var(--space-3xs); font-size: var(--font-2xl); line-height: 1.3; text-decoration: none; }

.site-footer { padding-top: 0.875rem; color: #888; background: var(--color-cream) url("../images/common/footer-texture-1600.webp") center / cover; }
.footer-nav { background: rgb(255 255 255 / 55%); }
.footer-nav ul { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-lg); margin: 0; padding: var(--space-2xs) 0; list-style: none; }
.footer-nav a { display: block; text-decoration: none; }
.footer-nav a[aria-current="page"] { font-weight: 600; }
.site-footer__stores { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-3xl); width: min(calc(100% - var(--container-inline-offset)), var(--wide-width)); margin: var(--space-sm) auto 0; padding: 0; text-align: center; }
.site-footer__store-name { margin: 0; font-weight: 700; white-space: nowrap; }
.site-footer address { margin-top: 0.35rem; font-size: var(--font-sm); font-style: normal; white-space: nowrap; }
.site-footer address a { font-weight: 700; text-underline-offset: 0.2em; }
.site-footer__copyright { margin: 0.8125rem 0 0; padding-bottom: 0.8125rem; font-size: var(--font-xs); text-align: center; }

:focus-visible { outline: 3px solid var(--color-blue); outline-offset: 3px; }

@media (max-width: 1199px) {
  .primary-nav__list { font-size: 0.875rem; }
  .home-hero { grid-template-columns: 1.7fr repeat(3, 1fr); }
  .home-about__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .social-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-grid,
  .lens-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 899px) {
  .site-footer__stores { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .site-header { padding-top: 0.75rem; }
  .site-header::before { height: 0.75rem; }
  .site-header__inner { min-height: 4.5rem; flex-wrap: wrap; }
  .site-logo { width: 108px; }
  .ornament-heading { min-height: 42px; padding-inline: 4.125rem; font-size: clamp(1.1875rem, 6vw, 1.4375rem); }
  .ornament-heading::before,
  .ornament-heading::after { width: 56px; height: 18px; background-size: 18px 18px; background-position: 0 50%, 19px 50%, 38px 50%; }
  .primary-nav { width: 100%; }
  html.js .menu-toggle { display: block; }
  html.js .primary-nav { display: none; position: absolute; top: 100%; right: 0; left: 0; padding: 1rem 1.5rem 1.5rem; background: var(--color-paper); border-bottom: 1px solid var(--color-cream-deep); }
  html.js .primary-nav[data-open] { display: block; }
  html.js .primary-nav__list { display: grid; gap: 0; }
  html.js .primary-nav a { padding-block: 0.75rem; border-bottom: 1px solid var(--color-cream-deep); }
  html.js .primary-nav a[aria-current="page"] { font-weight: 600; }
  .home-hero { grid-template-columns: repeat(3, minmax(0, 1fr)); height: auto; gap: 2px; }
  .home-hero__image { height: auto; aspect-ratio: 3 / 4; }
  .home-hero__image--main { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
  .page-hero__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); height: auto; gap: 0.2rem; }
  .page-hero__grid .page-hero__store { grid-column: 1 / -1; height: auto; aspect-ratio: 16 / 9; }
  .page-hero__grid img { height: auto; aspect-ratio: 4 / 3; }
  .brands-hero { grid-template-columns: 1fr; height: auto; }
  .brands-hero__image { height: auto; aspect-ratio: 16 / 9; }
  .brands-wish__illustration,
  .philosophy-mission__illustration,
  .home-about__image { height: auto; }
  .brands-wish__layout { grid-template-columns: 1fr; gap: var(--space-md); }
  .brands-wish__copy p br { display: none; }
  .brands-wish__illustration { border-radius: 0; }
  .brand-grid,
  .lens-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
  .brand-card { min-height: 86px; padding: 0.625rem; box-shadow: none; }
  .brand-card img { max-height: 3.5rem; }
  .brand-catalog__example { text-align: left; }
  .home-about__layout { grid-template-columns: 1fr; gap: var(--space-md); }
  .home-about .ornament-heading { padding-inline: 3.625rem; font-size: 1.0625rem; }
  .home-about__copy br { display: none; }
  .home-about__image { border-radius: 0; }
  .social-feed__heading { align-items: flex-start; flex-direction: column; }
  .social-grid { grid-template-columns: 1fr; }
  .home-calendars { grid-template-columns: 1fr; gap: 3.125rem; padding-inline: var(--space-sm); }
  .home-calendars > .sample-note { position: static; grid-column: 1; grid-row: 2; justify-self: center; transform: none; }
  .business-calendar { padding: 0; }
  .business-calendar td { height: 3rem; }
  .access-main,
  .contact-main { padding-top: var(--space-lg); }
  .access-heading { margin-bottom: var(--space-2xl); }
  .store-heading h2 { font-size: clamp(1rem, 4.7vw, 1.1875rem); overflow-wrap: anywhere; }
  .store-details { grid-template-columns: 80px minmax(0, 1fr); font-size: var(--font-sm); }
  .store-details dt,
  .store-details dd { padding: 0.3125rem 0.4375rem; }
  .store-details dd { min-width: 0; overflow-wrap: anywhere; }
  .store-map { margin-top: var(--space-2xl); }
  .store-map__title { font-size: 1.75rem; }
  .map-frame { aspect-ratio: 4 / 3; }
  .store-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .store-gallery__image { height: auto; aspect-ratio: 4 / 3; }
  .contact-heading { margin-bottom: 1.875rem; }
  .line-contact__lead,
  .phone-contact__lead { font-size: var(--font-lg); }
  .line-contact__instruction { font-size: var(--font-sm); line-height: 1.6; }
  .line-contact__panel { grid-template-columns: 1fr; padding: 0.625rem; }
  .line-contact__brand { font-size: var(--font-2xl); }
  .line-contact__banner { font-size: var(--font-xl); }
  .line-contact__description { min-height: 0; font-size: var(--font-base); }
  .line-contact__description br { display: none; }
  .line-contact__qr { width: min(100%, 240px); margin-inline: auto; }
  .phone-contact__stores { grid-template-columns: 1fr; gap: 1.875rem; }
  .phone-contact__store-name { font-size: var(--font-xl); }
  .phone-contact__store a { font-size: var(--font-2xl); }
  .philosophy-hero__images { grid-template-columns: 1fr; height: auto; gap: 0.2rem; }
  .philosophy-hero__images img { height: auto; aspect-ratio: 16 / 9; }
  .philosophy-hero__images img:first-child { height: auto; aspect-ratio: 4 / 3; }
  .mission__layout { grid-template-columns: 1fr; gap: var(--space-md); }
  .mission__copy p br,
  .exam-step p br,
  .binocular-exam__copy br,
  .community__copy br { display: none; }
  .philosophy-mission__illustration { width: min(100%, 320px); border-radius: 0; justify-self: center; }
  .exam-flow__steps { --exam-marker-size: 64px; --exam-marker-overlap: 10px; width: 100%; }
  .exam-step { grid-template-columns: calc(var(--exam-marker-size) - var(--exam-marker-overlap)) minmax(0, 1fr); align-items: center; min-height: 130px; gap: 0; padding: 0 0 var(--space-2xl); }
  .exam-step:not(:last-child)::after { top: 91px; bottom: auto; }
  .step-number { grid-area: auto; font-size: var(--font-xs); }
  .exam-step__content { grid-template-columns: 1fr; }
  .exam-step h3 { grid-area: auto; align-self: auto; border-right: 0; border-bottom: var(--border-subtle); padding: 0.4375rem 0.625rem; font-size: var(--font-sm); }
  .exam-step p { grid-area: auto; padding: 0.4375rem 0.625rem; }
  .binocular-exam__box { grid-template-columns: 1fr; padding: var(--space-md); box-shadow: none; }
  .binocular-exam h2 { justify-self: center; }
  .community { min-height: 0; }
  .community__inner { text-align: left; }
  .community .section-title::after { margin-inline: 0; }
  .footer-nav ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
  .footer-nav a { min-height: 2.75rem; padding: 0.55rem; text-align: center; }
  .site-footer__stores { grid-template-columns: 1fr; gap: 1.25rem; }
  .site-footer__store-name,
  .site-footer address { white-space: normal; }
}

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