:root {
  --navy: #082f49;
  --navy-deep: #041f31;
  --navy-soft: #174866;
  --red: #b11f2d;
  --red-bright: #d73543;
  --cream: #f5f0e5;
  --paper: #fcfaf5;
  --white: #ffffff;
  --ink: #18242c;
  --muted: #64717a;
  --line: rgba(8, 47, 73, 0.16);
  --gold: #c6a461;
  --max: 1120px;
  --shadow: 0 24px 60px rgba(4, 31, 49, 0.14);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

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

h1,
h2,
.brand-copy strong,
.shop-name {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

h2 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.32;
  letter-spacing: 0.04em;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.5;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.container.narrow {
  max-width: 820px;
}

.section {
  padding: clamp(76px, 10vw, 132px) 0;
}

.eyebrow {
  margin-bottom: 13px;
  color: #d9e9f3;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.eyebrow.ink,
.price-section .eyebrow,
.access-section .eyebrow,
.cta-band .eyebrow {
  color: var(--red);
}

.section-heading {
  max-width: 600px;
}

.section-heading.centered {
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading.centered p:last-child {
  color: var(--muted);
}

.fineprint {
  color: var(--muted);
  font-size: 0.8rem;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.18;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button > span[aria-hidden] {
  font-size: 1.35rem;
}

.button small {
  display: block;
  margin-bottom: 3px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.button-light:hover {
  background: var(--cream);
}

.button-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(177, 31, 45, 0.32);
}

.button-red:hover {
  background: var(--red-bright);
}

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-top: 7px solid var(--navy);
  border-bottom: 1px solid var(--line);
  background: rgba(252, 250, 245, 0.94);
  backdrop-filter: blur(14px);
}

.site-header::after {
  content: "";
  position: absolute;
  top: -7px;
  right: 0;
  width: 24%;
  height: 7px;
  background: var(--red);
}

.header-inner {
  width: min(calc(100% - 40px), 1240px);
  min-height: 86px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.15;
}

.brand-emblem {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: "Yu Mincho", serif;
  font-size: 1.55rem;
  font-weight: 800;
  transform: rotate(-2deg);
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 1.45rem;
  letter-spacing: 0.14em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.84rem;
  font-weight: 800;
}

.global-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.global-nav a:not(.nav-call):hover {
  color: var(--red);
}

.global-nav .nav-call {
  padding: 0 22px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
}

.menu-toggle {
  display: none;
}

/* Hero */

.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(390px, 0.75fr);
  background: var(--cream);
  overflow: hidden;
}

.barber-stripe {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 18px;
  background: repeating-linear-gradient(135deg, var(--red) 0 28px, var(--white) 28px 56px, var(--navy) 56px 84px, var(--white) 84px 112px);
}

.hero-photo {
  min-height: 760px;
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.28), transparent 32%),
    linear-gradient(135deg, rgba(8,47,73,0.1), rgba(8,47,73,0.6)),
    repeating-linear-gradient(90deg, #d8c7aa 0 2px, #e4d7c1 2px 18px);
  overflow: hidden;
}

.hero-photo::before,
.hero-photo::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(8, 47, 73, 0.16);
}

.hero-photo::before {
  width: 470px;
  height: 470px;
}

.hero-photo::after {
  width: 590px;
  height: 590px;
}

.scissors {
  position: relative;
  z-index: 2;
  color: var(--navy-deep);
  font-family: Georgia, serif;
  font-size: clamp(12rem, 25vw, 24rem);
  line-height: 1;
  transform: rotate(-17deg) translateY(-2%);
  text-shadow: 0 16px 30px rgba(4, 31, 49, 0.12);
}

.comb {
  width: min(37vw, 520px);
  height: 74px;
  position: absolute;
  z-index: 3;
  bottom: 19%;
  left: 19%;
  border-top: 14px solid var(--red);
  background: repeating-linear-gradient(90deg, var(--red) 0 5px, transparent 5px 13px);
  transform: rotate(8deg);
  opacity: 0.92;
}

.hero-stamp {
  position: absolute;
  z-index: 4;
  top: 70px;
  left: 68px;
  padding: 14px 18px;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: "Yu Mincho", serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  transform: rotate(-4deg);
}

.hero-panel {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 74px clamp(42px, 5vw, 84px);
  background: rgba(4, 31, 49, 0.96);
  color: var(--white);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.hero h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 30px;
  font-size: clamp(2.7rem, 3.6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: 0.06em;
}

.hero h1 em {
  color: #e4c486;
  font-style: normal;
}

.hero-lead {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
}

.hero-facts {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.hero-facts span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-call {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  min-width: 280px;
}

.hero-note {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.75rem;
}

/* Quick information */

.quick-info {
  position: relative;
  z-index: 8;
  margin-top: -46px;
}

.quick-info-inner {
  width: min(calc(100% - 80px), 1080px);
  min-height: 92px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-info-inner > * {
  padding: 22px 28px;
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.quick-info-inner > *:last-child {
  border-right: 0;
  background: var(--red);
  color: var(--white);
}

.quick-info small,
.quick-info strong {
  display: block;
}

.quick-info small {
  margin-bottom: 3px;
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.quick-info-inner > *:last-child small {
  color: rgba(255,255,255,0.8);
}

.quick-info strong {
  font-size: 0.9rem;
}

/* Story / reasons */

.story-section {
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 9vw, 110px);
  align-items: start;
  margin-bottom: 70px;
}

.story-copy {
  padding-top: 24px;
}

.story-lead {
  color: var(--navy);
  font-family: "Yu Mincho", serif;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.62;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.reason-card {
  min-height: 280px;
  position: relative;
  padding: 48px 34px 34px;
  border-top: 4px solid var(--navy);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(4,31,49,0.07);
}

.reason-card:nth-child(2) {
  border-color: var(--red);
}

.reason-number {
  display: block;
  margin-bottom: 36px;
  color: rgba(8, 47, 73, 0.18);
  font-family: Georgia, serif;
  font-size: 3rem;
  font-style: italic;
  line-height: 1;
}

.reason-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Price */

.price-section {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}

.price-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 390px;
  height: 390px;
  border: 80px solid rgba(177, 31, 45, 0.06);
  border-radius: 50%;
}

.price-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.price-list {
  border-top: 2px solid var(--navy);
}

.price-row {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8px;
  border-bottom: 1px solid rgba(8,47,73,0.24);
}

.price-row span {
  color: var(--navy);
  font-family: "Yu Mincho", serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.price-row strong {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1;
}

.price-row strong small {
  margin-right: 6px;
  color: var(--red);
  font-size: 0.8rem;
}

.sign-figure {
  position: relative;
  margin-bottom: 0;
  text-align: center;
}

.sign-frame {
  position: relative;
  padding: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.sign-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--line);
  pointer-events: none;
}

.sign-frame img {
  width: 100%;
  aspect-ratio: 404 / 300;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.sign-figure figcaption {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.75rem;
}

.price-note {
  max-width: 800px;
  margin: 58px auto 0;
  padding: 26px 30px;
  border-left: 4px solid var(--red);
  background: rgba(255,255,255,0.7);
}

.price-note strong {
  color: var(--navy);
}

.price-note p {
  margin: 6px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.price-note a {
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 900;
}

.price-note a span {
  margin-left: 8px;
}

/* CTA */

.cta-band {
  padding: 60px 0;
  background: var(--white);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-band h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
}

.cta-band p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-band .button {
  flex: none;
  min-width: 300px;
}

/* Staff */

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

.staff-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 9vw, 120px);
  align-items: center;
}

.staff-portrait {
  min-height: 500px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,0.16), transparent 30%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 18px, transparent 18px 36px),
    var(--navy-deep);
}

.staff-portrait::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,0.13);
}

.portrait-mark {
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  border: 2px solid #e4c486;
  color: #e4c486;
  font-family: "Yu Mincho", serif;
  font-size: 6rem;
  line-height: 1;
  transform: rotate(-2deg);
}

.staff-portrait p {
  position: absolute;
  bottom: 45px;
  margin: 0;
  color: rgba(255,255,255,0.48);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.3em;
}

.staff-copy h2 {
  color: var(--white);
}

.staff-copy h2 span {
  display: inline-block;
  margin-top: 12px;
  color: #e4c486;
  font-size: 1.2em;
}

.staff-role {
  margin-bottom: 30px;
  color: rgba(255,255,255,0.55);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.staff-copy > p:not(.eyebrow):not(.staff-role):not(.fineprint) {
  max-width: 620px;
  color: rgba(255,255,255,0.8);
}

.staff-detail {
  margin: 38px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.staff-detail > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.staff-detail dt {
  color: #e4c486;
  font-size: 0.82rem;
  font-weight: 800;
}

.staff-detail dd {
  margin-bottom: 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.staff-copy .fineprint {
  color: rgba(255,255,255,0.5);
}

/* Access */

.access-section {
  background: var(--paper);
}

.access-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: stretch;
}

.map-wrap {
  min-height: 560px;
  background: var(--cream);
}

.map-wrap iframe {
  width: 100%;
  height: 500px;
  border: 0;
}

.map-wrap p {
  margin: 0;
  padding: 14px 18px;
  color: var(--muted);
  font-size: 0.72rem;
}

.shop-card {
  padding: clamp(36px, 5vw, 60px);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(4,31,49,0.08);
}

.shop-name {
  margin-bottom: 32px;
  color: var(--navy);
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.shop-name small {
  display: block;
  margin-bottom: 3px;
  color: var(--red);
  font-family: sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
}

.shop-details {
  margin-bottom: 30px;
  border-top: 1px solid var(--line);
}

.shop-details > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.shop-details dt {
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 900;
}

.shop-details dd {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.shop-actions {
  display: grid;
  gap: 18px;
}

.text-link {
  color: var(--red);
  font-size: 0.83rem;
  font-weight: 900;
  text-align: center;
}

/* FAQ */

.faq-section {
  background: var(--cream);
}

.faq-list {
  border-top: 2px solid var(--navy);
}

.faq-list details {
  border-bottom: 1px solid rgba(8,47,73,0.2);
}

.faq-list summary {
  position: relative;
  padding: 24px 54px 24px 48px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "Q";
  position: absolute;
  left: 10px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 1.4rem;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 54px 26px 48px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Final CTA / footer */

.last-call {
  position: relative;
  padding: 105px 0;
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
}

.last-call-pattern {
  position: absolute;
  inset: 0 0 0 auto;
  width: 33%;
  background: repeating-linear-gradient(135deg, rgba(177,31,45,0.42) 0 24px, rgba(255,255,255,0.04) 24px 48px, rgba(8,47,73,0.5) 48px 72px, rgba(255,255,255,0.04) 72px 96px);
  opacity: 0.6;
}

.last-call-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.last-call h2 {
  color: var(--white);
}

.last-call .button {
  min-width: 300px;
  margin-top: 22px;
}

.last-call-hours {
  margin: 15px 0 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
}

.site-footer {
  padding: 50px 0 34px;
  background: #031724;
  color: rgba(255,255,255,0.68);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: end;
  gap: 36px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-emblem {
  width: 44px;
  height: 44px;
  color: #e4c486;
  border-color: #e4c486;
  font-size: 1.3rem;
}

.footer-inner > div > p {
  margin: 18px 0 0;
  font-size: 0.75rem;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.footer-inner nav a {
  font-size: 0.75rem;
  text-decoration: none;
}

.footer-inner nav a:hover {
  color: var(--white);
}

.copyright {
  margin: 0;
  font-size: 0.7rem;
}

.mobile-call {
  display: none;
}

@media (max-width: 980px) {
  .global-nav {
    gap: 16px;
    font-size: 0.76rem;
  }

  .global-nav .nav-call {
    padding-inline: 16px;
  }

  .hero {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .quick-info-inner {
    width: min(calc(100% - 40px), 900px);
  }

  .quick-info-inner > * {
    padding-inline: 18px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 77px;
  }

  body {
    padding-bottom: 74px;
  }

  .site-header {
    border-top-width: 6px;
  }

  .header-inner {
    width: min(calc(100% - 28px), 760px);
    min-height: 70px;
  }

  .brand-emblem {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .brand-copy strong {
    font-size: 1.15rem;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    width: 54px;
    min-height: 48px;
    display: grid;
    place-items: center;
    gap: 2px;
    border: 0;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    position: relative;
    z-index: 3;
  }

  .menu-toggle-lines,
  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    width: 28px;
    height: 2px;
    display: block;
    position: relative;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-toggle-lines::before {
    top: -8px;
  }

  .menu-toggle-lines::after {
    top: 8px;
  }

  .menu-toggle-label {
    margin-top: 7px;
    font-size: 0.56rem;
    font-weight: 800;
  }

  .menu-open .menu-toggle-lines {
    background: transparent;
  }

  .menu-open .menu-toggle-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-open .menu-toggle-lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .global-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    max-height: 0;
    display: grid;
    gap: 0;
    overflow: hidden;
    background: rgba(252,250,245,0.98);
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }

  .menu-open .global-nav {
    max-height: calc(100vh - 70px);
    padding: 16px 24px 28px;
    border-bottom: 1px solid var(--line);
    opacity: 1;
  }

  .global-nav a {
    min-height: 58px;
    padding: 0 14px;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
  }

  .global-nav .nav-call {
    justify-content: center;
    margin-top: 16px;
    border-bottom: 0;
    color: var(--white);
  }

  .hero {
    min-height: 0;
    display: block;
  }

  .hero-photo {
    min-height: 73vw;
  }

  .scissors {
    font-size: 35vw;
  }

  .comb {
    width: 52vw;
    height: 52px;
    left: 26%;
    bottom: 16%;
    border-top-width: 10px;
    background-size: auto;
  }

  .hero-stamp {
    top: 28px;
    left: 34px;
    font-size: 0.75rem;
  }

  .hero-panel {
    margin: -34px 18px 0;
    padding: 64px 38px 52px;
  }

  .hero-panel::before {
    inset: 18px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8.5vw, 3.7rem);
    letter-spacing: 0.02em;
  }

  .quick-info {
    margin-top: 0;
    padding: 30px 0 0;
  }

  .quick-info-inner {
    width: min(calc(100% - 36px), 700px);
    grid-template-columns: 1fr 1fr;
  }

  .quick-info-inner > * {
    border-bottom: 1px solid var(--line);
  }

  .quick-info-inner > *:nth-child(2) {
    border-right: 0;
  }

  .story-grid,
  .price-layout,
  .staff-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .story-grid {
    gap: 20px;
  }

  .story-copy {
    padding-top: 0;
  }

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

  .reason-card {
    min-height: 0;
  }

  .price-layout {
    gap: 54px;
  }

  .sign-figure {
    max-width: 580px;
    margin-inline: auto;
  }

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

  .staff-portrait {
    min-height: 380px;
  }

  .staff-grid {
    gap: 56px;
  }

  .access-grid {
    gap: 20px;
  }

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

  .copyright {
    grid-column: 1 / -1;
  }

  .mobile-call {
    height: 64px;
    position: fixed;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 2px solid rgba(255,255,255,0.72);
    border-radius: 999px;
    background: var(--red);
    color: var(--white);
    box-shadow: 0 12px 35px rgba(4,31,49,0.32);
    font-weight: 900;
    line-height: 1.1;
    text-decoration: none;
  }

  .mobile-call > span:first-child {
    font-size: 1.4rem;
  }

  .mobile-call small {
    display: block;
    margin-bottom: 2px;
    font-size: 0.62rem;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(calc(100% - 30px), var(--max));
  }

  .section {
    padding: 76px 0;
  }

  .hero-photo {
    min-height: 87vw;
  }

  .hero-panel {
    margin-inline: 12px;
    padding: 54px 28px 45px;
  }

  .hero-lead br:first-child {
    display: none;
  }

  .hero-facts {
    display: grid;
  }

  .hero-call,
  .cta-band .button,
  .last-call .button {
    width: 100%;
    min-width: 0;
  }

  .quick-info-inner {
    grid-template-columns: 1fr;
  }

  .quick-info-inner > * {
    min-height: 74px;
    border-right: 0;
  }

  .price-row {
    min-height: 78px;
  }

  .price-row span {
    font-size: 1.05rem;
  }

  .price-row strong {
    font-size: 2.25rem;
  }

  .price-note {
    padding: 22px;
  }

  .price-note a span {
    display: block;
    margin-left: 0;
  }

  .cta-band .button {
    align-self: stretch;
  }

  .portrait-mark {
    width: 140px;
    height: 140px;
    font-size: 4.8rem;
  }

  .staff-detail > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .map-wrap {
    min-height: 0;
    height: auto;
  }

  .map-wrap iframe {
    height: 360px;
  }

  .map-wrap p {
    min-height: 86px;
  }

  .shop-card {
    padding: 34px 24px;
  }

  .shop-details > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .faq-list summary {
    padding-left: 40px;
  }

  .faq-list details p {
    padding-left: 40px;
    padding-right: 22px;
  }

  .last-call {
    padding: 82px 0;
  }

  .last-call-pattern {
    width: 42%;
    opacity: 0.35;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .copyright {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
