
/* ===================== RESET ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #3E4443;
  background: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
  background: #FFFFFF;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 3px;
  color: #FFFFFF;
  transition: color 0.4s ease;
}

.header.scrolled .header-logo {
  color: #3E4443;
}

.header-nav {
  display: flex;
  gap: 40px;
}

.header-nav a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  transition: color 0.4s ease, opacity 0.3s ease;
  font-family: 'Cormorant Garamond', serif;
}

.header.scrolled .header-nav a {
  color: #3E4443;
}

.header-nav a:hover {
  opacity: 0.6;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: #FFFFFF;
  transition: background 0.4s ease, transform 0.3s ease;
}

.header.scrolled .hamburger span {
  background: #3E4443;
}

/* ===================== HEADER SUB (for sub-pages) ===================== */
.header-sub {
  background: #FFFFFF;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header-sub .header-logo { color: #3E4443; }
.header-sub .header-nav a { color: #3E4443; }
.header-sub .hamburger span { background: #3E4443; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  animation: heroKenBurns 5s ease-in-out forwards;
}

@keyframes heroKenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(62, 68, 67, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 90px;
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 4px;
  line-height: 1.1;
}

.hero-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

.hero-tagline {
  position: absolute;
  bottom: 60px;
  left: 80px;
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 400;
  letter-spacing: 2px;
  z-index: 2;
}

.hero-description {
  font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  margin-top: 20px;
  text-align: center;
}

/* Rotating circular text */
.rotating-text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  z-index: 1;
  animation: rotateContinuous 20s linear infinite;
}

@keyframes rotateContinuous {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.rotating-text-container svg {
  width: 100%;
  height: 100%;
}

.rotating-text-container svg text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  fill: rgba(255,255,255,0.35);
  letter-spacing: 5px;
  text-transform: uppercase;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 80px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: #FFFFFF;
  writing-mode: vertical-rl;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 50px;
  background: #FFFFFF;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


.hero-description-mincho {
  font-family: 'Noto Serif JP', 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-top: 18px;
}

.hero-message {
  text-align: center;
  padding: 52px 20px 60px;
  background: #FFFFFF;
}

.hero-message-title,
.hero-message-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  color: #3E4443;
  margin: 0;
}

.hero-message-title {
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .hero-description-mincho {
    font-size: 22px;
    line-height: 1.8;
    letter-spacing: 0.04em;
  }
  .hero-message {
    padding: 38px 20px 44px;
  }
}

/* ===================== ABOUT ===================== */
.about {
  position: relative;
  padding: 250px 80px 200px;
  overflow: hidden;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.about-left {
  flex: 1;
  position: relative;
  min-height: 600px;
}

.about-blob-1 {
  position: absolute;
  top: -80px;
  left: -60px;
  width: 350px;
  height: 350px;
  border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
  background: rgba(240, 140, 124, 0.15);
  z-index: 0;
}

.about-blob-2 {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 250px;
  height: 250px;
  border-radius: 45% 55% 40% 60% / 60% 45% 55% 40%;
  background: rgba(240, 140, 124, 0.10);
  z-index: 0;
}

.about-photo-main {
  position: relative;
  z-index: 1;
  width: 380px;
  height: 520px;
  object-fit: cover;
}

.about-photo-secondary {
  position: absolute;
  bottom: -40px;
  right: -60px;
  width: 280px;
  height: 210px;
  object-fit: cover;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-right {
  flex: 1;
  padding-top: 40px;
}

.about-right h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 400;
  color: #3E4443;
  line-height: 72px;
  margin-bottom: 40px;
}

.about-right .sub-title {
  font-size: 24px;
  font-weight: 500;
  color: #3E4443;
  line-height: 1.7;
  margin-bottom: 30px;
  white-space: pre-line;
}

.about-right .body-text {
  font-size: 14px;
  font-weight: 400;
  color: #3E4443;
  line-height: 1.7;
  margin-bottom: 50px;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border: 1px solid #3E4443;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 400;
  color: #3E4443;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  font-family: 'Cormorant Garamond', 'Noto Sans JP', sans-serif;
  letter-spacing: 0.5px;
}

.btn-pill:hover {
  background: #3E4443;
  color: #FFFFFF;
}

.btn-pill .arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn-pill:hover .arrow {
  transform: translateX(4px);
}

/* ===================== SERVICE ===================== */
.service {
  padding: 94px 30px 120px;
  max-width: 1300px;
  margin: 0 auto;
}

.service-columns {
  display: flex;
  position: relative;
}

.service-columns::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: #E0E0E0;
}

.service-col {
  flex: 1;
  padding: 0 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-col h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 400;
  color: #3E4443;
  line-height: 72px;
  margin-bottom: 50px;
}

.service-circle-img {
  width: 450px;
  height: 450px;
  border-radius:0;
  object-fit: cover;
  margin-bottom: 40px;
}

.service-col .sub-title {
  font-size: 18px;
  font-weight: 500;
  color: #3E4443;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-col .body-text {
  font-size: 14px;
  font-weight: 400;
  color: #3E4443;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 420px;
}

/* ===================== SALON SLIDER ===================== */
.salon {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.salon-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.salon-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.salon-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.salon-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px;
}

.salon-slide-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.salon-slide-address {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
}

.salon-nav {
  position: absolute;
  bottom: 80px;
  right: 80px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 5;
}

.salon-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius:0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #FFFFFF;
  font-size: 18px;
  transition: background 0.3s ease, border-color 0.3s ease;
  background: transparent;
}

.salon-arrow:hover {
  background: rgba(255,255,255,0.15);
  border-color: #FFFFFF;
}

.salon-counter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: #FFFFFF;
  letter-spacing: 2px;
}

/* ===================== NEWS ===================== */
.news {
  padding: 120px 80px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.news-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 400;
  color: #3E4443;
  line-height: 72px;
}

.news-list {
  border-top: 1px solid #E0E0E0;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid #E0E0E0;
  transition: opacity 0.3s ease;
}

.news-item:hover {
  opacity: 0.6;
}

.news-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: #999;
  min-width: 120px;
  letter-spacing: 0.5px;
}

.news-title {
  font-size: 14px;
  font-weight: 400;
  color: #3E4443;
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
  display: flex;
  width: 100%;
}

.cta-item {
  flex: 1;
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
}

.cta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cta-item:hover img {
  transform: scale(1.05);
}

.cta-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.cta-item:hover .cta-item-overlay {
  background: rgba(0,0,0,0.25);
}

.cta-circle {
  width: 140px;
  height: 140px;
  border: 1px solid #FFFFFF;
  border-radius:0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.cta-item:hover .cta-circle {
  transform: scale(1.08);
}

.cta-circle span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: #FFFFFF;
  letter-spacing: 1px;
}

/* ===================== FOOTER ===================== */
.footer {
  padding: 80px;
  background: #FFFFFF;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-nav a {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  line-height: 2.5;
  color: #3E4443;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 0.6;
}

.footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 13px;
  color: #3E4443;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.6;
}

.footer-instagram {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: #3E4443;
  transition: opacity 0.3s ease;
}

.footer-instagram:hover {
  opacity: 0.6;
}

.footer-line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #06C755;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  padding: 12px 24px;
  border-radius: 6px;
  margin-top: 12px;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.footer-line-btn:hover {
  opacity: 0.85;
}

.footer-line-btn svg {
  flex-shrink: 0;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #E0E0E0;
  margin-top: 60px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 12px;
  color: #999;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #3E4443;
  letter-spacing: 3px;
}

/* ===================== ANIMATIONS ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.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; }

/* ===================== MOBILE MENU OVERLAY ===================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: #3E4443;
  letter-spacing: 2px;
}

/* ===================== PAGE HERO (sub-pages) ===================== */
.page-hero {
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #F5F5F3;
  margin-top: 110px;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 400;
  color: #3E4443;
}
.page-hero .page-hero-sub {
  font-size: 14px;
  color: #999;
  margin-top: 16px;
  text-align: center;
}

/* ===================== PAGE CONTENT (sub-pages) ===================== */
.page-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 40px;
}

/* ===================== COMMITMENT (concept page) ===================== */
.commitment-section {
  padding: 120px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.commitment-item {
  display: flex;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.commitment-item:nth-child(even) {
  flex-direction: row-reverse;
}
.commitment-item .commitment-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  font-weight: 300;
  color: rgba(240,140,124,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.commitment-item .commitment-title {
  font-size: 24px;
  font-weight: 500;
  color: #3E4443;
  margin-bottom: 24px;
  line-height: 1.6;
}
.commitment-item .commitment-text {
  font-size: 14px;
  line-height: 2;
  color: #3E4443;
}
.commitment-item .commitment-img {
  flex: 1;
  min-width: 400px;
}
.commitment-item .commitment-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.commitment-item .commitment-content {
  flex: 1;
}

/* ===================== PRICE (price page) ===================== */
.price-section {
  padding: 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.price-category {
  margin-bottom: 100px;
}
.price-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: #3E4443;
  margin-bottom: 8px;
}
.price-category-sub {
  font-size: 14px;
  color: #999;
  margin-bottom: 16px;
}
.price-category-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E0E0E0;
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.price-card {
  border: 1px solid #E0E0E0;
  padding: 40px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}
.price-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.price-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #3E4443;
}
.price-card-detail {
  font-size: 13px;
  color: #999;
  margin-bottom: 24px;
}
.price-card-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: #F08C7C;
}
.price-card-tax {
  font-size: 12px;
  color: #999;
}
.price-note {
  font-size: 12px;
  color: #999;
  line-height: 1.8;
  margin-top: 40px;
}

/* ===================== STAFF (staff page) ===================== */
.staff-section {
  padding: 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.staff-intro {
  text-align: center;
  font-size: 15px;
  line-height: 2;
  color: #3E4443;
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.staff-card {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 100px;
}
.staff-card:nth-child(even) {
  flex-direction: row-reverse;
}
.staff-card .staff-photo {
  flex: 0 0 380px;
}
.staff-card .staff-photo img {
  width: 380px;
  height: 480px;
  object-fit: cover;
}
.staff-card .staff-info {
  flex: 1;
}
.staff-card .staff-role {
  font-size: 13px;
  color: #F08C7C;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.staff-card .staff-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: #3E4443;
  margin-bottom: 8px;
}
.staff-card .staff-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: #999;
  margin-bottom: 24px;
}
.staff-card .staff-career {
  font-size: 13px;
  color: #666;
  line-height: 2;
  margin-bottom: 24px;
}
.staff-card .staff-message {
  font-size: 14px;
  color: #3E4443;
  line-height: 2;
  padding: 24px;
  background: #F5F5F3;
  border-left: 3px solid #F08C7C;
}

/* ===================== CONTACT (contact page) ===================== */
.contact-section {
  padding: 80px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
.contact-info-item {
  text-align: center;
  padding: 40px 20px;
}
.contact-info-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: #3E4443;
  margin-bottom: 16px;
}
.contact-info-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}
.contact-info-item a {
  color: #F08C7C;
}
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: #3E4443;
  text-align: center;
  margin-bottom: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 13px;
  color: #3E4443;
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E0E0E0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #3E4443;
  background: #FFFFFF;
  transition: border-color 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #F08C7C;
}
.form-group textarea {
  height: 160px;
  resize: vertical;
}
.form-submit {
  text-align: center;
  margin-top: 40px;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 60px;
  background: #3E4443;
  color: #FFFFFF;
  border: none;
  border-radius: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-submit:hover {
  background: #F08C7C;
}
.contact-map {
  width: 100%;
  height: 400px;
  margin-top: 80px;
  border: none;
}
.line-cta {
  text-align: center;
  padding: 60px 40px;
  background: #F5F5F3;
  margin-top: 80px;
}
.line-cta p {
  font-size: 15px;
  color: #3E4443;
  margin-bottom: 24px;
}
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: #06C755;
  color: #FFFFFF;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.3s;
}
.btn-line:hover { opacity: 0.85; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .header {
    padding: 0 24px;
    height: 80px;
  }

  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 40px;
    letter-spacing: 2px;
  }

  .hero-tagline {
    left: 24px;
    bottom: 40px;
    font-size: 13px;
  }

  .rotating-text-container {
    width: 220px;
    height: 220px;
  }

  .scroll-indicator {
    right: 24px;
  }

  .about {
    padding: 100px 24px 80px;
  }

  .about-inner {
    flex-direction: column;
    gap: 50px;
  }

  .about-left {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-photo-main {
    width: 280px;
    height: 380px;
  }

  .about-photo-secondary {
    position: relative;
    bottom: auto;
    right: auto;
    width: 220px;
    height: 160px;
    margin-top: -30px;
    margin-left: 60px;
  }

  .about-blob-1 {
    width: 220px;
    height: 220px;
    top: -40px;
    left: 0;
  }

  .about-blob-2 {
    display: none;
  }

  .about-right h2 {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 24px;
  }

  .about-right .sub-title {
    font-size: 20px;
  }

  .service {
    padding: 60px 24px 80px;
  }

  .service-columns {
    flex-direction: column;
    gap: 80px;
  }

  .service-columns::after {
    display: none;
  }

  .service-col {
    padding: 0;
  }

  .service-col h2 {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 30px;
  }

  .service-circle-img {
    width: 300px;
    height: 300px;
  }

  .salon {
    height: 500px;
  }

  .salon-slide-overlay {
    padding: 40px 24px;
  }

  .salon-slide-name {
    font-size: 22px;
  }

  .salon-nav {
    right: 24px;
    bottom: 40px;
  }

  .news {
    padding: 80px 24px;
  }

  .news-header h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .news-item {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .cta-banner {
    flex-direction: column;
  }

  .cta-item {
    height: 260px;
  }

  .footer {
    padding: 50px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    gap: 16px;
    align-items: flex-start;
  }

  /* Sub-page responsive */
  .page-hero { height: 280px; margin-top: 80px; }
  .page-hero h1 { font-size: 36px; }
  .commitment-section { padding: 60px 24px; }
  .commitment-item { flex-direction: column !important; gap: 40px; margin-bottom: 80px; }
  .commitment-item .commitment-img { min-width: auto; }
  .commitment-item .commitment-num { font-size: 80px; }
  .price-section { padding: 40px 24px; }
  .price-grid { grid-template-columns: 1fr; }
  .staff-section { padding: 40px 24px; }
  .staff-card { flex-direction: column !important; gap: 40px; }
  .staff-card .staff-photo { flex: none; }
  .staff-card .staff-photo img { width: 100%; height: 360px; }
  .contact-section { padding: 40px 24px; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}


.page-panel { display: none; }
.page-panel.active { display: block; }



/* ===== Professional enhancements (desktop remains visually unchanged) ===== */
.page-panel {
  display: none;
  opacity: 0;
  transform: translateY(12px);
}
.page-panel.active {
  display: block;
  animation: pageTransition .45s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes pageTransition {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

img[data-src] {
  filter: blur(0);
  transition: opacity .35s ease, transform .35s ease;
}
img.is-loaded {
  opacity: 1;
}

.mobile-menu {
  will-change: opacity;
}
.contact-form input,
.contact-form select,
.contact-form textarea,
.btn-submit,
.btn-pill,
.footer-line-btn,
.btn-line {
  -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .page-panel.active {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
  }
  .hero-content {
    width: min(100%, 92vw);
    padding-inline: 8px;
  }
  .hero-title {
    line-height: 1.15;
    text-wrap: balance;
  }
  .hero-description,
  .page-hero-sub,
  .staff-intro,
  .commitment-text,
  .body-text,
  .contact-info-item p,
  .price-category-desc {
    text-wrap: pretty;
  }
  .btn-pill,
  .btn-submit,
  .btn-line,
  .footer-line-btn {
    min-height: 48px;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 48px;
    font-size: 16px;
  }
  .contact-form textarea {
    min-height: 160px;
  }
  .cta-item {
    height: 220px;
  }
  .footer-links {
    gap: 20px;
    flex-wrap: wrap;
  }
  .header {
    backdrop-filter: saturate(140%) blur(8px);
    -webkit-backdrop-filter: saturate(140%) blur(8px);
  }
}

/* Faster rendering for hidden sections */
.page-panel:not(.active) {
  content-visibility: hidden;
}
.page-panel.active {
  content-visibility: visible;
}


/* --- subtle premium footer tuning --- */
.footer a {
    transition: opacity 0.25s ease;
}
.footer a:hover {
    opacity: 0.6;
}

.footer {
    letter-spacing: 0.04em;
}

.footer-right img {
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.footer-right img:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}


.concept-hero{
width:100%;
margin:0; padding:0;
position:relative;
overflow:hidden;
}
.concept-hero img{
width:100%;
height:420px;
object-fit:cover;
display:block; vertical-align:top;
}
.concept-hero-overlay{
position:absolute;
inset:0;
background:rgba(180,180,180,0.35);
}
.concept-hero-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:#ffffff;
}
.concept-hero-text h1{
margin:0; padding:0;
font-weight:500;
letter-spacing:2px;
color:#ffffff;
}
.concept-hero-text p{
margin-top:8px;
opacity:0.9;
color:#ffffff;
}


.price-hero{
width:100%;
margin:0;
position:relative;
overflow:hidden;
}
.price-hero img{
width:100%;
height:420px;
object-fit:cover;
display:block;
}
.price-hero-overlay{
position:absolute;
inset:0;
background:rgba(180,180,180,0.35);
}
.price-hero-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:#ffffff;
}
.price-hero-text h1{
margin:0;
font-weight:500;
letter-spacing:2px;
color:#ffffff;
}
.price-hero-text p{
margin-top:8px;
opacity:0.9;
color:#ffffff;
}


.staff-hero{
width:100%;
margin:0;
position:relative;
overflow:hidden;
}
.staff-hero img{
width:100%;
height:420px;
object-fit:cover;
object-position:center 28%;
display:block;
}
.staff-hero-overlay{
position:absolute;
inset:0;
background:rgba(180,180,180,0.35);
}
.staff-hero-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:#ffffff;
}
.staff-hero-text h1{
margin:0;
font-weight:500;
letter-spacing:2px;
color:#ffffff;
}
.staff-hero-text p{
margin-top:8px;
opacity:0.9;
color:#ffffff;
}


.contact-hero{
width:100%;
margin:0;
position:relative;
overflow:hidden;
}
.contact-hero img{
width:100%;
height:420px;
object-fit:cover;
object-position:center 45%;
display:block;
}
.contact-hero-overlay{
position:absolute;
inset:0;
background:rgba(180,180,180,0.35);
}
.contact-hero-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:#ffffff;
}
.contact-hero-text h1{
margin:0;
font-weight:500;
letter-spacing:2px;
color:#ffffff;
}
.contact-hero-text p{
margin-top:8px;
opacity:0.9;
color:#ffffff;
}


.photo-strip{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:20px;
padding:40px 6vw 80px;
}
.photo-item{opacity:0;transform:translateY(40px);transition:all .9s ease;}
.photo-item img{width:100%;height:260px;object-fit:cover;display:block; vertical-align:top;}
.photo-item.show{opacity:1;transform:translateY(0);}
.photo-item:nth-child(1){transition-delay:.1s;}
.photo-item:nth-child(2){transition-delay:.2s;}
.photo-item:nth-child(3){transition-delay:.3s;}
.photo-item:nth-child(4){transition-delay:.4s;}
.photo-item:nth-child(5){transition-delay:.5s;}
.photo-item:nth-child(6){transition-delay:.6s;}
