:root {
  --paper: #fbfaf7;
  --ivory: #f4eee4;
  --cream: #fffdf9;
  --brown: #2e2620;
  --muted: #75695e;
  --line: #e1d8cc;
  --gold: #a88756;
  --gold-dark: #8d7147;
  --white: #fff;
  --shadow: 0 18px 48px rgba(61, 49, 38, 0.1);
  --interactive-lift: translateY(-4px) scale(1.024);
  --interactive-press: translateY(2px) scale(0.98);
  --interactive-shadow: 0 21px 44px rgba(126, 86, 63, 0.28);
  --font-serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  --font-sans: "Hiragino Sans", "Yu Gothic", sans-serif;
}

@media (max-width: 640px) {
  .page-contact .site-header {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .page-contact .nav {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-width: 0;
    overflow: visible;
    gap: 8px;
  }

  .page-contact .nav a {
    flex: 0 1 auto;
    white-space: normal;
  }

  .page-contact .hero-copy,
  .page-contact .lead {
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

.page-contact .contact-hero,
.page-thanks .thanks-page {
  min-height: 58vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(214, 176, 135, 0.22), transparent 30%),
    linear-gradient(135deg, #fffaf6 0%, #fff 54%, #f9eee6 100%);
}

.contact-section {
  padding-top: clamp(64px, 8vw, 108px);
}

.page-contact .hero-copy {
  width: 100%;
  max-width: 760px;
}

.page-contact .hero-copy > *,
.page-contact .lead {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  max-width: 1120px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid rgba(178, 137, 101, 0.2);
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.94);
  box-shadow: 0 22px 48px rgba(98, 58, 37, 0.09);
}

.contact-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 600;
  color: var(--brown);
}

.contact-card p:not(.eyebrow) {
  margin: 0 0 auto;
  color: var(--muted);
  line-height: 1.95;
}

.contact-bottom {
  margin-top: 0;
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 120px 20px;
}

.thanks-panel {
  width: min(760px, 100%);
  padding: clamp(38px, 6vw, 72px);
  border: 1px solid rgba(178, 137, 101, 0.22);
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.95);
  text-align: center;
  box-shadow: 0 28px 70px rgba(98, 58, 37, 0.12);
}

.thanks-panel h1 {
  margin: 8px 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--brown);
}

.thanks-panel p {
  color: var(--muted);
  line-height: 1.9;
}

.thanks-panel .hero-actions {
  justify-content: center;
}

@media (max-width: 900px) {
  .page-contact .site-header {
    overflow: hidden;
  }

  .page-contact .nav {
    max-width: 100%;
    overflow-x: auto;
  }

  .page-contact .contact-hero {
    display: block;
  }

  .page-contact .hero-copy,
  .page-contact .lead,
  .page-contact .hero-actions,
  .page-contact .button {
    max-width: 100%;
  }

  .contact-card-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .page-contact .site-header {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .page-contact .nav {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-width: 0;
    overflow: visible;
    gap: 8px;
  }

  .page-contact .nav a {
    flex: 0 1 auto;
    white-space: normal;
  }

  .page-contact .hero-copy,
  .page-contact .lead {
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--brown);
  font-family: var(--font-serif);
  line-height: 1.75;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { overflow-wrap: anywhere; }

@keyframes button-pop {
  0%, 100% { transform: var(--interactive-lift) rotate(0deg); }
  45% { transform: translateY(-6px) scale(1.034) rotate(-0.6deg); }
  75% { transform: translateY(-3px) scale(1.018) rotate(0.46deg); }
}

:where(a, button, summary, [role="button"]) {
  -webkit-tap-highlight-color: rgba(168, 135, 86, 0.18);
}

:where(
  .header-cta,
  .button,
  button:not(.case-lightbox__backdrop),
  summary,
  .brand,
  .nav a,
  .store-card a,
  .store-link-grid a,
  .column-card a,
  .footer a,
  .published-link
) {
  transition:
    transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    filter 180ms ease,
    opacity 180ms ease;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  :where(
    .header-cta,
    .button,
    .case-photo-button,
    .store-card a,
    .store-link-grid a,
    .column-card a,
    .published-link
  ):hover {
    transform: var(--interactive-lift);
    box-shadow: var(--interactive-shadow);
  }

  :where(.header-cta, .button):hover {
    animation: button-pop 380ms ease both;
    filter: saturate(1.09) brightness(1.04);
  }

  :where(.brand, .nav a, .footer a, summary):hover {
    transform: translateY(-3px);
  }
}

:where(
  .header-cta,
  .button,
  button:not(.case-lightbox__backdrop),
  summary,
  .brand,
  .nav a,
  .store-card a,
  .store-link-grid a,
  .column-card a,
  .footer a,
  .published-link
):active {
  transform: var(--interactive-press);
}

:where(a, button:not(.case-lightbox__backdrop), summary, [role="button"]):focus-visible {
  outline: 3px solid rgba(168, 135, 86, 0.34);
  outline-offset: 4px;
  border-radius: 12px;
}

@media (prefers-reduced-motion: reduce) {
  :where(
    .header-cta,
    .button,
    button:not(.case-lightbox__backdrop),
    summary,
    .brand,
    .nav a,
    .store-card a,
    .store-link-grid a,
    .column-card a,
    .footer a,
    .published-link
  ) {
    transition: none !important;
    animation: none !important;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 0 4vw;
  border-bottom: 1px solid rgba(225, 216, 204, 0.85);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(18px);
}
.brand { display: grid; gap: 0; min-width: max-content; line-height: 1; }
.brand-mark { font-family: var(--font-serif); font-size: 42px; letter-spacing: 0; }
.brand-kana { font-size: 11px; letter-spacing: 0.12em; }
.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  min-width: 0;
  color: #4f4740;
  font-family: var(--font-serif);
  font-size: 13px;
}
.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.header-cta::after, .button.primary::after { content: ">"; margin-left: 14px; font-weight: 400; }
.button.secondary {
  background: rgba(255, 255, 255, 0.65);
  color: var(--brown);
  border-color: var(--line);
}
.button.mini { min-height: 40px; padding: 0 18px; font-size: 13px; }

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 52px;
  min-height: min(760px, calc(100vh - 72px));
  padding: 54px 6vw 36px;
  background:
    radial-gradient(circle at 78% 22%, rgba(225, 216, 204, 0.75), transparent 34%),
    linear-gradient(90deg, rgba(251, 250, 247, 0.96) 0%, rgba(251, 250, 247, 0.86) 45%, rgba(244, 238, 228, 0.62) 100%);
}
.hero-copy { max-width: 740px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
h1 {
  margin: 0;
  font-size: clamp(34px, 4.55vw, 64px);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.05em;
}

@media (max-width: 1320px) {
  .site-header { padding-inline: 36px; gap: 18px; }
  .nav { gap: 18px; font-size: 12px; }
  .header-cta { min-height: 44px; padding-inline: 18px; font-size: 13px; }
}
h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: 0.04em;
}
h3 { margin: 0; font-size: 18px; line-height: 1.55; }
.lead { margin: 22px 0 0; color: var(--muted); font-size: 18px; }
.micro-copy { margin: 14px 0 0; color: var(--muted); font-family: var(--font-serif); font-size: 13px; }

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
  max-width: 560px;
}
.hero-badges span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  color: #51483f;
  font-family: var(--font-serif);
  font-size: 13px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

.hero-portrait {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 0 0 0 80px;
  box-shadow: var(--shadow);
  background: var(--ivory);
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: top center;
}
.page-home .hero-portrait img { object-position: center top; }
.page-recruit .hero-portrait img { object-position: center; }
.page-franchise .hero-portrait img { object-position: center; }
.hero-portrait.stacked { overflow: visible; box-shadow: none; background: transparent; }
.hero-portrait.stacked > img { border-radius: 0 0 0 80px; box-shadow: var(--shadow); }
.floating-card, .side-stack a {
  position: absolute;
  right: 28px;
  display: grid;
  gap: 6px;
  width: min(260px, 42%);
  padding: 18px 20px;
  border: 1px solid rgba(225, 216, 204, 0.92);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 36px rgba(61, 49, 38, 0.1);
}
.floating-card.top { top: 42px; }
.floating-card.bottom { bottom: 42px; }
.floating-card span, .side-stack span { color: var(--muted); font-size: 13px; }
.side-stack { position: absolute; inset: 42px 0 auto auto; display: grid; gap: 14px; width: 270px; transform: translateX(24px); }
.side-stack a { position: static; width: 100%; }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}
.feature-strip article {
  min-height: 124px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 22px 28px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.feature-strip article:last-child { border-right: 0; }
.feature-strip span, .reason-grid span, .timeline span { color: var(--gold); font-family: var(--font-serif); font-size: 18px; }
.feature-strip small, .section-text, .section-heading p, .menu-card p, .reason-grid p, .store-card p, .faq-grid p, .check-grid article, .support-tabs p {
  color: var(--muted);
}

.section { padding: 82px 6vw; border-top: 1px solid var(--line); }
.soft-band { background: var(--ivory); }
.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 56px;
  align-items: start;
}
.section-heading { max-width: 820px; margin-bottom: 34px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-text { margin: 0; font-size: 17px; }

.media-pair {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  margin-top: 28px;
}
.media-pair figure, .wide-visual, .support-visual {
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 30px rgba(61, 49, 38, 0.04);
  overflow: hidden;
}
.media-pair img, .wide-visual img, .support-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-pair figure { min-height: 220px; }
.media-pair figure:first-child { min-height: 280px; }
.wide-visual {
  margin-top: 26px;
  aspect-ratio: 16 / 7;
}
.support-visual {
  max-width: 960px;
  margin: -8px auto 26px;
  aspect-ratio: 16 / 6;
}
figcaption {
  padding: 10px 14px 12px;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 12px;
  background: rgba(255, 255, 255, 0.88);
}

.menu-grid, .case-grid, .store-grid, .faq-grid, .check-grid, .support-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.menu-card, .case-grid article, .store-card, .faq-grid details, .check-grid article, .support-tabs article, .reason-grid article, .timeline article, .voice-card, .owner-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 30px rgba(61, 49, 38, 0.04);
}
.menu-card { min-height: 260px; padding: 22px; }
.menu-card.compact ul { margin: 16px 0 20px; padding-left: 18px; color: var(--muted); }
.brow-thumb, .case-photo, .store-photo {
  min-height: 116px;
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(168, 135, 86, 0.1), rgba(255, 255, 255, 0.72)),
    url("./assets/shared-brow-closeup.png") center / cover;
}
.brow-thumb.alt, .case-photo.alt, .store-photo.alt {
  background-image:
    linear-gradient(135deg, rgba(168, 135, 86, 0.08), rgba(255, 255, 255, 0.7)),
    url("./assets/shared-treatment.png");
}
.menu-card strong { display: block; margin-top: 18px; color: var(--gold-dark); font-size: 24px; font-weight: 400; }
.menu-card small, .store-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 12px;
  line-height: 1.6;
}
.case-grid article, .store-card { padding: 16px; }
.store-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.store-card {
  display: grid;
  align-content: start;
}
.store-card .store-area {
  margin: 0 0 4px;
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
}
.store-card a {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--gold-dark);
  border-bottom: 1px solid rgba(168, 135, 86, 0.5);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
}
.store-links {
  display: grid;
  justify-items: start;
  gap: 8px;
  margin-top: 14px;
}
.store-card a.store-detail-link {
  padding: 9px 14px;
  color: #fff;
  border: 0;
  border-radius: 999px;
  background: var(--brown);
}
.store-note {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 13px;
  text-align: center;
}
.store-note strong { color: var(--brown); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 18px 6vw 0;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 12px;
}
.breadcrumb a {
  color: var(--gold-dark);
  border-bottom: 1px solid rgba(168, 135, 86, 0.35);
}

.store-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: 46px;
  padding: 68px 6vw 58px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.96), rgba(244, 238, 228, 0.72)),
    url("./assets/shared-brow-closeup.png") right center / cover;
}
.store-hero h1 { font-size: clamp(34px, 4vw, 58px); }
.store-hero-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ivory);
  box-shadow: var(--shadow);
}
.store-hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.store-info-panel,
.reservation-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 30px rgba(61, 49, 38, 0.04);
}
.store-info-panel { padding: 28px; }
.store-info-panel dl {
  display: grid;
  gap: 0;
  margin: 0;
}
.store-info-panel dl > div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.store-info-panel dl > div:first-child { padding-top: 0; }
.store-info-panel dl > div:last-child { border-bottom: 0; }
.store-info-panel dt {
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
}
.store-info-panel dd {
  margin: 0;
  color: var(--muted);
}
.store-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.reservation-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px;
}
.reservation-panel p {
  margin-bottom: 0;
  color: var(--muted);
}
.related-stores {
  background: linear-gradient(180deg, var(--paper), var(--ivory));
}
.store-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}
.store-link-grid a,
.sitemap-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 30px rgba(61, 49, 38, 0.04);
}
.store-link-grid a {
  min-height: 62px;
  display: grid;
  place-items: center;
  padding: 14px 18px;
  color: var(--brown);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
}
.sitemap-section h1 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.04em;
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.sitemap-grid article {
  padding: 24px;
}
.sitemap-grid h2 {
  font-size: 24px;
}
.sitemap-grid ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-family: var(--font-serif);
}
.sitemap-grid a {
  color: var(--gold-dark);
  border-bottom: 1px solid rgba(168, 135, 86, 0.35);
}

.column-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 34px;
  align-items: end;
  padding: 68px 6vw 58px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.96), rgba(244, 238, 228, 0.72)),
    url("./assets/shared-brow-closeup.png") right center / cover;
}
.column-operation-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}
.column-operation-card p {
  margin-bottom: 0;
  color: var(--muted);
}
.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold-dark);
  border-bottom: 1px solid rgba(168, 135, 86, 0.45);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
}
.column-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}
.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.category-chips a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
}
.column-grid,
.column-mini-grid,
.operation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.column-card,
.column-mini-grid article,
.operation-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 30px rgba(61, 49, 38, 0.04);
}
.column-card {
  overflow: hidden;
}
.column-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.column-card div,
.column-mini-grid article,
.operation-grid article {
  padding: 22px;
}
.column-meta,
.column-mini-grid span,
.operation-grid span {
  display: block;
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
}
.column-card p,
.column-mini-grid p,
.operation-grid p {
  color: var(--muted);
}
.column-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--gold-dark);
  border-bottom: 1px solid rgba(168, 135, 86, 0.45);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
}
.generated-column-card h3 {
  min-height: 3.1em;
}
.column-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 0;
}
.column-card-actions a {
  margin-top: 0;
}
.column-card-actions .published-link {
  background: rgba(238, 247, 239, 0.92);
  border-color: rgba(48, 108, 61, 0.3);
  color: #306c3d;
}
.featured-column-grid {
  margin-top: 28px;
}
.featured-column-grid .column-card img {
  aspect-ratio: 4 / 3;
}
.column-review-notice {
  grid-column: 1 / -1;
}
.column-review-notice > div {
  max-width: 760px;
}
.review-grid {
  display: grid;
  gap: 18px;
}
.review-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 30px rgba(61, 49, 38, 0.04);
  overflow: hidden;
}
.review-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.review-card-body {
  padding: 24px;
}
.review-status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--gold-dark);
}
.status-approved .status-pill {
  background: #eef7ef;
  color: #306c3d;
}
.status-revision .status-pill {
  background: #fff2e8;
  color: #9a4f16;
}
.status-rejected .status-pill {
  background: #f4eeee;
  color: #8a3131;
}
.review-meta {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 12px;
}
.review-meta div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
}
.review-meta dt {
  color: var(--brown);
  font-weight: 700;
}
.review-meta dd {
  margin: 0;
  overflow-wrap: anywhere;
}
.review-checklist {
  display: grid;
  gap: 6px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 13px;
}
.review-note {
  margin: 16px 0 0;
  padding: 12px 14px;
  background: var(--ivory);
  color: var(--muted);
}
.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.automation-flow,
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.automation-flow article,
.stack-grid article,
.config-panel,
.draft-preview {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 30px rgba(61, 49, 38, 0.04);
}
.automation-flow article,
.stack-grid article,
.config-panel,
.draft-preview {
  padding: 24px;
}
.automation-flow span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 18px;
}
.automation-flow p,
.stack-grid p,
.config-panel p,
.draft-preview p {
  color: var(--muted);
}
.stack-grid strong {
  display: block;
  margin: 10px 0 12px;
  color: var(--gold-dark);
  font-size: 20px;
  font-weight: 400;
}
.config-panel {
  max-width: 880px;
  margin: 0 auto;
}
.config-panel pre {
  overflow-x: auto;
  margin: 0 0 18px;
  padding: 18px;
  background: var(--brown);
  color: var(--white);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.7;
}
.draft-preview {
  max-width: 920px;
  margin: 0 auto;
}
.rights-note {
  display: grid;
  gap: 6px;
  max-width: 960px;
  margin: 24px auto 0;
  padding: 20px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 13px;
}
.rights-note strong {
  color: var(--brown);
}
.rights-note p {
  margin: 0;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.reason-grid.five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.reason-grid article { min-height: 188px; padding: 24px; }
.reason-grid span { display: block; margin-bottom: 32px; }

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.timeline article {
  min-height: 96px;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 16px;
  text-align: center;
}
.step-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}
.step-flow span {
  min-height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 13px;
}
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}
.faq-grid details {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  padding: 0;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}
.faq-grid details::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(196, 154, 98, 0.14), transparent 42%),
    radial-gradient(circle at 88% 18%, rgba(196, 154, 98, 0.12), transparent 30%);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.faq-grid details[open] {
  min-height: 178px;
  border-color: rgba(182, 141, 93, 0.42);
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(255, 247, 240, 0.9));
  box-shadow: 0 24px 54px rgba(87, 58, 39, 0.11);
}
.faq-grid details[open]::before,
.faq-grid details:hover::before {
  opacity: 1;
}
.faq-grid details:hover {
  transform: translateY(-4px);
  border-color: rgba(182, 141, 93, 0.38);
  box-shadow: 0 24px 54px rgba(87, 58, 39, 0.1);
}
.faq-grid summary {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 28px 30px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.35vw, 23px);
  font-weight: 700;
  line-height: 1.55;
  list-style: none;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::before {
  content: "Q";
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(182, 141, 93, 0.38);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 238, 230, 0.82));
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 10px 22px rgba(87, 58, 39, 0.08);
}
.faq-grid summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.28s ease, color 0.28s ease;
}
.faq-grid details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
  color: var(--ink);
}
.faq-grid details p {
  position: relative;
  margin: -8px 30px 30px 86px;
  color: var(--muted);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 2;
}
.check-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.check-grid article { min-height: 96px; display: grid; place-items: center; padding: 18px; text-align: center; }
.support-tabs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.support-tabs article { min-height: 160px; padding: 24px; }

.voice-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  gap: 18px;
}
.voice-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 210px;
  padding: 18px;
}
.voice-card.featured {
  grid-row: span 2;
  grid-template-columns: 1fr;
  align-content: start;
}
.voice-card img {
  width: 100%;
  height: 156px;
  object-fit: cover;
  background: var(--ivory);
}
.voice-card.featured img { height: 300px; object-position: center 28%; }
.voice-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
}
.voice-card p { margin-bottom: 0; color: var(--muted); }
.voice-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.voice-points li {
  border: 1px solid rgba(182, 141, 93, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.82);
  color: #7d5944;
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 10px;
}

.owner-section { background: linear-gradient(180deg, var(--paper), var(--ivory)); }
.owner-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 34px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px;
}
.owner-panel figure { margin: 0; overflow: hidden; border: 1px solid var(--line); background: var(--white); }
.owner-panel img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 25%; }
.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-family: var(--font-serif);
}
.check-list li {
  position: relative;
  padding-left: 28px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

.bottom-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 42px 6vw;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(244, 238, 228, 0.92), rgba(255, 253, 249, 0.88)),
    url("./assets/shared-brow-closeup.png") left center / cover;
}
.bottom-cta p { margin: 0; font-size: clamp(22px, 2.6vw, 34px); line-height: 1.45; }
.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 24px 6vw;
  background: var(--brown);
  color: var(--white);
}
.footer nav { display: flex; justify-content: center; gap: 24px; color: rgba(255, 255, 255, 0.72); font-size: 13px; }
.footer small { color: rgba(255, 255, 255, 0.58); }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr; padding: 16px 24px; }
  .nav { justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
  .header-cta { width: max-content; }
  .page-hero, .store-hero, .column-hero, .column-toolbar, .split, .reservation-panel { grid-template-columns: 1fr; }
  .hero-portrait { min-height: 440px; }
  .media-pair { grid-template-columns: 1fr; }
  .feature-strip, .reason-grid.five, .store-grid, .check-grid, .support-tabs, .timeline, .step-flow, .store-link-grid, .sitemap-grid, .column-grid, .column-mini-grid, .operation-grid, .automation-flow, .stack-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .voice-grid, .owner-panel { grid-template-columns: 1fr; }
  .voice-card.featured { grid-row: auto; }
  .side-stack { position: static; width: 100%; transform: none; margin-top: 14px; }
}

@media (max-width: 640px) {
  .site-header, .section, .page-hero, .column-hero, .bottom-cta, .footer, .breadcrumb { padding-left: 22px; padding-right: 22px; }
  .brand-mark { font-size: 34px; }
  .header-cta, .hero-actions, .button { width: 100%; }
  .hero-badges, .feature-strip, .menu-grid, .case-grid, .store-grid, .reason-grid, .reason-grid.five, .faq-grid, .check-grid, .support-tabs, .timeline, .step-flow, .store-link-grid, .sitemap-grid, .column-grid, .column-mini-grid, .operation-grid, .automation-flow, .stack-grid, .bottom-cta, .footer, .voice-grid { grid-template-columns: 1fr; }
  .review-card { grid-template-columns: 1fr; }
  .page-hero { gap: 30px; min-height: auto; padding-top: 36px; }
  .hero-portrait { min-height: 360px; border-radius: 0 0 0 44px; }
  .wide-visual, .support-visual { aspect-ratio: 4 / 3; }
  .voice-card, .voice-card.featured { grid-template-columns: 1fr; }
  .voice-card img, .voice-card.featured img { height: 220px; }
  .owner-panel { padding: 22px; }
  .floating-card { position: static; width: auto; margin: 12px; }
  .feature-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
  .store-hero { padding-top: 36px; gap: 28px; }
  .column-hero { padding-top: 36px; gap: 28px; }
  .category-chips { justify-content: flex-start; }
  .store-info-panel dl > div { grid-template-columns: 1fr; gap: 6px; }
  .store-action-row, .reservation-panel .button { width: 100%; }
}

/* 2026-06 brand polish: reference-image inspired luxury eyebrow salon theme */
:root {
  --paper: #fffaf5;
  --ivory: #f8eee6;
  --cream: #fffdf9;
  --brown: #3f2e25;
  --muted: #796b61;
  --line: #eadbd0;
  --gold: #b68d5d;
  --gold-dark: #7f563f;
  --rose: #f4dfd4;
  --soft-pink: #fff3ee;
  --white: #fff;
  --shadow: 0 22px 60px rgba(87, 58, 39, 0.14);
}

body {
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.98), rgba(248, 238, 230, 0.66) 46%, rgba(255, 253, 249, 0.98));
  color: var(--brown);
  font-family: var(--font-serif);
}

.site-header {
  min-height: 86px;
  padding: 8px 5vw;
  border-bottom-color: rgba(182, 141, 93, 0.24);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 12px 34px rgba(87, 58, 39, 0.05);
}

.brand {
  width: 156px;
  height: 72px;
  background: url("./assets/logo-and-alpha-eyebrow-salon.png") left center / contain no-repeat;
}

.brand-mark,
.brand-kana {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.nav {
  color: #5c4a3f;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.nav a {
  display: inline-block;
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.header-cta,
.button {
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(207, 178, 141, 0.96), rgba(142, 99, 70, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42), 0 12px 26px rgba(126, 86, 63, 0.22);
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.header-cta::after,
.button.primary::after {
  content: ">";
  margin-left: 18px;
  font-size: 18px;
}

.button.secondary {
  background: rgba(255, 253, 249, 0.82);
  color: var(--gold-dark);
  border-color: rgba(182, 141, 93, 0.38);
  box-shadow: 0 10px 24px rgba(87, 58, 39, 0.08);
}

.page-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: 36px;
  min-height: 720px;
  padding: 54px 5vw 42px;
  background: linear-gradient(90deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 250, 245, 0.92) 45%, rgba(248, 224, 211, 0.55) 100%);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

h1 {
  color: var(--brown);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0.06em;
}

.page-home h1 {
  font-size: 60px;
  line-height: 1.26;
}

h2,
.sitemap-section h1 {
  color: var(--brown);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: 0.05em;
}

h3 {
  color: var(--brown);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
}

.lead {
  margin-top: 22px;
  color: #6b5548;
  font-size: 20px;
  line-height: 1.9;
}

.micro-copy {
  color: #8a796b;
}

.hero-actions {
  gap: 16px;
  margin-top: 32px;
}

.hero-badges {
  grid-template-columns: repeat(4, minmax(96px, 1fr));
  gap: 10px;
  max-width: 640px;
  margin-top: 32px;
}

.hero-badges span {
  min-height: 72px;
  border-color: rgba(182, 141, 93, 0.26);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.76);
  box-shadow: 0 12px 24px rgba(87, 58, 39, 0.06);
  color: #6d5544;
  font-size: 13px;
}

.hero-portrait {
  min-height: 610px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: var(--soft-pink);
  box-shadow: var(--shadow);
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 250, 245, 0.1), rgba(255, 250, 245, 0.24));
  pointer-events: none;
}

.hero-portrait img {
  object-position: center top;
}

.page-home .hero-portrait img {
  object-position: center 12%;
}

.hero-portrait.stacked > img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-seal {
  position: absolute;
  right: 30px;
  bottom: 32px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(182, 141, 93, 0.46);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(248, 238, 230, 0.9));
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.52), 0 18px 38px rgba(87, 58, 39, 0.16);
  color: var(--gold-dark);
  text-align: center;
}

.hero-seal span {
  display: block;
  font-size: 17px;
  line-height: 1.2;
}

.hero-seal strong {
  display: block;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.15;
}

.floating-card,
.side-stack a,
.column-operation-card,
.config-panel,
.draft-preview,
.rights-note,
.store-note,
.store-info-panel,
.reservation-panel {
  border-color: rgba(182, 141, 93, 0.28);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 18px 44px rgba(87, 58, 39, 0.1);
  backdrop-filter: blur(10px);
}

.floating-card {
  z-index: 2;
}

.feature-strip {
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin: 28px 4vw 0;
  border: 1px solid rgba(182, 141, 93, 0.24);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 18px 50px rgba(87, 58, 39, 0.1);
}

.feature-strip article {
  min-height: 138px;
  border-color: rgba(182, 141, 93, 0.2);
}

.feature-strip span,
.reason-grid span,
.timeline span,
.automation-flow span {
  color: var(--gold);
}

.section {
  padding: 92px 6vw;
  border-top-color: rgba(182, 141, 93, 0.18);
}

.soft-band {
  background: linear-gradient(180deg, rgba(255, 243, 238, 0.56), rgba(248, 238, 230, 0.72));
}

.section-heading.center::after {
  content: "";
  display: block;
  width: 132px;
  height: 1px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.menu-card,
.case-grid article,
.store-card,
.faq-grid details,
.check-grid article,
.support-tabs article,
.reason-grid article,
.timeline article,
.voice-card,
.owner-panel,
.column-card,
.column-mini-grid article,
.operation-grid article,
.automation-flow article,
.stack-grid article,
.sitemap-grid article {
  border-color: rgba(182, 141, 93, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.84);
  box-shadow: 0 18px 42px rgba(87, 58, 39, 0.08);
}

.menu-card,
.reason-grid article,
.support-tabs article,
.operation-grid article,
.automation-flow article,
.stack-grid article {
  padding: 28px;
}

.brow-thumb,
.case-photo,
.store-photo {
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.08), rgba(255, 243, 238, 0.16)), url("./assets/shared-brow-closeup.png") center / cover;
}

.store-grid {
  gap: 22px;
}

.store-region-group {
  margin-top: 34px;
}

.store-region-group > h3 {
  margin: 0 0 18px;
  color: var(--gold-dark);
  text-align: center;
  font-size: 24px;
}

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 12px 20px 16px;
  }

  .brand {
    width: min(156px, 62vw);
  }

  .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 14px;
    overflow: visible;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
  }

  .nav a {
    padding: 4px 0;
    white-space: normal;
  }

  .header-cta {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .page-hero {
    display: block;
    width: 100%;
    padding: 44px 20px 42px;
    overflow: hidden;
  }

  .hero-copy,
  .lead,
  .micro-copy {
    max-width: 100%;
  }

  h1,
  .page-home h1 {
    font-size: clamp(42px, 13vw, 54px);
    line-height: 1.32;
    letter-spacing: 0.02em;
  }

  .lead {
    font-size: 16px;
  }

  .hero-badges {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-badges span {
    min-height: 58px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-portrait,
  .hero-portrait.stacked {
    width: 100%;
    min-height: 360px;
    margin-top: 34px;
    overflow: hidden;
  }

  .hero-portrait.stacked > img {
    width: 100%;
  }

  .side-stack {
    display: none;
  }

  .hero-seal {
    right: -18px;
    bottom: 20px;
    width: 112px;
    height: 112px;
  }

  .hero-seal span {
    font-size: 13px;
  }

  .hero-seal strong {
    font-size: 28px;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    margin: 0 20px;
  }

  .feature-strip article {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid rgba(182, 141, 93, 0.2);
  }

  .bottom-sticky {
    left: 10px;
    right: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
}

.store-card a.store-detail-link {
  border-radius: 999px;
  background: linear-gradient(180deg, #5b4034, #3f2e25);
  box-shadow: 0 10px 22px rgba(63, 46, 37, 0.14);
}

.store-hero,
.column-hero {
  background: linear-gradient(90deg, rgba(255, 253, 249, 0.98), rgba(255, 243, 238, 0.82)), url("./assets/shared-brow-closeup.png") right center / cover;
}

.store-hero h1,
.column-hero h1 {
  overflow-wrap: normal;
  word-break: keep-all;
  line-break: strict;
}

.store-hero-visual {
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.breadcrumb {
  background: rgba(255, 253, 249, 0.78);
}

.category-chips a,
.store-link-grid a {
  border-color: rgba(182, 141, 93, 0.28);
  background: rgba(255, 253, 249, 0.8);
  color: var(--gold-dark);
  box-shadow: 0 10px 24px rgba(87, 58, 39, 0.06);
}

.bottom-cta {
  background: linear-gradient(90deg, rgba(255, 253, 249, 0.94), rgba(248, 224, 211, 0.82)), url("./assets/shared-brow-closeup.png") left center / cover;
}

.bottom-cta p {
  color: var(--brown);
  font-size: 32px;
  letter-spacing: 0.05em;
}

.footer {
  background:
    radial-gradient(circle at 50% 0%, rgba(182, 141, 93, 0.16), transparent 34%),
    linear-gradient(180deg, #342821 0%, #261b16 100%);
}

.footer strong {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.footer nav {
  gap: 18px;
}

.footer nav a {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid rgba(214, 181, 132, 0.46);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.12), rgba(255, 253, 249, 0.035)),
    linear-gradient(135deg, rgba(182, 141, 93, 0.24), rgba(70, 49, 37, 0.46));
  color: rgba(255, 248, 238, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 12px 30px rgba(0, 0, 0, 0.16);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}

.footer nav a::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  opacity: 0;
  transform: translateX(-40%);
  transition: opacity 180ms ease, transform 420ms ease;
  pointer-events: none;
}

.footer nav a:hover,
.footer nav a:focus-visible {
  border-color: rgba(238, 210, 166, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.18), rgba(255, 253, 249, 0.06)),
    linear-gradient(135deg, rgba(190, 145, 88, 0.38), rgba(92, 61, 43, 0.58));
  color: var(--white);
}

.footer nav a:hover::before,
.footer nav a:focus-visible::before {
  opacity: 1;
  transform: translateX(40%);
}

@media (hover: hover) and (pointer: fine) {
  .footer nav a:hover {
    animation: button-pop 380ms ease both;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      inset 0 -1px 0 rgba(0, 0, 0, 0.18),
      0 22px 44px rgba(126, 86, 63, 0.3);
    color: var(--white);
    filter: saturate(1.09) brightness(1.04);
    transform: var(--interactive-lift);
  }
}

@media (max-width: 1320px) {
  h1,
  .page-home h1 {
    font-size: 52px;
  }
  .brand {
    width: 138px;
    height: 64px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    min-height: auto;
  }
  .nav {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar {
    display: none;
  }
  .nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .brand {
    width: 154px;
    height: 70px;
  }
  h1,
  .page-home h1 {
    font-size: 46px;
  }
  h2,
  .sitemap-section h1 {
    font-size: 34px;
  }
  .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy {
    max-width: 760px;
  }
  .hero-copy h1,
  .hero-copy .eyebrow,
  .hero-copy .lead {
    overflow-wrap: normal;
    word-break: keep-all;
  }
  .hero-portrait {
    min-height: 500px;
  }
  .feature-strip {
    margin: 0;
    border-radius: 0;
  }
}

@media (max-width: 640px) {
  .brand {
    width: 132px;
    height: 60px;
  }
  .site-header {
    gap: 16px;
  }
  .nav {
    width: 100%;
    gap: 18px;
    padding-bottom: 8px;
    font-size: 12px;
  }
  .page-hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 38px;
  }
  .hero-copy {
    width: 100%;
    max-width: none;
  }
  .hero-copy h1,
  .hero-copy .eyebrow,
  .hero-copy .lead {
    overflow-wrap: normal;
    word-break: keep-all;
    line-break: strict;
  }
  .store-hero .lead,
  .column-hero .lead {
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .bottom-cta p {
    overflow-wrap: anywhere;
    word-break: normal;
  }
  h1,
  .page-home h1 {
    font-size: 33px;
    line-height: 1.46;
    letter-spacing: 0.035em;
  }
  h2,
  .sitemap-section h1 {
    font-size: 29px;
  }
  h3 {
    font-size: 18px;
  }
  .eyebrow {
    font-size: 16px;
  }
  .lead {
    font-size: 17px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-portrait {
    min-height: 390px;
    border-radius: 8px;
  }
  .header-cta,
  .button {
    font-size: 16px;
  }
  .hero-seal {
    width: 116px;
    height: 116px;
    right: 18px;
    bottom: 18px;
  }
  .hero-seal span {
    font-size: 14px;
  }
  .hero-seal strong {
    font-size: 30px;
  }
  .bottom-cta p {
    font-size: 25px;
  }
}

/* 2026-06 header readability tuning */
@media (min-width: 1081px) {
  .site-header {
    grid-template-columns: 230px minmax(0, 1fr) auto;
    gap: 36px;
    min-height: 132px;
    padding: 14px 6.5vw 14px 5vw;
  }

  .brand {
    width: 230px;
    height: 112px;
    background-image: url("./assets/logo-and-alpha-eyebrow-salon-optimized.png");
    background-position: left center;
  }

  .nav {
    justify-content: flex-end;
    gap: 18px;
    padding-right: 22px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.025em;
    line-height: 1.35;
  }

  .nav a {
    padding: 16px 0;
  }

  .header-cta {
    min-height: 68px;
    padding: 0 36px;
    font-size: 22px;
    letter-spacing: 0.06em;
  }
}

@media (min-width: 1081px) and (max-width: 1280px) {
  .site-header {
    grid-template-columns: 210px minmax(0, 1fr) auto;
    gap: 24px;
    padding-right: 5vw;
  }

  .brand {
    width: 210px;
    height: 102px;
  }

  .nav {
    gap: 14px;
    padding-right: 12px;
    font-size: 17px;
  }

  .header-cta {
    min-height: 62px;
    padding-inline: 30px;
    font-size: 20px;
  }
}

@media (max-width: 1080px) {
  .brand {
    background-image: url("./assets/logo-and-alpha-eyebrow-salon-optimized.png");
  }
}

@media (max-width: 640px) {
  .brand {
    width: 166px;
    height: 82px;
  }

  .nav {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .header-cta {
    min-height: 64px;
    font-size: 20px;
  }
}

/* 2026-06 home first-view polish */
.home-hero {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(500px, 0.76fr) minmax(620px, 1.24fr);
  gap: 24px;
  min-height: min(760px, calc(100vh - 120px));
  padding: 64px 5vw 48px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 250, 245, 0.96) 42%, rgba(255, 250, 245, 0.46) 58%, rgba(248, 224, 211, 0.1) 100%),
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.96), transparent 24%),
    linear-gradient(180deg, #fffaf5 0%, #fff2eb 100%);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.12), rgba(255, 253, 249, 0.02)),
    url("./assets/shared-brow-closeup.png") calc(100% + 220px) center / auto 104% no-repeat;
  opacity: 0.98;
}

.home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(255, 250, 245, 0.9));
}

.home-hero .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 10px 0 0;
}

.home-hero .eyebrow {
  margin-bottom: 18px;
  color: #7f563f;
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.home-hero h1 {
  display: grid;
  gap: 8px;
  color: #4a3328;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1.08;
  letter-spacing: 0.045em;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.72), 0 14px 36px rgba(87, 58, 39, 0.08);
}

.home-hero h1 span,
.home-hero h1 strong {
  display: block;
  font-weight: 400;
}

.home-hero h1 span:first-child {
  position: relative;
  width: max-content;
  max-width: 100%;
  color: #a77a51;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.45;
}

.home-hero h1 span:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0.2em;
  bottom: 0.18em;
  height: 12px;
  border-bottom: 2px solid rgba(182, 141, 93, 0.62);
  border-radius: 50%;
  transform: rotate(-1deg);
}

.home-hero h1 span:nth-child(2) {
  font-size: clamp(38px, 4.4vw, 62px);
}

.home-hero h1 strong {
  color: #4a3328;
  font-size: clamp(62px, 6vw, 86px);
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: keep-all;
}

.home-hero .lead {
  width: min(640px, 100%);
  margin-top: 26px;
  color: #5f4a3d;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 2;
}

.home-hero .hero-badges {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  gap: 14px;
  margin-top: 34px;
}

.home-hero .hero-badges span {
  min-height: 86px;
  border-color: rgba(182, 141, 93, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.58);
  box-shadow: inset 0 0 0 5px rgba(255, 248, 243, 0.56);
  color: #70594c;
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.22vw, 20px);
  letter-spacing: 0.04em;
}

.home-hero .hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(440px, 100%);
  margin-top: 34px;
}

.home-hero .button.primary {
  grid-column: 1 / -1;
  min-height: 78px;
  padding-inline: 52px;
  font-size: clamp(23px, 2vw, 32px);
}

.home-hero .button.secondary {
  min-height: 66px;
  padding-inline: 20px;
  font-size: 18px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(244, 229, 215, 0.92));
  border-color: rgba(178, 129, 86, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.82), 0 16px 30px rgba(92, 61, 43, 0.14);
}

.home-hero .instagram-soft-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 66px;
  padding: 0 18px;
  border: 1px solid rgba(178, 129, 86, 0.5);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(244, 229, 215, 0.92));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.82), 0 16px 30px rgba(92, 61, 43, 0.14);
  color: #694b3d;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.home-hero .button.secondary::after,
.home-hero .instagram-soft-link::after {
  content: ">";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-left: 6px;
  border-radius: 50%;
  background: rgba(153, 103, 68, 0.12);
  color: #8a6048;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

.home-hero .instagram-soft-link__mark {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(151, 104, 73, 0.56);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
}

.home-hero .instagram-soft-link__mark::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1.5px solid rgba(151, 104, 73, 0.58);
  border-radius: 50%;
}

.home-hero .instagram-soft-link__mark::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(151, 104, 73, 0.62);
}

@media (hover: hover) {
  .home-hero .instagram-soft-link:hover {
    transform: translateY(-4px) scale(1.025);
    border-color: rgba(174, 126, 82, 0.44);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 38px rgba(88, 58, 39, 0.12), inset 0 0 0 5px rgba(255, 249, 244, 0.92);
  }
}

.home-hero .instagram-soft-link:active {
  transform: translateY(1px) scale(0.99);
}

.home-hero .micro-copy {
  margin-top: 18px;
  color: #715d50;
  font-size: 15px;
}

.home-hero .hero-portrait {
  position: relative;
  z-index: 1;
  min-height: 610px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-hero .hero-portrait > img {
  position: absolute;
  inset: -2% -5% 0 auto;
  width: 112%;
  height: 108%;
  min-height: 0;
  object-fit: cover;
  object-position: right center;
  opacity: 0;
  pointer-events: none;
}

.home-hero .hero-portrait::after {
  content: none;
}

.home-hero .hero-seal {
  right: 4vw;
  bottom: 64px;
  width: 164px;
  height: 164px;
  background: radial-gradient(circle, #fffdf9 0%, #fff7ef 58%, #f2dfce 100%);
}

.home-hero .floating-card {
  right: 3vw;
  width: min(320px, 48%);
  border-radius: 8px;
}

.home-hero .floating-card.top {
  top: 62px;
}

.home-hero .floating-card.bottom {
  bottom: 260px;
}

@media (min-width: 1081px) {
  .home-hero .floating-card,
  .home-hero .hero-seal {
    display: none;
  }
}

@media (max-width: 1320px) {
  .home-hero {
    grid-template-columns: minmax(460px, 0.78fr) minmax(520px, 1.22fr);
  }

  .home-hero::before {
    background-size: auto 100%;
    background-position: calc(100% + 180px) center;
  }

  .home-hero h1 {
    font-size: clamp(42px, 5vw, 68px);
  }

  .home-hero h1 strong {
    font-size: clamp(60px, 5.9vw, 82px);
  }
}

@media (max-width: 1080px) {
  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 46px;
    padding-bottom: 36px;
    background:
      linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 250, 245, 0.88) 58%, rgba(248, 224, 211, 0.48) 100%);
  }

  .home-hero::before {
    position: relative;
    order: 2;
    display: block;
    min-height: 520px;
    margin: 28px -5vw 0;
    background: url("./assets/shared-brow-closeup.png") 76% center / auto 100% no-repeat;
    opacity: 1;
  }

  .home-hero .hero-copy {
    max-width: 760px;
  }

  .home-hero .hero-portrait {
    display: none;
  }

  .home-hero .hero-badges {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .home-hero {
    position: relative;
    padding-top: 34px;
    overflow: hidden;
  }

  .home-hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    min-height: auto;
    margin: 0;
    background:
      linear-gradient(180deg, rgba(255, 253, 249, 0.62) 0%, rgba(255, 253, 249, 0.93) 38%, rgba(255, 250, 245, 0.98) 100%),
      url("./assets/shared-brow-closeup.png") 72% top / auto 42% no-repeat;
    opacity: 1;
  }

  .home-hero .eyebrow {
    font-size: 16px;
  }

  .home-hero h1 {
    gap: 6px;
    font-size: 35px;
    line-height: 1.16;
  }

  .home-hero h1 span:first-child {
    font-size: 24px;
  }

  .home-hero h1 span:nth-child(2) {
    font-size: 31px;
  }

  .home-hero h1 strong {
    font-size: clamp(40px, 11.6vw, 46px);
    line-height: 1.1;
  }

  .home-hero .lead {
    font-size: 16px;
    line-height: 1.85;
  }

  .home-hero .hero-badges {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-hero .hero-badges span {
    min-height: 62px;
    font-size: 18px;
  }

  .home-hero .button.primary,
  .home-hero .button.secondary {
    min-height: 68px;
    font-size: 21px;
  }

  .home-hero .hero-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .home-hero .button.primary {
    grid-column: auto;
  }

  .home-hero .instagram-soft-link {
    min-height: 68px;
    font-size: 20px;
  }
}

/* 2026-06 home lower-section polish */
.page-home .feature-strip {
  width: min(1280px, calc(100% - 6vw));
  margin: 80px auto 0;
  gap: 12px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-home .feature-strip .feature-visual {
  display: block;
  width: 100%;
  height: 118px;
  margin: 0 0 14px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94);
  transform-origin: center;
  transition:
    transform 420ms cubic-bezier(0.18, 0.9, 0.22, 1),
    filter 420ms ease,
    opacity 420ms ease;
}

.page-home .feature-strip article {
  position: relative;
  min-height: 268px;
  padding: 14px 14px 22px;
  overflow: hidden;
  border: 1px solid rgba(232, 214, 199, 0.88);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(255, 248, 242, 0.9));
  box-shadow: 0 18px 44px rgba(61, 49, 38, 0.08);
  transition:
    border-color 320ms ease,
    background 320ms ease,
    box-shadow 320ms ease;
}

.page-home .feature-strip article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 12%, rgba(255, 255, 255, 0.72) 46%, transparent 76%);
  opacity: 0;
  transform: translateX(-78%);
  transition:
    opacity 320ms ease,
    transform 720ms cubic-bezier(0.18, 0.9, 0.22, 1);
}

.page-home .feature-strip span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  border: 1px solid rgba(182, 141, 93, 0.34);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: inset 0 0 0 5px rgba(255, 243, 238, 0.9);
  font-size: 16px;
  transition:
    transform 380ms cubic-bezier(0.18, 0.9, 0.22, 1),
    border-color 320ms ease,
    background-color 320ms ease,
    box-shadow 320ms ease,
    color 320ms ease;
}

.page-home .feature-strip strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0.04em;
  transition:
    transform 360ms cubic-bezier(0.18, 0.9, 0.22, 1),
    color 320ms ease;
}

.page-home .feature-strip small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.86;
  transition:
    transform 420ms cubic-bezier(0.18, 0.9, 0.22, 1),
    opacity 360ms ease,
    color 360ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .page-home .feature-strip article:hover {
    border-color: rgba(182, 141, 93, 0.56);
    background:
      linear-gradient(180deg, rgba(255, 253, 249, 1), rgba(255, 242, 234, 0.98));
    box-shadow: 0 34px 78px rgba(87, 58, 39, 0.22);
  }

  .page-home .feature-strip article:hover::after {
    opacity: 1;
    transform: translateX(82%);
  }

  .page-home .feature-strip article:hover .feature-visual {
    transform: translateY(-10px) scale(1.12);
    filter: saturate(1.02) brightness(1.09);
  }

  .page-home .feature-strip article:hover span {
    color: var(--gold-dark);
    transform: translateY(-10px) scale(1.11) rotate(-9deg);
    border-color: rgba(182, 141, 93, 0.68);
    background: rgba(255, 250, 245, 0.96);
    box-shadow:
      inset 0 0 0 5px rgba(255, 243, 238, 0.92),
      0 18px 34px rgba(126, 86, 63, 0.22);
  }

  .page-home .feature-strip article:hover strong {
    color: var(--gold-dark);
    transform: translateY(-7px);
  }

  .page-home .feature-strip article:hover small {
    opacity: 1;
    transform: translateY(-4px);
  }
}

.page-home .feature-strip article:active .feature-visual {
  transform: translateY(1px) scale(0.98);
}

.page-home .feature-strip article:active span {
  transform: translateY(2px) scale(0.92);
}

@media (prefers-reduced-motion: reduce) {
  .page-home .feature-strip article,
  .page-home .feature-strip article::after,
  .page-home .feature-strip .feature-visual,
  .page-home .feature-strip span,
  .page-home .feature-strip strong,
  .page-home .feature-strip small {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

.page-home #about {
  background:
    radial-gradient(circle at 85% 12%, rgba(244, 223, 212, 0.55), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 245, 0.98), rgba(255, 253, 249, 0.96));
}

.page-home #about .section-text {
  max-width: 440px;
  margin-top: 22px;
  color: rgba(92, 70, 58, 0.78);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.01em;
}

.page-home #about .media-pair {
  margin-top: 0;
}

.page-home #about .media-pair figure {
  border-radius: 18px;
}

.page-home #about .media-pair img {
  min-height: 280px;
  filter: saturate(0.82) contrast(0.94) brightness(0.98);
}

.page-home #menu {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.92), transparent 24%),
    radial-gradient(circle at 92% 26%, rgba(226, 192, 167, 0.42), transparent 32%),
    linear-gradient(180deg, #fff4ee 0%, #f8eee6 100%);
}

.page-home #menu::before {
  content: "MENU";
  position: absolute;
  right: -0.08em;
  top: 24px;
  color: rgba(182, 141, 93, 0.08);
  font-family: var(--font-serif);
  font-size: clamp(96px, 13vw, 210px);
  line-height: 1;
  pointer-events: none;
}

.page-home #menu .section-heading,
.page-home #menu .menu-grid {
  position: relative;
  z-index: 1;
}

.page-home .menu-grid {
  max-width: 1200px;
  margin: 0 auto;
  gap: 22px;
}

.page-home .menu-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(4.8em, auto) auto auto auto;
  align-content: start;
  min-height: 344px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(255, 248, 242, 0.9));
  box-shadow: 0 24px 54px rgba(87, 58, 39, 0.1);
}

.page-home .menu-card:nth-child(2)::before,
.page-home .menu-card:nth-child(3)::before {
  content: "人気";
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(180deg, #c9a06e, #8f6549);
  color: #fff;
  box-shadow: 0 12px 28px rgba(126, 86, 63, 0.22);
  font-size: 15px;
}

.page-home .menu-card h3 {
  margin-top: 2px;
  min-height: 3.1em;
  font-size: 28.6px;
  line-height: 1.35;
}

.page-home .menu-card p {
  min-height: 4.8em;
  font-size: 14px;
}

.page-home .menu-card strong {
  margin-top: 8px;
  color: #80523b;
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1.1;
}

.page-home .menu-card small {
  display: inline-flex;
  width: max-content;
  margin-top: 12px;
  padding: 5px 12px;
  border: 1px solid rgba(182, 141, 93, 0.26);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.7);
}

.page-home .menu-card .button.mini {
  width: max-content;
  min-height: 42px;
  margin-top: 18px;
  padding-inline: 22px;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.page-home .brow-thumb {
  min-height: 166px;
  margin: -28px -28px 22px;
  border-radius: 18px 18px 0 0;
  background-position: center 42%;
}

.page-home .brow-thumb.alt {
  background-position: center 34%;
}

.page-home .brow-thumb.menu-women-a {
  background-image:
    linear-gradient(180deg, rgba(255, 253, 249, 0.03), rgba(255, 243, 238, 0.08)),
    url("./assets/menu-women-a.jpg");
  background-position: center 36%;
}

.page-home .brow-thumb.menu-women-b {
  background-image:
    linear-gradient(180deg, rgba(255, 253, 249, 0.03), rgba(255, 243, 238, 0.08)),
    url("./assets/menu-women-b.jpg");
  background-position: center 35%;
}

.page-home .brow-thumb.menu-men-a {
  background-image:
    linear-gradient(180deg, rgba(255, 253, 249, 0.02), rgba(255, 243, 238, 0.06)),
    url("./assets/menu-men-a.jpg");
  background-position: center 36%;
}

.page-home .brow-thumb.menu-men-b {
  background-image:
    linear-gradient(180deg, rgba(255, 253, 249, 0.02), rgba(255, 243, 238, 0.06)),
    url("./assets/menu-men-b.jpg");
  background-position: center 35%;
}

.page-home #cases {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 250, 245, 0.98));
}

.page-home .case-grid {
  max-width: 1120px;
  margin: 0 auto;
  gap: 22px;
}

.page-home .case-grid article {
  position: relative;
  overflow: hidden;
  min-height: 356px;
  padding: 0 0 24px;
  border-radius: 18px;
}

.page-home .case-grid article::before {
  content: none;
}

.page-home .case-photo-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 18px 18px 0 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.page-home .case-photo-button:focus-visible {
  outline: 3px solid rgba(166, 122, 83, 0.42);
  outline-offset: 4px;
}

.page-home .case-photo {
  display: block;
  width: 100%;
  height: 232px;
  min-height: 0;
  margin: 0 0 22px;
  border-radius: 0;
  border-bottom: 1px solid rgba(176, 140, 104, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(253, 246, 240, 0.92));
  object-fit: cover;
  object-position: center;
  transition: transform 0.24s ease;
}

.page-home .case-photo-button:hover .case-photo {
  transform: scale(1.035);
}

.page-home .case-grid strong,
.page-home .case-grid p {
  display: block;
  padding: 0 24px;
}

.page-home .case-grid strong {
  font-size: 22px;
}

.case-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.case-lightbox[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.case-lightbox__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(42, 31, 24, 0.76);
  cursor: zoom-out;
}

.case-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: min(920px, 92vw);
  max-height: 88vh;
  padding: 18px;
  border: 1px solid rgba(232, 214, 199, 0.86);
  border-radius: 18px;
  background: #fffdf9;
  box-shadow: 0 28px 80px rgba(42, 31, 24, 0.28);
}

.case-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(88vh - 32px);
  border-radius: 12px;
  background: #fffaf6;
  object-fit: contain;
}

.case-lightbox__close {
  position: absolute;
  top: -14px;
  right: -14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(232, 214, 199, 0.92);
  border-radius: 50%;
  background: #fffdf9;
  color: #5b4034;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(42, 31, 24, 0.18);
}

.case-lightbox-open {
  overflow: hidden;
}

.page-home .reason-section {
  background:
    linear-gradient(180deg, rgba(248, 238, 230, 0.7), rgba(255, 250, 245, 0.94));
}

.page-home .reason-visual {
  display: none;
  max-width: 1220px;
  margin: 0 auto;
}

.page-home .reason-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(221, 196, 170, 0.74);
  border-radius: 24px;
  box-shadow: 0 22px 52px rgba(111, 72, 49, 0.08);
}

.page-home .reason-grid.five {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.page-home .reason-grid article {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
  min-height: 384px;
  padding: 16px 16px 28px;
  overflow: hidden;
  border-radius: 18px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 248, 242, 0.94));
  box-shadow: 0 20px 48px rgba(87, 58, 39, 0.09);
}

.page-home .reason-grid article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(182, 141, 93, 0.1);
}

.page-home .reason-card-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 170px;
  margin: 0 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(232, 214, 199, 0.72);
  background: rgba(255, 250, 245, 0.88);
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) brightness(1.02);
}

.page-home .reason-grid article:nth-child(4) .reason-card-visual,
.page-home .reason-grid article:nth-child(5) .reason-card-visual {
  object-position: center 18%;
}

.page-home .reason-grid span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  border: 1px solid rgba(182, 141, 93, 0.32);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.84);
  box-shadow: inset 0 0 0 7px rgba(255, 243, 238, 0.9);
  font-size: 18px;
}

.page-home .reason-grid h3 {
  position: relative;
  z-index: 1;
  font-size: 21px;
  line-height: 1.45;
}

.page-home .reason-grid p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.85;
}

.page-home .reason-grid article:nth-child(4),
.page-home .reason-grid article:nth-child(5) {
  transform: translateX(calc(50% + 11px));
}

@media (max-width: 980px) {
  .page-home .reason-grid.five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .reason-grid article:nth-child(4),
  .page-home .reason-grid article:nth-child(5) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .page-home .reason-grid.five {
    grid-template-columns: 1fr;
  }

  .page-home .reason-grid article {
    min-height: 0;
  }

  .page-home .reason-card-visual {
    height: 190px;
  }

  .page-home .reason-grid article:nth-child(4),
  .page-home .reason-grid article:nth-child(5) {
    transform: none;
  }
}

.page-home .voices-section {
  background:
    radial-gradient(circle at 14% 8%, rgba(244, 223, 212, 0.56), transparent 27%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 248, 242, 0.96));
}

.page-home .voice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
  gap: 22px;
}

.page-home .voice-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.page-home .voice-card::before {
  content: "★★★★★";
  position: absolute;
  right: 20px;
  top: 18px;
  color: #c39a61;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.page-home .voice-card img {
  border-radius: 14px;
}

@media (max-width: 760px) {
  .page-home .voice-grid {
    grid-template-columns: 1fr;
  }
}

.page-home #stores {
  background:
    radial-gradient(circle at 88% 8%, rgba(226, 192, 167, 0.44), transparent 30%),
    linear-gradient(180deg, #fff4ee 0%, #fbfaf7 100%);
}

.page-home .nav {
  font-size: 14.4px;
}

.page-home .store-region-group {
  max-width: 1240px;
  margin: 44px auto 0;
  scroll-margin-top: 120px;
}

.page-home .store-area-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  max-width: 1040px;
  margin: 28px auto 0;
}

.page-home .store-area-nav a {
  position: relative;
  display: grid;
  min-height: 84px;
  padding: 18px 12px;
  place-items: center;
  border: 1px solid rgba(158, 113, 77, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(250, 241, 233, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 14px 30px rgba(92, 61, 46, 0.08);
  color: #5a3b2d;
  overflow: hidden;
  text-decoration: none;
}

.page-home .store-area-nav a::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  border: 1px solid rgba(158, 113, 77, 0.18);
  opacity: 0.56;
  transform: scale(0.96);
  transition:
    opacity 180ms ease,
    transform 260ms cubic-bezier(0.2, 1.4, 0.36, 1);
  pointer-events: none;
}

.page-home .store-area-nav span {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  transition:
    color 180ms ease,
    transform 260ms cubic-bezier(0.2, 1.4, 0.36, 1);
}

.page-home .store-area-nav a:hover,
.page-home .store-area-nav a:focus-visible,
.page-home .store-area-nav a.is-active {
  background:
    linear-gradient(180deg, rgba(255, 255, 252, 1), rgba(247, 232, 219, 0.96));
  border-color: rgba(158, 113, 77, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 24px 50px rgba(92, 61, 46, 0.22);
}

.page-home .store-area-nav a:hover::after,
.page-home .store-area-nav a:focus-visible::after,
.page-home .store-area-nav a.is-active::after {
  opacity: 1;
  transform: scale(1);
}

.page-home .store-area-nav a:hover span,
.page-home .store-area-nav a:focus-visible span,
.page-home .store-area-nav a.is-active span {
  color: #70452e;
  transform: translateY(-3px) scale(1.13);
}

.page-home .store-selector-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  max-width: 1040px;
  margin: 24px auto 0;
  padding: 20px 24px;
  border: 1px solid rgba(182, 141, 93, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.86), rgba(255, 246, 239, 0.7));
  box-shadow: 0 18px 40px rgba(98, 62, 42, 0.08);
}

.page-home .store-selector-intro p {
  margin: 0;
  color: #756559;
  font-size: 14px;
  line-height: 1.9;
}

.page-home .store-all-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(154, 104, 64, 0.38);
  border-radius: 999px;
  background:
    linear-gradient(180deg, #fffdf8 0%, #f7eee6 100%);
  color: #6f4a37;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 22px rgba(127, 82, 52, 0.1);
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-home .store-all-toggle::after {
  content: ">";
  margin-left: 12px;
  transition: transform 220ms ease;
}

.page-home .store-all-toggle[aria-expanded="true"]::after {
  transform: rotate(90deg);
}

.page-home #stores.is-store-selector-ready .store-region-group {
  display: none;
}

.page-home #stores.is-store-selector-ready .store-region-group.is-active,
.page-home #stores.is-store-selector-ready.is-showing-all .store-region-group {
  display: block;
  animation: storeRegionReveal 360ms cubic-bezier(0.2, 0.8, 0.24, 1) both;
}

.page-home #stores.is-store-selector-ready.is-area-selected .store-selector-intro p {
  color: #8a786b;
}

@keyframes storeRegionReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-home .store-region-group > h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #5b3928;
  font-size: 34px;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.86);
}

.page-home .store-region-group > h3::before,
.page-home .store-region-group > h3::after {
  content: "";
  width: min(160px, 18vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154, 104, 64, 0.76), rgba(215, 184, 142, 0.42));
}

.page-home .store-region-group > h3::after {
  background: linear-gradient(90deg, rgba(215, 184, 142, 0.42), rgba(154, 104, 64, 0.76), transparent);
}

.page-home .store-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.page-home .store-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border-radius: 18px;
}

.page-home .store-photo {
  display: block;
  width: calc(100% + 32px);
  height: 150px;
  min-height: 150px;
  margin: -16px -16px 18px;
  border-radius: 18px 18px 0 0;
  object-fit: cover;
  object-position: center;
}

.page-home .store-card h3 {
  font-size: 22px;
}

.page-home .store-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.page-home .store-links a:not(.store-detail-link) {
  width: 100%;
  min-height: 38px;
  justify-content: center;
  border: 1px solid rgba(182, 141, 93, 0.26);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.78);
}

.page-home .store-card a.store-detail-link {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 42px;
  justify-content: center;
}

.page-home .store-links .store-booking-link {
  border-color: rgba(154, 104, 64, 0.36);
  background:
    linear-gradient(180deg, #fffdf8 0%, #f7eee6 100%);
  color: #704a35;
  font-weight: 800;
  text-shadow: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(127, 82, 52, 0.08);
}

.page-home .store-links .store-map-link {
  color: #6f4a37;
  font-weight: 700;
}

.page-home .store-note {
  max-width: 960px;
  margin: 34px auto 0;
  border-radius: 18px;
}

.page-home .bottom-cta {
  min-height: 260px;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.94), rgba(255, 243, 238, 0.72)),
    url("./assets/shared-brow-closeup.png") right center / auto 120% no-repeat;
}

@media (max-width: 1080px) {
  .page-home .feature-strip {
    width: 100%;
    margin-top: 0;
  }

  .page-home .menu-grid,
  .page-home .case-grid,
  .page-home .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .reason-grid.five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .store-area-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-home .menu-grid,
  .page-home .case-grid,
  .page-home .store-grid,
  .page-home .reason-grid.five {
    grid-template-columns: 1fr;
  }

  .page-home .menu-card {
    min-height: auto;
  }

  .page-home .menu-card h3,
  .page-home .menu-card p {
    min-height: 0;
  }

  .page-home .store-area-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .page-home .store-area-nav a {
    min-height: 72px;
  }

  .page-home .store-selector-intro {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .page-home .store-all-toggle {
    width: 100%;
  }

  .page-home .store-card {
    min-height: auto;
  }

  .page-home .store-region-group > h3::before,
  .page-home .store-region-group > h3::after {
    width: 44px;
  }
}

/* 2026-06 recruit/franchise LP polish */
.page-recruit .page-hero,
.page-franchise .page-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(244, 223, 212, 0.52), transparent 30%),
    linear-gradient(90deg, rgba(255, 253, 249, 0.98), rgba(255, 247, 241, 0.88));
}

.page-recruit .hero-portrait,
.page-franchise .hero-portrait {
  border-radius: 26px;
}

.page-recruit .hero-portrait.stacked > img,
.page-franchise .hero-portrait > img {
  border-radius: 26px;
}

.page-recruit .side-stack a,
.page-franchise .floating-card {
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.88);
}

.page-recruit .feature-strip,
.page-franchise .feature-strip {
  width: min(1180px, calc(100% - 8vw));
  margin: -28px auto 0;
  border-radius: 18px;
}

.page-recruit .feature-strip article,
.page-franchise .feature-strip article {
  min-height: 148px;
}

.page-recruit .section-heading.center,
.page-franchise .section-heading.center {
  max-width: 900px;
}

.page-recruit .wide-visual,
.page-franchise .support-visual {
  border-radius: 22px;
}

.page-recruit .step-flow span,
.page-recruit .timeline article,
.page-franchise .timeline article,
.page-franchise .check-grid article {
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.86);
  box-shadow: 0 16px 36px rgba(87, 58, 39, 0.08);
}

.page-recruit .reason-grid article,
.page-franchise .reason-grid article,
.page-franchise .support-tabs article,
.page-franchise .owner-panel {
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(255, 248, 242, 0.9));
  box-shadow: 0 24px 54px rgba(87, 58, 39, 0.1);
}

.page-recruit .reason-grid article,
.page-franchise .reason-grid article {
  text-align: center;
}

.page-recruit .reason-grid span,
.page-franchise .reason-grid span,
.page-recruit .timeline span,
.page-franchise .timeline span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border: 1px solid rgba(182, 141, 93, 0.32);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.86);
  box-shadow: inset 0 0 0 7px rgba(255, 243, 238, 0.9);
}

.page-recruit .voice-card {
  border-radius: 22px;
}

.page-recruit .voice-card::before {
  content: "STAFF";
  position: absolute;
  right: 20px;
  top: 18px;
  color: rgba(182, 141, 93, 0.7);
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.page-franchise .check-grid {
  max-width: 1120px;
  margin: 0 auto;
  gap: 16px;
}

.page-franchise .check-grid article {
  min-height: 132px;
  padding: 24px;
  color: #4f3b31;
  font-size: 15px;
}

.page-franchise .support-tabs {
  max-width: 1120px;
  margin: 0 auto;
  gap: 18px;
}

.page-franchise .support-tabs article {
  min-height: 190px;
}

.page-franchise .owner-panel {
  border-color: rgba(182, 141, 93, 0.22);
}

.page-franchise .owner-panel figure {
  border-radius: 18px;
}

.page-recruit .bottom-cta,
.page-franchise .bottom-cta {
  min-height: 260px;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.94), rgba(255, 243, 238, 0.72)),
    url("./assets/shared-brow-closeup.png") right center / auto 120% no-repeat;
}

.conversion-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: center;
  width: min(1120px, calc(100% - 10vw));
  margin: 72px auto;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(182, 141, 93, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 18%, rgba(225, 201, 169, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(255, 247, 241, 0.92));
  box-shadow: 0 26px 64px rgba(87, 58, 39, 0.1);
}

.conversion-panel h2 {
  font-size: clamp(26px, 3vw, 40px);
}

.conversion-actions {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.conversion-actions .button {
  min-width: min(100%, 260px);
}

.cta-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.bottom-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.mobile-conversion-bar {
  display: none;
}

@media (max-width: 1080px) {
  .page-recruit .feature-strip,
  .page-franchise .feature-strip {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  .conversion-panel {
    grid-template-columns: 1fr;
    width: min(92vw, 760px);
    margin-block: 54px;
  }
}

@media (max-width: 640px) {
  .page-recruit,
  .page-franchise {
    padding-bottom: 72px;
  }

  .conversion-panel {
    width: calc(100% - 32px);
    margin-block: 40px;
    padding: 26px 20px;
    border-radius: 20px;
  }

  .conversion-actions,
  .conversion-actions .button,
  .bottom-cta-actions,
  .bottom-cta-actions .button {
    width: 100%;
  }

  .mobile-conversion-bar {
    position: fixed;
    inset: auto 12px 12px;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(182, 141, 93, 0.26);
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.94);
    box-shadow: 0 18px 40px rgba(61, 49, 38, 0.18);
    backdrop-filter: blur(14px);
  }

  .mobile-conversion-bar a {
    display: grid;
    min-height: 46px;
    place-items: center;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .mobile-conversion-bar a:first-child {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
  }

  .mobile-conversion-bar a:last-child {
    border: 1px solid var(--line);
    color: var(--brown);
    background: rgba(255, 255, 255, 0.7);
  }
}

/* 2026-06 columns/store detail polish */
.page-columns .column-hero,
.page-store-detail .store-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-bottom: 1px solid rgba(182, 141, 93, 0.18);
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(92deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 247, 241, 0.94) 48%, rgba(242, 220, 207, 0.7) 100%);
}

.page-columns .column-hero::after,
.page-store-detail .store-hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(50vw, 720px);
  background: url("./assets/shared-brow-closeup.png") right center / cover no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.page-columns .column-hero > *,
.page-store-detail .store-hero > * {
  position: relative;
  z-index: 1;
}

.page-columns .column-hero {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.42fr);
  align-items: center;
  gap: 56px;
}

.page-store-detail .store-hero {
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.74fr);
  gap: 58px;
}

.page-columns .column-hero h1,
.page-store-detail .store-hero h1 {
  max-width: 760px;
  color: #4a3329;
  font-size: 54px;
  line-height: 1.34;
  letter-spacing: 0.055em;
}

.page-columns .column-hero .lead,
.page-store-detail .store-hero .lead {
  max-width: 660px;
  font-size: 16px;
  line-height: 2.08;
}

.page-columns .column-operation-card,
.page-store-detail .store-info-panel,
.page-store-detail .reservation-panel {
  border-color: rgba(182, 141, 93, 0.26);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 26px 58px rgba(87, 58, 39, 0.11);
}

.page-columns .column-operation-card {
  padding: 30px;
}

.page-columns .column-operation-card strong {
  display: block;
  margin-bottom: 12px;
  color: #5a4035;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.page-columns .column-toolbar {
  max-width: 1180px;
  margin-inline: auto;
  align-items: center;
}

.page-columns .category-chips a {
  min-height: 44px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.92);
}

.page-columns .column-grid {
  max-width: 1180px;
  margin-inline: auto;
  gap: 22px;
}

.page-columns .generated-column-grid {
  max-width: 1060px;
  grid-template-columns: 1fr;
}

.page-columns .column-card {
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 22px 54px rgba(87, 58, 39, 0.1);
}

.page-columns .generated-column-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.page-columns .column-card img {
  min-height: 235px;
  background: rgba(255, 243, 238, 0.72);
}

.page-columns .generated-column-card img {
  height: 100%;
  min-height: 360px;
  aspect-ratio: auto;
}

.page-columns .column-card div {
  padding: 28px;
}

.page-columns .generated-column-card > div {
  display: grid;
  align-content: center;
  padding: 38px;
}

.page-columns .generated-column-card h3 {
  min-height: 0;
  color: #4f392f;
  font-size: 25px;
  line-height: 1.55;
}

.page-columns .column-meta {
  color: #9b7450;
  line-height: 1.7;
}

.page-columns .column-card-actions {
  padding: 0;
}

.page-columns .column-card-actions a,
.page-columns .text-link {
  align-items: center;
  min-height: 34px;
  color: #7b573d;
  text-decoration: none;
}

.page-columns .column-seo-guide {
  padding-top: 64px;
  padding-bottom: 42px;
}

.page-columns .column-topic-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 34px auto 0;
}

.page-columns .column-topic-card {
  display: grid;
  gap: 12px;
  min-height: 218px;
  padding: 26px 22px;
  border: 1px solid rgba(182, 141, 93, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 243, 238, 0.9), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 247, 241, 0.92));
  color: #4f392f;
  text-decoration: none;
  box-shadow: 0 22px 48px rgba(87, 58, 39, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.page-columns .column-topic-card:hover {
  transform: translateY(-6px) scale(1.018);
  border-color: rgba(182, 141, 93, 0.46);
  background:
    radial-gradient(circle at 82% 12%, rgba(241, 216, 196, 0.9), transparent 38%),
    linear-gradient(180deg, rgba(255, 253, 249, 1), rgba(255, 242, 234, 0.96));
  box-shadow: 0 30px 64px rgba(87, 58, 39, 0.14);
}

.page-columns .column-topic-card span {
  color: #9b7450;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-columns .column-topic-card strong {
  align-self: start;
  color: #4f392f;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.page-columns .column-topic-card small {
  align-self: end;
  color: #9b7450;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.page-columns .store-link-grid,
.page-store-detail .store-link-grid {
  max-width: 1160px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.page-columns .store-link-grid a,
.page-store-detail .store-link-grid a {
  min-height: 66px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 247, 241, 0.9));
  box-shadow: 0 16px 34px rgba(87, 58, 39, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.page-columns .store-link-grid a:hover,
.page-store-detail .store-link-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(182, 141, 93, 0.46);
  box-shadow: 0 22px 42px rgba(87, 58, 39, 0.12);
}

.page-columns .operation-grid {
  max-width: 1060px;
  margin-inline: auto;
}

.page-columns .operation-grid article {
  min-height: 218px;
  border-radius: 8px;
  text-align: left;
}

.page-columns .operation-grid span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border: 1px solid rgba(182, 141, 93, 0.32);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: inset 0 0 0 7px rgba(255, 243, 238, 0.9);
}

.page-store-detail .store-hero-visual {
  transform: translateY(4px);
}

.page-store-detail .store-hero-visual img {
  min-height: 430px;
  object-position: center;
}

.page-store-detail .hero-badges span {
  border-color: rgba(182, 141, 93, 0.28);
  background: rgba(255, 253, 249, 0.84);
}

.page-store-detail .store-info-panel {
  padding: 34px;
}

.page-store-detail .store-info-panel dl > div {
  grid-template-columns: 118px minmax(0, 1fr);
}

.page-store-detail .reason-grid {
  max-width: 1080px;
  margin-inline: auto;
  gap: 18px;
}

.page-store-detail .reason-grid article {
  min-height: 220px;
}

.page-store-detail .reservation-panel {
  max-width: 1120px;
  padding: 34px;
}

.page-store-detail .reservation-panel h3 {
  color: #4f392f;
}

.page-store-detail .reservation-panel .store-action-row {
  justify-content: flex-end;
  margin-top: 0;
}

.page-store-detail .store-local-copy,
.page-store-detail .store-service-detail {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 253, 249, 0.92), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 248, 242, 0.88));
}

.page-store-detail .store-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin-inline: auto;
}

.page-store-detail .store-detail-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-store-detail .store-detail-grid article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(182, 141, 93, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 247, 241, 0.92));
  box-shadow: 0 24px 54px rgba(87, 58, 39, 0.09);
}

.page-store-detail .store-detail-grid.compact article {
  min-height: 282px;
}

.page-store-detail .store-detail-grid h3 {
  margin: 10px 0 16px;
  color: #4f392f;
  font-size: 24px;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.page-store-detail .store-detail-grid.compact h3 {
  font-size: 20px;
}

.page-store-detail .store-detail-grid p:not(.eyebrow) {
  color: #6f625a;
  font-size: 15px;
  line-height: 2;
}

.page-store-detail .store-intent-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.page-store-detail .store-intent-list li {
  position: relative;
  min-height: 78px;
  padding: 20px 22px 20px 54px;
  border: 1px solid rgba(182, 141, 93, 0.24);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.92);
  color: #5a4035;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  box-shadow: 0 18px 40px rgba(87, 58, 39, 0.08);
}

.page-store-detail .store-intent-list li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 27px;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(182, 141, 93, 0.5);
  border-radius: 50%;
  background: linear-gradient(180deg, #f3d9c5, #b68458);
  box-shadow: 0 0 0 6px rgba(255, 243, 238, 0.9);
}

.page-store-detail .store-internal-links .store-link-grid,
.page-column-article .public-column-related .store-link-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-column-article .public-column-related {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid rgba(182, 141, 93, 0.2);
}

.page-column-article .public-column-related h2 {
  margin: 8px 0 22px;
  color: #4f392f;
  font-size: 28px;
  line-height: 1.5;
}

.page-column-article .public-column-takeaways {
  margin: 28px 0 30px;
  padding: 28px;
  border: 1px solid rgba(182, 141, 93, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 243, 238, 0.84), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(255, 247, 241, 0.88));
  box-shadow: 0 18px 42px rgba(87, 58, 39, 0.08);
}

.page-column-article .public-column-takeaways h2 {
  margin: 8px 0 18px;
  color: #4f392f;
  font-size: 25px;
  line-height: 1.5;
}

.page-column-article .public-column-takeaways ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-column-article .public-column-takeaways li {
  position: relative;
  padding-left: 26px;
  color: #6f625a;
  font-size: 15px;
  line-height: 1.8;
}

.page-column-article .public-column-takeaways li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(182, 141, 93, 0.44);
  border-radius: 50%;
  background: linear-gradient(180deg, #f3d9c5, #b68458);
}

.page-column-article .column-theme-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 24px;
}

.page-column-article .column-theme-chips a {
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid rgba(182, 141, 93, 0.26);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.92);
  color: #7b573d;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.page-column-article .column-theme-chips a:hover {
  transform: translateY(-3px);
  background: #fff7f0;
  color: #5a4035;
  box-shadow: 0 14px 28px rgba(87, 58, 39, 0.1);
}

/* 2026-06 home latest columns */
.column-teaser {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.88), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(255, 243, 238, 0.72));
}

.column-teaser::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: min(44vw, 620px);
  height: 100%;
  background: url("./assets/shared-brow-closeup.png") right center / cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.column-teaser > * {
  position: relative;
  z-index: 1;
}

.home-column-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 940px;
  margin: 0 auto 28px;
}

.home-column-note span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(182, 141, 93, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.84);
  color: #7b573d;
  box-shadow: 0 12px 28px rgba(87, 58, 39, 0.07);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
}

.column-teaser .featured-column-grid {
  max-width: 1120px;
  margin-inline: auto;
  grid-template-columns: 1fr;
}

.column-teaser .generated-column-card {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: stretch;
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 26px 58px rgba(87, 58, 39, 0.11);
}

.column-teaser .generated-column-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  aspect-ratio: auto;
  object-fit: cover;
}

.column-teaser .generated-column-card > div {
  display: grid;
  align-content: center;
  padding: 42px;
}

.column-teaser .generated-column-card h3 {
  min-height: 0;
  color: #4f392f;
  font-size: 27px;
  line-height: 1.52;
}

.column-teaser .column-card-actions a {
  min-height: 36px;
  color: #7b573d;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .page-columns .column-hero,
  .page-store-detail .store-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .page-columns .column-hero h1,
  .page-store-detail .store-hero h1 {
    font-size: 42px;
  }

  .page-store-detail .store-hero-visual img {
    min-height: 360px;
  }

  .page-columns .store-link-grid,
  .page-store-detail .store-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-columns .column-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-store-detail .reservation-panel {
    grid-template-columns: 1fr;
  }

  .page-store-detail .reservation-panel .store-action-row {
    justify-content: flex-start;
  }

  .page-store-detail .store-detail-grid,
  .page-store-detail .store-detail-grid.compact,
  .page-store-detail .store-intent-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-store-detail .store-internal-links .store-link-grid,
  .page-column-article .public-column-related .store-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-column-article .public-column-takeaways ul {
    grid-template-columns: 1fr;
  }

  .column-teaser .generated-column-card {
    grid-template-columns: 1fr;
  }

  .column-teaser .generated-column-card img {
    height: auto;
    min-height: 300px;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .page-columns .column-hero,
  .page-store-detail .store-hero {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .page-columns .column-hero::after,
  .page-store-detail .store-hero::after {
    width: 100%;
    opacity: 0.09;
  }

  .page-columns .column-hero h1,
  .page-store-detail .store-hero h1 {
    font-size: 32px;
    line-height: 1.48;
  }

  .page-columns .column-hero .lead,
  .page-store-detail .store-hero .lead {
    font-size: 14px;
    line-height: 1.95;
  }

  .page-columns .column-operation-card,
  .page-store-detail .store-info-panel,
  .page-store-detail .reservation-panel {
    padding: 24px;
  }

  .page-columns .column-toolbar {
    grid-template-columns: 1fr;
  }

  .page-columns .category-chips {
    justify-content: flex-start;
  }

  .page-columns .category-chips a {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .page-columns .column-topic-grid {
    grid-template-columns: 1fr;
  }

  .page-columns .column-topic-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .page-columns .column-card img {
    min-height: 208px;
  }

  .page-columns .generated-column-card {
    display: block;
  }

  .page-columns .generated-column-card img {
    height: auto;
    min-height: 208px;
    aspect-ratio: 16 / 10;
  }

  .page-columns .column-card div {
    padding: 22px;
  }

  .page-columns .generated-column-card > div {
    display: block;
    padding: 22px;
  }

  .page-columns .generated-column-card h3 {
    font-size: 21px;
  }

  .page-column-article .public-column-takeaways {
    padding: 24px 20px;
  }

  .page-column-article .public-column-takeaways h2 {
    font-size: 22px;
  }

  .page-columns .store-link-grid,
  .page-store-detail .store-link-grid {
    grid-template-columns: 1fr;
  }

  .page-store-detail .store-hero-visual img {
    min-height: 280px;
  }

  .page-store-detail .store-info-panel dl > div {
    grid-template-columns: 1fr;
  }

  .page-store-detail .store-detail-grid,
  .page-store-detail .store-detail-grid.compact,
  .page-store-detail .store-intent-list {
    grid-template-columns: 1fr;
  }

  .page-store-detail .store-internal-links .store-link-grid,
  .page-column-article .public-column-related .store-link-grid {
    grid-template-columns: 1fr;
  }

  .page-store-detail .store-detail-grid article,
  .page-store-detail .store-detail-grid.compact article {
    min-height: auto;
    padding: 24px;
  }

  .page-store-detail .store-detail-grid h3,
  .page-store-detail .store-detail-grid.compact h3 {
    font-size: 20px;
  }

  .page-store-detail .store-intent-list li {
    min-height: auto;
    padding: 18px 18px 18px 50px;
    font-size: 14px;
  }

  .home-column-note {
    justify-content: flex-start;
  }

  .home-column-note span {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .column-teaser .generated-column-card img {
    min-height: 220px;
  }

  .column-teaser .generated-column-card > div {
    display: block;
    padding: 22px;
  }

  .column-teaser .generated-column-card h3 {
    font-size: 21px;
  }
}

@media (max-width: 640px) {
  .page-contact .site-header {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .page-contact .nav {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-width: 0;
    overflow: visible;
    gap: 8px;
  }

  .page-contact .nav a {
    flex: 0 1 auto;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  body.page-contact .hero-copy,
  body.page-contact .lead {
    overflow-wrap: anywhere !important;
    word-break: normal;
  }
}

/* 2026-06 final device QA: keep mobile headers elegant and fully visible */
@media (max-width: 640px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 14px 20px 16px;
    overflow: visible;
  }

  .brand {
    width: 156px;
    height: 78px;
    background-position: center;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: min(100%, 350px);
    min-width: 0;
    max-width: 100%;
    gap: 8px 14px;
    overflow: visible;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-align: center;
  }

  .nav a {
    flex: 0 0 auto;
    padding: 2px 0 5px;
    white-space: nowrap;
  }

  .header-cta {
    width: min(100%, 348px);
    min-height: 54px;
    padding-inline: 22px;
    font-size: 17px;
  }

  :where(section[id], main[id], .store-region-group[id]) {
    scroll-margin-top: 274px;
  }
}

@media (min-width: 641px) {
  :where(section[id], main[id], .store-region-group[id]) {
    scroll-margin-top: 166px;
  }
}

@media (min-width: 1081px) {
  .site-header {
    grid-template-columns: 220px minmax(0, 1fr) auto;
    gap: 28px;
  }

  .brand {
    width: 220px;
  }

  .nav {
    flex-wrap: nowrap;
    gap: 14px;
    padding-right: 8px;
    font-size: 15px;
    line-height: 1;
  }

  .nav a {
    white-space: nowrap;
  }

  .header-cta {
    min-height: 62px;
    padding-inline: 32px;
    font-size: 19px;
  }
}

/* 2026-06 recruit/franchise premium finish */
.page-recruit,
.page-franchise {
  background:
    radial-gradient(circle at 8% 18%, rgba(196, 154, 98, 0.12), transparent 28%),
    radial-gradient(circle at 92% 32%, rgba(244, 223, 212, 0.5), transparent 30%),
    linear-gradient(180deg, #fffdf9 0%, #fbf4ee 48%, #fffdf9 100%);
}

.page-recruit .site-header,
.page-franchise .site-header {
  border-bottom-color: rgba(182, 141, 93, 0.18);
  background: rgba(255, 253, 249, 0.88);
  backdrop-filter: blur(18px);
}

.page-recruit .page-hero,
.page-franchise .page-hero {
  isolation: isolate;
  min-height: min(820px, calc(100vh - 64px));
  padding-top: clamp(72px, 8vw, 108px);
  padding-bottom: 74px;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 250, 245, 0.94) 43%, rgba(251, 231, 220, 0.68) 100%);
}

.page-recruit .page-hero::before,
.page-franchise .page-hero::before {
  content: "";
  position: absolute;
  inset: 7% -12% auto auto;
  z-index: -1;
  width: min(620px, 52vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 154, 98, 0.2), transparent 68%);
}

.page-recruit .page-hero::after,
.page-franchise .page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: -1;
  height: 132px;
  background: linear-gradient(180deg, transparent, rgba(248, 238, 230, 0.72));
}

.page-recruit .hero-copy,
.page-franchise .hero-copy {
  position: relative;
  padding: clamp(10px, 1.2vw, 18px) 0;
}

.page-recruit .hero-copy::before,
.page-franchise .hero-copy::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 18px;
  width: 1px;
  height: 84%;
  background: linear-gradient(180deg, transparent, rgba(182, 141, 93, 0.44), transparent);
}

.page-recruit .hero-copy .eyebrow,
.page-franchise .hero-copy .eyebrow {
  color: var(--gold-dark);
  font-size: 18px;
}

.page-recruit .hero-copy h1,
.page-franchise .hero-copy h1 {
  max-width: 720px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.24;
  letter-spacing: 0.055em;
}

.page-recruit .hero-copy .lead,
.page-franchise .hero-copy .lead {
  max-width: 640px;
  font-size: clamp(17px, 1.35vw, 22px);
}

.page-recruit .hero-portrait,
.page-franchise .hero-portrait {
  min-height: clamp(520px, 50vw, 690px);
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(87, 58, 39, 0.16);
  transform: translateZ(0);
}

.page-recruit .hero-portrait img,
.page-franchise .hero-portrait img {
  filter: saturate(0.9) contrast(0.98) brightness(1.02);
}

.page-recruit .hero-portrait.stacked > img,
.page-franchise .hero-portrait > img {
  border-radius: 34px;
}

.page-recruit .hero-portrait::before,
.page-franchise .hero-portrait::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 24px;
}

.page-recruit .hero-seal,
.page-franchise .hero-seal {
  right: 28px;
  bottom: 28px;
  width: 164px;
  height: 164px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.95), transparent 35%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(234, 213, 190, 0.94));
}

.page-recruit .side-stack {
  top: 44px;
  right: -12px;
  width: min(300px, 46%);
  transform: none;
}

.page-recruit .side-stack a,
.page-franchise .floating-card {
  z-index: 3;
  padding: 22px 24px;
  border: 1px solid rgba(182, 141, 93, 0.18);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 22px 52px rgba(87, 58, 39, 0.14);
  backdrop-filter: blur(12px);
}

.page-recruit .side-stack a strong,
.page-franchise .floating-card strong {
  color: var(--brown);
  font-size: 16px;
}

.page-recruit .feature-strip,
.page-franchise .feature-strip {
  position: relative;
  z-index: 4;
  overflow: hidden;
  width: min(1180px, calc(100% - 12vw));
  margin-top: -46px;
  border: 1px solid rgba(182, 141, 93, 0.18);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 28px 74px rgba(87, 58, 39, 0.12);
}

.page-recruit .feature-strip::before,
.page-franchise .feature-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(196, 154, 98, 0.08), transparent 18%, transparent 82%, rgba(244, 223, 212, 0.3));
}

.page-recruit .feature-strip article,
.page-franchise .feature-strip article {
  position: relative;
  min-height: 164px;
  padding: 24px 16px;
  border-right: 1px solid rgba(182, 141, 93, 0.14);
  background: transparent;
  box-shadow: none;
}

.page-recruit .feature-strip article:last-child,
.page-franchise .feature-strip article:last-child {
  border-right: 0;
}

.page-recruit .feature-strip span,
.page-franchise .feature-strip span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: rgba(255, 249, 244, 0.9);
  box-shadow: inset 0 0 0 1px rgba(182, 141, 93, 0.2);
}

.page-recruit .section,
.page-franchise .section {
  padding-top: clamp(92px, 8vw, 132px);
  padding-bottom: clamp(92px, 8vw, 132px);
}

.page-recruit .soft-band,
.page-franchise .soft-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 246, 241, 0.72), rgba(248, 238, 230, 0.78));
}

.page-recruit .soft-band::before,
.page-franchise .soft-band::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -110px;
  width: 460px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 154, 98, 0.14), transparent 70%);
}

.page-franchise .check-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.page-franchise .check-grid article,
.page-recruit .step-flow span,
.page-recruit .timeline article,
.page-franchise .timeline article {
  position: relative;
  min-height: 172px;
  padding: 30px 20px;
  border: 1px solid rgba(182, 141, 93, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 247, 241, 0.92));
  box-shadow: 0 24px 58px rgba(87, 58, 39, 0.1);
}

.page-franchise .check-grid article::before {
  content: "";
  width: 34px;
  height: 2px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, transparent, rgba(182, 141, 93, 0.72), transparent);
}

.page-recruit .reason-grid.five,
.page-franchise .reason-grid.five,
.page-franchise .support-tabs {
  gap: 22px;
}

.page-recruit .reason-grid article,
.page-franchise .reason-grid article,
.page-franchise .support-tabs article {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  padding: 34px 24px;
  border: 1px solid rgba(182, 141, 93, 0.18);
  border-radius: 26px;
}

.page-recruit .reason-grid article::after,
.page-franchise .reason-grid article::after,
.page-franchise .support-tabs article::after {
  content: "";
  position: absolute;
  inset: auto -30px -42px auto;
  width: 140px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 154, 98, 0.14), transparent 68%);
}

.page-franchise .support-visual,
.page-recruit .wide-visual {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 30px 74px rgba(87, 58, 39, 0.14);
}

.page-franchise .support-visual {
  max-width: 1120px;
  aspect-ratio: 16 / 7;
}

.page-recruit .wide-visual {
  aspect-ratio: 16 / 7.4;
}

.page-franchise .support-visual img,
.page-recruit .wide-visual img {
  filter: saturate(0.92) contrast(0.98) brightness(1.03);
  transform: scale(1.02);
}

.page-franchise .conversion-panel,
.page-recruit .conversion-panel {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 10vw));
  margin-block: 94px;
  border-radius: 34px;
  box-shadow: 0 34px 86px rgba(87, 58, 39, 0.14);
}

.page-franchise .conversion-panel::after,
.page-recruit .conversion-panel::after {
  content: none;
}

.page-franchise .owner-section,
.page-recruit .voices-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(196, 154, 98, 0.12), transparent 28%),
    linear-gradient(180deg, var(--paper), var(--ivory));
}

.page-franchise .owner-panel {
  width: min(1160px, 100%);
  margin-inline: auto;
  padding: clamp(30px, 4vw, 56px);
  gap: clamp(30px, 4vw, 56px);
  border-radius: 32px;
}

.page-franchise .owner-panel figure {
  box-shadow: 0 26px 64px rgba(87, 58, 39, 0.12);
}

.page-recruit .voice-grid {
  width: min(1160px, 100%);
  margin-inline: auto;
  gap: 24px;
}

.page-recruit .voice-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(182, 141, 93, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 247, 241, 0.9));
  box-shadow: 0 26px 62px rgba(87, 58, 39, 0.1);
}

.page-recruit .voice-card.featured {
  min-height: 100%;
}

.page-recruit .voice-card img {
  border-radius: 20px;
  filter: saturate(0.92) contrast(0.98);
}

.page-recruit .voice-card h3 {
  font-size: clamp(20px, 1.7vw, 27px);
}

.page-recruit .bottom-cta,
.page-franchise .bottom-cta {
  min-height: 330px;
  border-top: 1px solid rgba(182, 141, 93, 0.16);
  border-bottom: 1px solid rgba(182, 141, 93, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.96), rgba(255, 246, 241, 0.82) 48%, rgba(255, 246, 241, 0.58)),
    url("./assets/shared-brow-closeup.png") right center / auto 138% no-repeat;
}

.page-recruit .bottom-cta p,
.page-franchise .bottom-cta p {
  font-size: clamp(28px, 3.4vw, 48px);
}

@media (max-width: 1080px) {
  .page-recruit .page-hero,
  .page-franchise .page-hero {
    min-height: auto;
    padding-top: 54px;
  }

  .page-recruit .hero-copy::before,
  .page-franchise .hero-copy::before {
    display: none;
  }

  .page-recruit .feature-strip,
  .page-franchise .feature-strip {
    width: min(92vw, 760px);
    margin-top: 32px;
    border-radius: 22px;
  }

  .page-franchise .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-franchise .conversion-panel::after,
  .page-recruit .conversion-panel::after {
    content: none;
  }
}

@media (max-width: 640px) {
  .page-recruit .page-hero,
  .page-franchise .page-hero {
    padding: 34px 20px 40px;
  }

  .page-recruit .hero-copy h1,
  .page-franchise .hero-copy h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .page-recruit .hero-portrait,
  .page-franchise .hero-portrait {
    min-height: 360px;
    border-radius: 24px;
  }

  .page-recruit .hero-portrait.stacked > img,
  .page-franchise .hero-portrait > img,
  .page-recruit .hero-portrait::before,
  .page-franchise .hero-portrait::before {
    border-radius: 24px;
  }

  .page-recruit .side-stack {
    position: absolute;
    inset: 16px 16px auto auto;
    z-index: 3;
    width: min(204px, 58%);
    margin-top: 0;
    gap: 8px;
  }

  .page-recruit .side-stack a {
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 12px;
  }

  .page-recruit .side-stack a strong {
    font-size: 13px;
  }

  .page-recruit .side-stack a span {
    font-size: 11px;
  }

  .page-recruit .hero-seal,
  .page-franchise .hero-seal {
    width: 118px;
    height: 118px;
  }

  .page-recruit .hero-seal strong,
  .page-franchise .hero-seal strong {
    font-size: 30px;
  }

  .page-recruit .feature-strip,
  .page-franchise .feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-franchise .check-grid {
    grid-template-columns: 1fr;
  }

  .page-recruit .feature-strip article,
  .page-franchise .feature-strip article {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid rgba(182, 141, 93, 0.14);
  }

  .page-recruit .feature-strip article:nth-child(odd),
  .page-franchise .feature-strip article:nth-child(odd) {
    border-right: 1px solid rgba(182, 141, 93, 0.14);
  }

  .page-recruit .feature-strip article:last-child,
  .page-franchise .feature-strip article:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .page-recruit .section,
  .page-franchise .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .page-franchise .support-visual,
  .page-recruit .wide-visual {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .page-franchise .conversion-panel,
  .page-recruit .conversion-panel {
    width: calc(100% - 32px);
    margin-block: 54px;
    border-radius: 24px;
  }

  .page-franchise .conversion-panel::after,
  .page-recruit .conversion-panel::after {
    display: none;
  }

  .page-franchise .owner-panel,
  .page-recruit .voice-card {
    border-radius: 24px;
  }
}

/* Final mobile QA guard: keep launch pages inside narrow viewports. */
@media (max-width: 640px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 12px 20px 16px;
    overflow: hidden;
  }

  .brand {
    width: min(156px, 62vw);
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    width: 100%;
    justify-content: center;
    gap: 6px 10px;
    overflow: visible;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
  }

  .nav a {
    flex: 0 1 auto;
    padding: 4px 0;
    white-space: normal;
  }

  .header-cta {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .page-hero,
  .page-recruit .page-hero,
  .page-franchise .page-hero {
    display: block;
    width: 100%;
    padding: 44px 20px 42px;
    overflow: hidden;
  }

  .hero-copy,
  .lead,
  .micro-copy {
    max-width: 100%;
    min-width: 0;
  }

  h1,
  .page-home h1,
  .page-recruit .hero-copy h1,
  .page-franchise .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.2vw, 44px);
    line-height: 1.34;
    letter-spacing: 0.01em;
  }

  .lead,
  .hero-copy .lead,
  .page-recruit .hero-copy .lead,
  .page-franchise .hero-copy .lead {
    max-width: min(100%, 24em);
    font-size: 16px;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: auto;
  }

  .page-recruit .hero-copy .lead {
    max-width: min(100%, 21em);
  }

  .hero-badges,
  .page-recruit .hero-badges,
  .page-franchise .hero-badges {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-badges span {
    min-height: 58px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-portrait,
  .hero-portrait.stacked,
  .page-recruit .hero-portrait,
  .page-franchise .hero-portrait {
    width: 100%;
    min-height: 330px;
    margin-top: 34px;
    overflow: hidden;
  }

  .side-stack,
  .page-recruit .side-stack {
    display: none;
  }

  .hero-seal,
  .page-recruit .hero-seal,
  .page-franchise .hero-seal {
    right: -18px;
    bottom: 20px;
    width: 104px;
    height: 104px;
  }

  .hero-seal span {
    font-size: 12px;
  }

  .hero-seal strong,
  .page-recruit .hero-seal strong,
  .page-franchise .hero-seal strong {
    font-size: 26px;
  }

  .feature-strip,
  .page-recruit .feature-strip,
  .page-franchise .feature-strip {
    width: auto;
    grid-template-columns: 1fr;
    margin: 0 20px;
  }

  .feature-strip article,
  .page-recruit .feature-strip article,
  .page-franchise .feature-strip article,
  .page-recruit .feature-strip article:nth-child(odd),
  .page-franchise .feature-strip article:nth-child(odd),
  .page-recruit .feature-strip article:last-child,
  .page-franchise .feature-strip article:last-child {
    grid-column: auto;
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid rgba(182, 141, 93, 0.2);
  }

  .bottom-sticky {
    left: 10px;
    right: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .bottom-sticky a {
    min-width: 0;
    padding-inline: 10px;
    font-size: 13px;
    letter-spacing: 0.02em;
  }

  .footer nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .footer nav a {
    width: 100%;
    min-height: 52px;
    font-size: 20px;
  }
}
