:root {
  --snow-blue: #E8F1F8;
  --snow-blue-light: #F4F9FC;
  --snow-blue-pale: #FAFCFE;
  --main-blue: #A8C8E0;
  --accent-blue: #6BA3C9;
  --navy: #1F3A5F;
  --navy-dark: #14294A;
  --white: #FFFFFF;
  --text-color: #2C3E50;
  --text-sub: #6B7C8E;
  --text-light: #A4B3C4;
  --line: #E3ECF3;
  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Playfair Display', serif;
  --container: 1160px;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.8;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, p { margin: 0; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 140px 0; position: relative; }
.section-label {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--accent-blue);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-jp);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.section-title em {
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 500;
  color: var(--accent-blue);
  font-size: 1.1em;
  padding: 0 4px;
}
.section-desc { font-size: 15px; color: var(--text-sub); line-height: 2; }
.section-header { text-align: center; margin-bottom: 80px; }

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(168, 200, 224, 0.2);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: baseline; gap: 10px; }
.logo-en {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--navy);
}
.logo-ja { font-size: 11px; letter-spacing: 0.2em; color: var(--text-sub); }
.header-nav { display: flex; align-items: center; gap: 36px; }
.header-nav a {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--text-color);
  position: relative;
}
.header-nav a:not(.nav-btn):hover { color: var(--accent-blue); }
.header-nav a:not(.nav-btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent-blue);
  transition: var(--transition);
}
.header-nav a:not(.nav-btn):hover::after { width: 100%; }
.nav-btn {
  padding: 10px 22px;
  background: var(--navy);
  color: var(--white) !important;
  border-radius: 999px;
  font-size: 13px !important;
}
.nav-btn:hover { background: var(--accent-blue); transform: translateY(-2px); }

/* BUTTON */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 38px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: 999px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(31, 58, 95, 0.2);
}
.btn-primary:hover {
  background: var(--accent-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(107, 163, 201, 0.35);
}
.btn-primary:hover .btn-arrow { transform: translateX(6px); }
.btn-arrow { display: inline-block; transition: var(--transition); }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--main-blue); }
.btn-ghost:hover { background: var(--snow-blue); border-color: var(--accent-blue); }
.btn-large { padding: 22px 48px; font-size: 16px; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 24px 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--snow-blue-pale) 0%, var(--snow-blue-light) 100%);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.7; }
.orb-1 {
  width: 500px; height: 500px;
  top: -100px; left: -150px;
  background: radial-gradient(circle, var(--main-blue), transparent 70%);
}
.orb-2 {
  width: 400px; height: 400px;
  bottom: -50px; right: -100px;
  background: radial-gradient(circle, var(--snow-blue), transparent 70%);
  opacity: 0.8;
}
.orb-3 {
  width: 300px; height: 300px;
  top: 40%; left: 50%;
  background: radial-gradient(circle, rgba(168, 200, 224, 0.4), transparent 70%);
  opacity: 0.5;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  min-height: calc(100vh - 220px);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--accent-blue);
  margin-bottom: 32px;
}
.eyebrow-line { width: 40px; height: 1px; background: var(--accent-blue); }
.hero-title {
  font-family: var(--font-jp);
  font-size: 64px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 32px;
}
.hero-title em {
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 500;
  color: var(--accent-blue);
  font-size: 1.05em;
  padding: 0 4px;
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  height: 8px;
  background: rgba(168, 200, 224, 0.3);
  z-index: -1;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-sub);
  letter-spacing: 0.08em;
  margin-bottom: 48px;
  line-height: 1.9;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 460px;
  justify-self: center;
  width: 100%;
}
.hero-img {
  position: absolute;
  inset: 0;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(31, 58, 95, 0.15);
  z-index: 2;
}
.hero-deco-ring {
  position: absolute;
  top: -30px; right: -30px;
  width: 180px; height: 180px;
  border: 1px solid var(--main-blue);
  border-radius: 50%;
  z-index: 1;
}
.hero-deco-dot {
  position: absolute;
  bottom: -20px; left: -30px;
  width: 80px; height: 80px;
  background: var(--main-blue);
  border-radius: 50%;
  opacity: 0.4;
  z-index: 1;
}
.hero-badge {
  position: absolute;
  bottom: 40px; right: -20px;
  width: 110px; height: 110px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 12px 30px rgba(31, 58, 95, 0.15);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}
.badge-en {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 22px;
  color: var(--accent-blue);
  font-weight: 500;
}
.badge-jp {
  font-size: 10px;
  color: var(--navy);
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.4;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent-blue);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent-blue), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* IMAGE PLACEHOLDER */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--snow-blue) 0%, var(--main-blue) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.3), transparent 50%);
}
.img-icon { font-size: 32px; color: var(--white); opacity: 0.8; position: relative; }
.img-label {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--white);
  opacity: 0.85;
  position: relative;
}

/* CONCEPT */
.concept { background: var(--white); }
.concept-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.concept-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  line-height: 2;
  margin-bottom: 24px;
}
.concept-body {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 2.1;
  margin-bottom: 32px;
}
.concept-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--snow-blue);
  color: var(--navy);
  font-size: 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.concept-images { position: relative; aspect-ratio: 1/1; }
.concept-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(31, 58, 95, 0.12);
}
.concept-img-main { width: 75%; height: 75%; top: 0; left: 0; }
.concept-img-sub {
  width: 55%; height: 55%;
  bottom: 0; right: 0;
  border: 8px solid var(--white);
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 60px 40px;
  background: var(--snow-blue-pale);
  border-radius: var(--radius-lg);
}
.feature { text-align: center; padding: 0 20px; }
.feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-blue);
  box-shadow: 0 8px 20px rgba(31, 58, 95, 0.08);
}
.feature-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.feature-desc { font-size: 13px; color: var(--text-sub); line-height: 1.9; }

/* MENU */
.menu-sec {
  background: linear-gradient(180deg, var(--snow-blue-pale) 0%, var(--white) 100%);
  position: relative;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(31, 58, 95, 0.06);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--line);
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(31, 58, 95, 0.12);
}
.menu-card-featured {
  border: 2px solid var(--accent-blue);
  transform: scale(1.03);
}
.menu-card-featured:hover { transform: translateY(-8px) scale(1.03); }
.menu-card-badge {
  position: absolute;
  top: 20px; right: 20px;
  padding: 6px 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 999px;
  z-index: 2;
}
.menu-card-img { aspect-ratio: 4/3; position: relative; }
.menu-card-body { padding: 32px 28px; }
.menu-en {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 14px;
  color: var(--accent-blue);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.menu-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.menu-desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 24px;
  min-height: 72px;
}
.menu-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.price-num {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.price-tax { font-size: 12px; color: var(--text-light); }
.menu-note { text-align: center; font-size: 12px; color: var(--text-light); margin-top: 30px; }

/* STYLIST */
.stylist { background: var(--white); }
.stylist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.stylist-card { transition: var(--transition); }
.stylist-card:hover .stylist-photo {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(31, 58, 95, 0.18);
}
.stylist-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  transition: var(--transition);
  box-shadow: 0 15px 35px rgba(31, 58, 95, 0.1);
}
.photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--snow-blue) 0%, var(--main-blue) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.photo-icon { font-size: 48px; opacity: 0.85; }
.photo-label {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--white);
  opacity: 0.85;
}
.stylist-tag {
  position: absolute;
  top: 20px; left: 20px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  font-family: var(--font-en);
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.15em;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.stylist-role {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 13px;
  color: var(--accent-blue);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.stylist-name { margin-bottom: 16px; }
.name-ja {
  display: block;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.name-en {
  display: block;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 14px;
  color: var(--text-sub);
  letter-spacing: 0.1em;
}
.stylist-bio { font-size: 13px; color: var(--text-sub); line-height: 2; }

/* ACCESS */
.access { background: var(--snow-blue-pale); }
.access-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.access-info { display: flex; flex-direction: column; gap: 32px; }
.access-block {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(31, 58, 95, 0.05);
  transition: var(--transition);
}
.access-block:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 25px rgba(31, 58, 95, 0.08);
}
.access-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--snow-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.access-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-blue);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.access-text { font-size: 14px; color: var(--text-color); line-height: 1.9; }
.access-tel {
  font-family: var(--font-en);
  font-size: 22px;
  color: var(--navy);
  font-weight: 500;
}
.text-sub { font-size: 12px; color: var(--text-light); }
.access-map { position: sticky; top: 100px; }
.map-placeholder {
  aspect-ratio: 4/3;
  background: var(--white);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(31, 58, 95, 0.1);
  border: 1px solid var(--line);
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--snow-blue) 1px, transparent 1px),
    linear-gradient(90deg, var(--snow-blue) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
}
.map-grid::after {
  content: '';
  position: absolute;
  top: 30%; left: 10%;
  right: 10%; bottom: 30%;
  background: var(--main-blue);
  opacity: 0.15;
  border-radius: 8px;
}
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.pin-icon { font-size: 36px; animation: pinBounce 2s ease-in-out infinite; }
.pin-label {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(31, 58, 95, 0.15);
  font-weight: 500;
}
@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.map-note {
  position: absolute;
  bottom: 16px; right: 16px;
  font-family: var(--font-en);
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.15em;
}

/* FINAL CTA */
.final-cta {
  padding: 140px 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cta-orb-1 {
  width: 500px; height: 500px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, var(--accent-blue), transparent 70%);
  opacity: 0.25;
}
.cta-orb-2 {
  width: 400px; height: 400px;
  bottom: -150px; right: -50px;
  background: radial-gradient(circle, var(--main-blue), transparent 70%);
  opacity: 0.2;
}
.final-cta .container { position: relative; z-index: 1; }
.cta-label { color: var(--main-blue) !important; }
.cta-title {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 24px;
}
.cta-title em {
  font-family: var(--font-en);
  font-style: italic;
  color: var(--main-blue);
  font-size: 1.05em;
  padding: 0 6px;
}
.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 48px;
  letter-spacing: 0.08em;
}
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.final-cta .btn-primary { background: var(--white); color: var(--navy); }
.final-cta .btn-primary:hover { background: var(--snow-blue); color: var(--navy-dark); }
.final-cta .btn-ghost { color: var(--white); border-color: rgba(255, 255, 255, 0.3); }
.final-cta .btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--white); }

/* FOOTER */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 24px 30px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}
.footer-brand .logo .logo-en { color: var(--white); }
.footer-brand .logo .logo-ja { color: rgba(255, 255, 255, 0.5); }
.footer-desc { margin-top: 16px; font-size: 13px; line-height: 1.9; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-family: var(--font-en); font-size: 13px; letter-spacing: 0.1em; }
.footer-links a:hover { color: var(--main-blue); }
.copyright {
  text-align: center;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
}

/* ACTUAL IMAGES */
.img-actual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .section { padding: 100px 0; }
  .section-title { font-size: 34px; }
  .hero-title { font-size: 52px; }
  .cta-title { font-size: 40px; }
  .concept-main { gap: 60px; }
  .header-nav { gap: 24px; }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 50px; }
  .section-title { font-size: 28px; }
  .header-inner { padding: 14px 20px; }
  .header-nav a:not(.nav-btn) { display: none; }
  .nav-btn { padding: 8px 18px; font-size: 12px !important; }
  .logo-ja { display: none; }
  .hero { padding: 120px 20px 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero-title { font-size: 40px; }
  .hero-sub { font-size: 15px; margin-bottom: 36px; }
  .hero-eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { max-width: 320px; }
  .hero-badge { width: 90px; height: 90px; bottom: 20px; right: 0; }
  .badge-en { font-size: 18px; }
  .scroll-hint { display: none; }
  .btn { padding: 16px 28px; font-size: 14px; }
  .btn-large { padding: 18px 32px; font-size: 15px; }
  .concept-main { grid-template-columns: 1fr; gap: 50px; margin-bottom: 80px; }
  .concept-images { aspect-ratio: 4/3; max-width: 500px; margin: 0 auto; }
  .features { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px; }
  .menu-grid { grid-template-columns: 1fr; gap: 24px; }
  .menu-card-featured { transform: none; }
  .menu-card-featured:hover { transform: translateY(-8px); }
  .menu-card-body { padding: 24px 22px; }
  .menu-desc { min-height: auto; }
  .stylist-grid { grid-template-columns: 1fr; gap: 50px; max-width: 400px; margin: 0 auto; }
  .access-grid { grid-template-columns: 1fr; gap: 40px; }
  .access-map { position: static; }
  .final-cta { padding: 80px 20px; }
  .cta-title { font-size: 30px; }
  .cta-sub { font-size: 14px; margin-bottom: 36px; }
  .footer-main { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .section-title { font-size: 24px; }
  .cta-title { font-size: 26px; }
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; }
}
