/* ============================================================
   LUMIÈRE HAIR SALON - Main Stylesheet
   ============================================================ */

/* ----------------------------------------------------------
   1. CSS Custom Properties
   ---------------------------------------------------------- */
:root {
  /* Colors - Pink Beige × Gold × White */
  --color-primary: #e8d5c8;
  --color-primary-dark: #d4bfb0;
  --color-primary-light: #f0e2d8;
  --color-primary-pale: #faf5f0;
  --color-accent: #c9a96e;
  --color-accent-dark: #b0923d;
  --color-accent-light: #d9c08e;
  --color-dark: #2a2320;
  --color-dark-light: #3d3530;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-white: #ffffff;
  --color-bg: #ffffff;
  --color-bg-alt: #faf5f0;
  --color-border: #e8ddd5;
  --color-border-light: #f0e8e0;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  --space-5xl: 10rem;

  /* Sizes */
  --banner-height: 34px;
  --header-height: 100px;
  --container-max: 1100px;
  --container-wide: 1280px;
  --container-narrow: 800px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-slower: 0.8s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 24px;
  --radius-full: 50%;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--banner-height) + var(--header-height) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: calc(var(--banner-height) + var(--header-height));
}

body.is-nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover {
  opacity: 0.8;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-text);
}

/* ----------------------------------------------------------
   3. Utility Classes
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--wide {
  max-width: var(--container-wide);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--alt {
  background-color: var(--color-bg-alt);
}

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

.section__heading {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__heading-en {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.section__heading-jp {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  font-weight: 400;
}

.section__heading-line {
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--color-accent);
  margin: 1rem auto 0;
}

/* Text align */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/* Visually hidden */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----------------------------------------------------------
   4. Buttons
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1.4;
}

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

.btn--gold:hover {
  background-color: var(--color-accent-dark);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-text);
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn--outline:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  opacity: 1;
  transform: translateY(-2px);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.btn--outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-text);
  opacity: 1;
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-accent);
  border: 1px solid var(--color-white);
}

.btn--white:hover {
  background-color: transparent;
  color: var(--color-white);
  opacity: 1;
}

.btn--lg {
  padding: 1.2rem 3rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

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

.btn__arrow {
  transition: transform var(--transition-fast);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ----------------------------------------------------------
   5. Sample Banner
   ---------------------------------------------------------- */
.sample-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  padding: 6px 12px;
}

.sample-banner__text {
  font-size: 0.7rem;
  color: var(--color-white);
  text-align: center;
  padding: 0 1rem;
  line-height: 1.5;
}

.sample-banner__text strong {
  font-weight: 700;
}

.sample-banner__link {
  color: var(--color-white);
  text-decoration: underline;
  font-weight: 700;
}

.sample-banner__link:hover {
  opacity: 0.8;
}

/* ----------------------------------------------------------
   6. Header
   ---------------------------------------------------------- */
.header {
  position: fixed;
  top: var(--banner-height);
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--color-border-light);
  z-index: 1000;
  transition: box-shadow var(--transition-base), background-color var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header.is-scrolled {
  box-shadow: var(--shadow-sm);
  background-color: rgba(255, 255, 255, 0.98);
}

.header__inner {
  width: 100%;
  max-width: var(--container-wide);
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.header__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.header__logo:hover {
  opacity: 0.7;
}

.header__logo-main {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-text);
  line-height: 1;
}

.header__logo-sub {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--color-text-muted);
  margin-top: 2px;
  font-weight: 400;
}

/* Navigation */
.header__nav {
  display: flex;
  align-items: center;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
  white-space: nowrap;
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 2rem);
  height: 1px;
  background-color: var(--color-accent);
  transition: transform var(--transition-base);
}

.header__nav-link:hover::after,
.header__nav-link.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

.header__nav-link:hover {
  color: var(--color-accent);
  opacity: 1;
}

.header__nav-link.is-active {
  color: var(--color-accent);
}

.header__nav-link--cta {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 0.4rem 1.2rem;
  margin-left: 0.5rem;
  font-size: 0.78rem;
}

.header__nav-link--cta::after {
  display: none;
}

.header__nav-link--cta:hover {
  background-color: var(--color-accent-dark);
  color: var(--color-white);
  opacity: 1;
}

/* Hamburger */
.header__hamburger {
  display: none;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  z-index: 100;
}

.header__hamburger-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-text);
  transition: all var(--transition-base);
  border-radius: 1px;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Nav Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 998;
}

.nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ----------------------------------------------------------
   7. Hero (Top page)
   ---------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(-1 * (var(--banner-height) + var(--header-height)));
  padding-top: calc(var(--banner-height) + var(--header-height));
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(42, 35, 32, 0.5) 0%,
    rgba(42, 35, 32, 0.6) 50%,
    rgba(42, 35, 32, 0.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 0 1.5rem;
}

.hero__logo {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  line-height: 1;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero__logo-sub {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.5em;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero__catch {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero__sub {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  opacity: 0.85;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero__cta {
  display: inline-flex;
}

/* ----------------------------------------------------------
   8. Page Hero (Subpages)
   ---------------------------------------------------------- */
/* page-hero styles moved to section 41 below */

/* ----------------------------------------------------------
   9. Stylists Section (Top)
   ---------------------------------------------------------- */
.stylists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

.stylist-card {
  text-align: center;
}

.stylist-card__image {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto var(--space-md);
  border: 3px solid var(--color-primary);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.stylist-card:hover .stylist-card__image {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.stylist-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stylist-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin-bottom: 0.3rem;
}

.stylist-card__role {
  font-size: 0.8rem;
  color: var(--color-accent);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.stylist-card__comment {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ----------------------------------------------------------
   10. Services & Pricing Section (Top)
   ---------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition-base), transform var(--transition-fast);
}

.pricing-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.pricing-item__name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
}

.pricing-item__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}

/* Pricing simple list for top page */
.pricing-list {
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.pricing-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.pricing-list__item:last-child {
  border-bottom: none;
}

.pricing-list__name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
}

.pricing-list__price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.03em;
}

/* ----------------------------------------------------------
   11. Gallery Section (Top)
   ---------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 3 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(42, 35, 32, 0.7), transparent);
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-item__overlay {
  transform: translateY(0);
}

/* Gallery page full grid */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.gallery-full-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.gallery-full-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-full-item:hover img {
  transform: scale(1.08);
}

.gallery-full-item__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(42, 35, 32, 0.6) 0%, transparent 50%);
  color: var(--color-white);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-full-item:hover .gallery-full-item__overlay {
  opacity: 1;
}

.gallery-full-item__info {
  width: 100%;
}

.gallery-full-item__name {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.gallery-full-item__tag {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ----------------------------------------------------------
   12. Access Section (Top)
   ---------------------------------------------------------- */
.access-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.access-map {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.access-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.access-map__note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
  text-align: center;
}

.access-info {
  padding: var(--space-lg) 0;
}

.access-info__item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.access-info__item:last-child {
  border-bottom: none;
}

.access-info__label {
  min-width: 80px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
}

.access-info__value {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* ----------------------------------------------------------
   13. CTA Section
   ---------------------------------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: var(--space-4xl) 0;
  text-align: center;
}

.cta-section__heading {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.cta-section__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.cta-section__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section__phone {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.cta-section__phone-icon {
  font-size: 1.4rem;
  margin-right: 0.3rem;
}

.cta-section__hours {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

/* ----------------------------------------------------------
   14. Footer
   ---------------------------------------------------------- */
.footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-4xl) 0 var(--space-lg);
}

.footer__inner {
  text-align: center;
}

.footer__logo {
  margin-bottom: var(--space-xl);
}

.footer__logo-main {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-white);
  display: block;
  line-height: 1.2;
}

.footer__logo-sub {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-top: 4px;
}

.footer__contact {
  margin-bottom: var(--space-xl);
}

.footer__contact-item {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer__contact-phone {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.1em;
}

.footer__sns {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  transition: all var(--transition-base);
}

.footer__sns-link:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  opacity: 1;
}

.footer__sns-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.05em;
}

/* ----------------------------------------------------------
   15. Mobile Fixed Bar
   ---------------------------------------------------------- */
.mobile-fixed-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background-color: var(--color-white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-fixed-bar__inner {
  display: flex;
}

.mobile-fixed-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.8rem 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background-color var(--transition-fast);
  white-space: nowrap;
}

.mobile-fixed-bar__btn--phone {
  background-color: var(--color-primary);
  color: var(--color-text);
}

.mobile-fixed-bar__btn--phone:hover {
  background-color: var(--color-primary-dark);
  opacity: 1;
}

.mobile-fixed-bar__btn--reserve {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.mobile-fixed-bar__btn--reserve:hover {
  background-color: var(--color-accent-dark);
  opacity: 1;
}

.mobile-fixed-bar__icon {
  font-size: 1rem;
}

/* ----------------------------------------------------------
   16. Service Page - Pricing Categories
   ---------------------------------------------------------- */
.pricing-category {
  margin-bottom: var(--space-3xl);
}

.pricing-category:last-child {
  margin-bottom: 0;
}

.pricing-category__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

.pricing-category__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-category__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.pricing-category__item:last-child {
  border-bottom: none;
}

.pricing-category__name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
}

.pricing-category__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.pricing-note {
  background-color: var(--color-bg-alt);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-2xl);
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.pricing-note::before {
  content: '※';
  color: var(--color-accent);
  font-weight: 700;
  margin-right: 0.3rem;
}

/* ----------------------------------------------------------
   17. Stylists Page - Detail Layout
   ---------------------------------------------------------- */
.stylist-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.stylist-detail:last-child {
  border-bottom: none;
}

.stylist-detail:nth-child(even) {
  direction: rtl;
}

.stylist-detail:nth-child(even) > * {
  direction: ltr;
}

.stylist-detail__image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-md);
}

.stylist-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stylist-detail__info {
  padding: var(--space-lg) 0;
}

.stylist-detail__name-en {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-text);
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.stylist-detail__name-jp {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.1em;
}

.stylist-detail__role {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius-xl);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
}

.stylist-detail__meta {
  margin-bottom: var(--space-lg);
}

.stylist-detail__meta-item {
  display: flex;
  gap: var(--space-md);
  padding: 0.5rem 0;
  font-size: 0.88rem;
}

.stylist-detail__meta-label {
  min-width: 60px;
  font-weight: 500;
  color: var(--color-text);
}

.stylist-detail__meta-value {
  color: var(--color-text-light);
}

.stylist-detail__message {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--color-text-light);
  padding: var(--space-lg);
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
}

/* ----------------------------------------------------------
   18. Access Page
   ---------------------------------------------------------- */
.access-page-map {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
}

.access-page-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.access-page-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3xl);
}

.access-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
  border-collapse: collapse;
}

.access-table th,
.access-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.9rem;
}

.access-table th {
  font-weight: 500;
  color: var(--color-text);
  width: 130px;
  background-color: var(--color-bg-alt);
  white-space: nowrap;
}

.access-table td {
  color: var(--color-text-light);
}

.access-transport {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-lg);
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-md);
}

.access-transport__item {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.access-transport__item:last-child {
  margin-bottom: 0;
}

/* ----------------------------------------------------------
   19. Contact Page
   ---------------------------------------------------------- */
.contact-phone-section {
  text-align: center;
  margin-bottom: var(--space-3xl);
  padding: var(--space-2xl);
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-md);
}

.contact-phone__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.contact-phone__icon {
  font-size: 2rem;
  margin-right: 0.5rem;
}

.contact-phone__hours {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Form */
.form {
  max-width: 700px;
  margin: 0 auto;
}

.form__group {
  margin-bottom: var(--space-lg);
}

.form__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.form__label--required::after {
  content: '必須';
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-accent);
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-sm);
  margin-left: 0.5rem;
  vertical-align: middle;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.form__textarea {
  min-height: 180px;
  resize: vertical;
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
}

.form__checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-text);
}

.form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.form__submit {
  text-align: center;
  margin-top: var(--space-2xl);
}

.form__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-md);
}

/* ----------------------------------------------------------
   20. Reservation Page
   ---------------------------------------------------------- */
.reservation-intro {
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.reservation-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: var(--space-2xl);
  padding: var(--space-lg);
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-md);
  line-height: 1.8;
}

.reservation-note strong {
  color: var(--color-accent);
}

/* ----------------------------------------------------------
   21. Fade In Animation
   ---------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in--delay-1 {
  transition-delay: 0.1s;
}

.fade-in--delay-2 {
  transition-delay: 0.2s;
}

.fade-in--delay-3 {
  transition-delay: 0.3s;
}

.fade-in--delay-4 {
  transition-delay: 0.4s;
}

/* ----------------------------------------------------------
   22. Breadcrumb
   ---------------------------------------------------------- */
.breadcrumb {
  padding: var(--space-sm) 0;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.breadcrumb__item::after {
  content: '/';
  color: var(--color-text-muted);
}

.breadcrumb__item:last-child::after {
  display: none;
}

.breadcrumb__link {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb__link:hover {
  color: var(--color-accent);
  opacity: 1;
}

/* ----------------------------------------------------------
   23. Decorative Elements
   ---------------------------------------------------------- */
.deco-line {
  width: 40px;
  height: 1px;
  background-color: var(--color-accent);
  margin: 1rem auto;
}

.deco-line--left {
  margin-left: 0;
}

.deco-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background-color: var(--color-accent);
}

/* Elegant section divider */
.section-divider {
  text-align: center;
  padding: var(--space-sm) 0;
}

.section-divider__line {
  display: inline-block;
  width: 60px;
  height: 1px;
  background-color: var(--color-border);
  vertical-align: middle;
}

.section-divider__dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: var(--radius-full);
  background-color: var(--color-accent);
  margin: 0 12px;
  vertical-align: middle;
}

/* ----------------------------------------------------------
   24. Image Placeholder (for missing images)
   ---------------------------------------------------------- */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ----------------------------------------------------------
   25. Scroll to top button
   ---------------------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--color-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: 900;
  border: none;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ----------------------------------------------------------
   26. Loading animation
   ---------------------------------------------------------- */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
}

.page-loader__text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  color: var(--color-text);
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ----------------------------------------------------------
   27. Keyframe Animations
   ---------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hero animations */
.hero__logo {
  animation: fadeInUp 1s ease 0.3s both;
}

.hero__logo-sub {
  animation: fadeInUp 1s ease 0.5s both;
}

.hero__catch {
  animation: fadeInUp 1s ease 0.7s both;
}

.hero__sub {
  animation: fadeInUp 1s ease 0.9s both;
}

.hero__cta {
  animation: fadeInUp 1s ease 1.1s both;
}

/* ----------------------------------------------------------
   28. Responsive - Tablet (max-width: 1024px)
   ---------------------------------------------------------- */
@media (max-width: 1280px) {
  :root {
    --container-max: 1000px;
  }

  .header__nav-link {
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .section__heading-en {
    font-size: 2rem;
  }

  /* Header - Hamburger mode */
  .header__inner {
    flex-direction: row;
    justify-content: center;
    position: relative;
  }

  .header__hamburger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    padding: calc(var(--banner-height) + var(--header-height) + 2rem) 2rem 2rem;
    transition: right var(--transition-base);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    overflow-y: auto;
  }

  .header__nav.is-open {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .header__nav-link {
    padding: 1rem 0;
    font-size: 0.9rem;
    width: 100%;
    border-bottom: 1px solid var(--color-border-light);
  }

  .header__nav-link::after {
    display: none;
  }

  .header__nav-link--cta {
    margin-left: 0;
    margin-top: var(--space-sm);
    text-align: center;
    justify-content: center;
    border-bottom: none;
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .header__nav-link--hpb {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
    border-bottom: none;
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    white-space: nowrap;
    display: block;
    width: 100%;
  }

  /* Hero */
  .hero {
    min-height: 500px;
  }

  .hero__logo {
    font-size: 3.5rem;
  }

  /* Stylists grid */
  .stylists-grid {
    gap: var(--space-lg);
  }

  .stylist-card__image {
    width: 160px;
    height: 160px;
  }

  /* Access */
  .access-section {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  /* Stylist detail */
  .stylist-detail {
    gap: var(--space-2xl);
  }

  /* Pricing grid */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----------------------------------------------------------
   29. Responsive - Mobile (max-width: 768px)
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --banner-height: auto;
    --header-height: 60px;
  }

  html {
    font-size: 15px;
  }

  body {
    padding-bottom: 56px;
  }

  .sample-banner {
    height: auto;
    padding: 0.4rem 1rem;
    position: fixed;
  }

  .sample-banner__text {
    white-space: normal;
    font-size: 0.6rem;
    line-height: 1.5;
  }

  .header {
    height: var(--header-height);
  }

  .header__logo-main {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
  }

  .header__logo-sub {
    font-size: 0.55rem;
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .section__heading {
    margin-bottom: var(--space-2xl);
  }

  .section__heading-en {
    font-size: 1.6rem;
  }

  .container {
    padding: 0 1rem;
  }

  /* Hero */
  .hero {
    height: 80vh;
    min-height: 450px;
  }

  .hero__logo {
    font-size: 2.5rem;
    letter-spacing: 0.15em;
  }

  .hero__logo-sub {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
  }

  .hero__catch {
    font-size: 0.95rem;
  }

  .hero__sub {
    font-size: 0.8rem;
  }

  /* Page hero - handled in section 41 responsive */

  /* Stylists grid */
  .stylists-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    max-width: 300px;
    margin: 0 auto;
  }

  .stylist-card__image {
    width: 180px;
    height: 180px;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-list__item {
    padding: 0.8rem 0;
  }

  .pricing-list__name {
    font-size: 0.88rem;
  }

  .pricing-list__price {
    font-size: 1rem;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .gallery-full-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  /* Access */
  .access-map iframe {
    height: 280px;
  }

  .access-page-map iframe {
    height: 300px;
  }

  .access-table th,
  .access-table td {
    padding: var(--space-sm);
    font-size: 0.85rem;
  }

  .access-table th {
    width: 100px;
  }

  /* Stylist detail */
  .stylist-detail {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding: var(--space-2xl) 0;
  }

  .stylist-detail:nth-child(even) {
    direction: ltr;
  }

  .stylist-detail__name-en {
    font-size: 1.5rem;
  }

  /* CTA section */
  .cta-section {
    padding: var(--space-2xl) 0;
  }

  .cta-section__heading {
    font-size: 1.5rem;
  }

  .cta-section__phone {
    font-size: 1.5rem;
  }

  .cta-section__buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Contact */
  .contact-phone__number {
    font-size: 1.8rem;
  }

  /* Form */
  .form__checkbox-group {
    flex-direction: column;
    gap: var(--space-sm);
  }

  /* Footer */
  .footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    padding-bottom: calc(var(--space-lg) + 56px);
  }

  .footer__logo-main {
    font-size: 1.5rem;
  }

  .footer__sns {
    gap: var(--space-md);
  }

  /* Mobile fixed bar */
  .mobile-fixed-bar {
    display: block;
  }

  /* Scroll top adjust for mobile bar */
  .scroll-top {
    bottom: 72px;
  }

  /* Breadcrumb */
  .breadcrumb {
    font-size: 0.7rem;
  }
}

/* ----------------------------------------------------------
   30. Responsive - Small Mobile (max-width: 480px)
   ---------------------------------------------------------- */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero__logo {
    font-size: 2rem;
  }

  .hero__logo-sub {
    font-size: 0.65rem;
  }

  /* page-hero__title handled in section 41 responsive */

  .section__heading-en {
    font-size: 1.4rem;
  }

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

  .gallery-full-grid {
    grid-template-columns: 1fr 1fr;
  }

  .btn {
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
  }

  .btn--lg {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }

  .stylist-card__image {
    width: 150px;
    height: 150px;
  }

  .contact-phone__number {
    font-size: 1.4rem;
  }

  .pricing-category__title {
    font-size: 1.3rem;
  }

  .pricing-category__price {
    font-size: 1rem;
  }
}

/* ----------------------------------------------------------
   31. Print Styles
   ---------------------------------------------------------- */
@media print {
  .sample-banner,
  .header,
  .mobile-fixed-bar,
  .scroll-top,
  .page-loader,
  .nav-overlay {
    display: none !important;
  }

  body {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero {
    margin-top: 0;
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 2rem 0;
  }

  .section {
    padding: 1.5rem 0;
  }

  .footer {
    background-color: var(--color-white);
    color: var(--color-text);
    padding: 1rem 0;
  }
}

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

  .fade-in {
    opacity: 1;
    transform: none;
  }
}

/* Focus visible for keyboard users */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* ----------------------------------------------------------
   33. High contrast support
   ---------------------------------------------------------- */
@media (prefers-contrast: high) {
  :root {
    --color-border: #999;
    --color-border-light: #bbb;
    --color-text-muted: #555;
    --color-text-light: #444;
  }
}

/* ----------------------------------------------------------
   34. Additional Gallery Styles
   ---------------------------------------------------------- */
.gallery-section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--color-text);
}

.gallery-section-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: -1.5rem;
  margin-bottom: var(--space-2xl);
  letter-spacing: 0.05em;
}

/* ----------------------------------------------------------
   35. Hover & Interactive States
   ---------------------------------------------------------- */
.pricing-category__item:hover {
  background-color: var(--color-bg-alt);
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: var(--radius-sm);
}

.access-table tr:hover td {
  background-color: var(--color-bg-alt);
}

/* ----------------------------------------------------------
   36. Service page intro
   ---------------------------------------------------------- */
.service-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 2;
}

/* ----------------------------------------------------------
   37. Elegant spacing helpers
   ---------------------------------------------------------- */
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* ----------------------------------------------------------
   38. Badge / Tag styles
   ---------------------------------------------------------- */
.tag {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 500;
  border-radius: var(--radius-xl);
  letter-spacing: 0.05em;
}

.tag--gold {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.tag--outline {
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  background-color: transparent;
}

.tag--pink {
  background-color: var(--color-primary);
  color: var(--color-text);
}

/* ----------------------------------------------------------
   39. Card hover effects
   ---------------------------------------------------------- */
.card-hover {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

/* ----------------------------------------------------------
   40. Smooth gradient borders
   ---------------------------------------------------------- */
.gradient-border {
  position: relative;
}

.gradient-border::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

/* ----------------------------------------------------------
   41. Quote / Testimonial styles (for future use)
   ---------------------------------------------------------- */
.quote {
  position: relative;
  padding: var(--space-xl) var(--space-2xl);
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-md);
  font-style: italic;
  line-height: 2;
  color: var(--color-text-light);
}

.quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-accent);
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
  opacity: 0.4;
}

/* ----------------------------------------------------------
   42. Salon-specific decorative patterns
   ---------------------------------------------------------- */
.pattern-bg {
  position: relative;
}

.pattern-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image: radial-gradient(circle at 2px 2px, var(--color-accent) 1px, transparent 0);
  background-size: 30px 30px;
  pointer-events: none;
}

/* ----------------------------------------------------------
   43. Tooltip styles
   ---------------------------------------------------------- */
.tooltip {
  position: relative;
  cursor: help;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 0.8rem;
  background-color: var(--color-dark);
  color: var(--color-white);
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  pointer-events: none;
}

.tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}

/* ----------------------------------------------------------
   44. Separator styles
   ---------------------------------------------------------- */
.separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  margin: var(--space-2xl) 0;
  border: none;
}

.separator--gold {
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.separator--thick {
  height: 2px;
}

/* ----------------------------------------------------------
   45. Responsive tables
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  .access-table {
    display: block;
  }

  .access-table tbody {
    display: block;
  }

  .access-table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: var(--space-sm);
  }

  .access-table th,
  .access-table td {
    display: block;
    width: 100%;
    padding: 0.3rem 0;
    border-bottom: none;
    background: none;
  }

  .access-table th {
    font-weight: 700;
    color: var(--color-accent);
    font-size: 0.8rem;
  }
}

/* ----------------------------------------------------------
   46. Custom scrollbar
   ---------------------------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: var(--color-bg-alt);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-primary-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-accent);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary-dark) var(--color-bg-alt);
}

/* ----------------------------------------------------------
   47. Selection colors
   ---------------------------------------------------------- */
::selection {
  background-color: var(--color-primary);
  color: var(--color-dark);
}

::-moz-selection {
  background-color: var(--color-primary);
  color: var(--color-dark);
}

/* ----------------------------------------------------------
   48. Image error fallback styling
   ---------------------------------------------------------- */
img {
  background-color: var(--color-bg-alt);
}

img[alt]::after {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-alt);
  color: var(--color-text-muted);
  font-size: 0.8rem;
  content: attr(alt);
}

/* ----------------------------------------------------------
   49. Page transition overlay (optional)
   ---------------------------------------------------------- */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.page-transition.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* ----------------------------------------------------------
   50. Final tweaks & override helpers
   ---------------------------------------------------------- */
.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid {
  display: grid;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.rounded-full {
  border-radius: var(--radius-full);
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

/* ----------------------------------------------------------
   40. Hot Pepper Beauty Button Styles
   ---------------------------------------------------------- */
.header__nav-link--hpb {
  background-color: #f5e6ec;
  color: #a0295a !important;
  border-radius: var(--radius-sm);
  padding: 0.4rem 1.2rem;
  margin-left: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  border: 1px solid #d4a0b5;
}

.header__nav-link--hpb::after {
  display: none;
}

.header__nav-link--hpb:hover {
  background-color: #a0295a;
  color: #fff !important;
  opacity: 1;
}

.hero__cta--hpb {
  display: inline-block;
  background-color: #f5e6ec;
  color: #a0295a;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  border: 1px solid #d4a0b5;
  text-decoration: none;
  transition: all var(--transition-fast);
  margin-left: 1rem;
}

.hero__cta--hpb:hover {
  background-color: #a0295a;
  color: #fff;
  opacity: 1;
}

.footer__hpb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #a0295a;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.7rem 1.2rem;
  min-height: 44px;
  border: 1px solid #a0295a;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  margin-left: var(--space-sm);
}

.footer__hpb:hover {
  background-color: #a0295a;
  color: var(--color-white);
  opacity: 1;
}

.mobile-fixed-bar__btn--hpb {
  background-color: #f5e6ec;
  color: #a0295a;
  border: 1px solid #d4a0b5;
}

.mobile-fixed-bar__btn--hpb:hover {
  background-color: #a0295a;
  color: #fff;
  opacity: 1;
}

/* ----------------------------------------------------------
   41. Page Hero with Background Image
   ---------------------------------------------------------- */
.page-hero {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42,35,32,0.5);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.page-hero__en {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.page-hero__title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
}

.page-hero__line {
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--color-accent);
  margin: 1.2rem auto 0;
}

/* ----------------------------------------------------------
   42. Recruit Page Styles
   ---------------------------------------------------------- */
.recruit-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text);
}

.recruit-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.recruit-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.recruit-card:hover {
  box-shadow: var(--shadow-md);
}

.recruit-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.3rem;
}

.recruit-card__type {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-sm);
  padding: 0.15rem 0.6rem;
  margin-bottom: var(--space-md);
}

.recruit-card__list {
  list-style: none;
  padding: 0;
}

.recruit-card__list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.9rem;
  color: var(--color-text);
}

.recruit-card__list li:last-child {
  border-bottom: none;
}

.recruit-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.recruit-benefit {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
}

.recruit-benefit__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.recruit-benefit__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.recruit-benefit__text {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.recruit-image {
  margin: 0 auto var(--space-3xl);
  max-width: 600px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.recruit-image img {
  width: 100%;
  height: auto;
  display: block;
}

.recruit-form-note {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Recruit responsive */
@media (max-width: 768px) {
  .recruit-cards {
    grid-template-columns: 1fr;
  }

  .recruit-benefits {
    grid-template-columns: 1fr;
  }

  .hero__cta--hpb {
    margin-left: 0;
    margin-top: 0.8rem;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    white-space: nowrap;
    text-align: center;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .header__nav-link--hpb {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
    border-bottom: none;
  }

  .page-hero__en {
    font-size: 2rem;
  }

  .page-hero {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .page-hero__en {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }

  .page-hero {
    height: 180px;
  }
}
