/* =========================================
   LUMIÈRE Hair Salon — assets/css/salon.css
   ========================================= */

/* ---------- Custom Properties ---------- */
:root {
  --gold:       #C9A540;
  --gold-light: #E2C874;
  --gold-dark:  #8B6F22;
  --gold-grad:  linear-gradient(135deg, #C9A540 0%, #E8D078 50%, #C9A540 100%);

  --white:  #FFFFFF;
  --cream:  #FAF7F2;
  --cream2: #F2EDE3;
  --dark:   #1A1714;
  --dark2:  #2C2820;

  --text:       #1A1714;
  --text-mid:   #4A4540;
  --text-muted: #8C8680;
  --border:     #E4DECE;

  --nav-h: 76px;
  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.85;
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; height: auto; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3,
.nav-logo .logo-main,
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

/* ---------- Layout ---------- */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
.sec        { padding: 110px 0; }
.sec-cream  { background: var(--cream); }
.sec-dark   { background: var(--dark); }

/* ---------- Section Header ---------- */
.sec-head {
  text-align: center;
  margin-bottom: 72px;
}
.sec-label {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.sec-label-light { color: var(--gold-light); }
.sec-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--dark);
  line-height: 1.2;
}
.sec-title-light { color: var(--white); }
.sec-sub {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Ornament（見出し装飾） */
.ornament {
  display: block;
  width: 160px;
  margin: 1.4rem auto 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  position: relative;
}
.ornament::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px;
  height: 6px;
  background: var(--gold);
}
.ornament-light {
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}
.ornament-light::before { background: var(--gold-light); }

/* ========================================
   NAVIGATION
   ======================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.75; }
.logo-main {
  font-size: 1.45rem;
  letter-spacing: 0.2em;
  color: var(--white);
  transition: color 0.4s;
}
#navbar.scrolled .logo-main { color: var(--dark); }
.logo-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
/* WordPress wp_nav_menu が生成する li にも対応 */
.nav-links li { list-style: none; }

.nav-link,
.nav-links li a {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.25s;
  position: relative;
  text-decoration: none;
}
.nav-link::after,
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-link:hover,
.nav-links li a:hover { color: var(--gold-light); }
.nav-link:hover::after,
.nav-links li a:hover::after { width: 100%; }

#navbar.scrolled .nav-link,
#navbar.scrolled .nav-links li a { color: var(--text-mid); }
#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-links li a:hover { color: var(--gold); }

/* Reserve button */
.nav-reserve {
  padding: 0.55rem 1.3rem !important;
  border: 1px solid rgba(201, 165, 64, 0.7) !important;
  border-radius: 2px;
  color: var(--gold-light) !important;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  transition: background 0.25s, color 0.25s !important;
}
.nav-reserve::after { display: none !important; }
.nav-reserve:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-color: var(--gold) !important;
}
#navbar.scrolled .nav-reserve { color: var(--gold) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.35s var(--ease), opacity 0.35s, background 0.4s;
  transform-origin: center;
}
#navbar.scrolled .hamburger span,
.hamburger.open span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: translateY(9.25px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-9.25px) rotate(-45deg); }

/* ========================================
   HERO
   ======================================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 60%, rgba(201, 165, 64, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 75% 30%, rgba(201, 165, 64, 0.05) 0%, transparent 55%),
    linear-gradient(160deg, #0E0C0A 0%, #1E1A14 40%, #2A2318 70%, #1A1510 100%);
  transform: scale(1.04);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10, 8, 6, 0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  opacity: 0;
  transform: translateY(20px);
}
.hero-title {
  font-size: clamp(4rem, 12vw, 9rem);
  letter-spacing: 0.25em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(28px);
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.12em;
  margin-bottom: 2.4rem;
  opacity: 0;
  transform: translateY(20px);
}
.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold-grad);
  margin: 0 auto 2.4rem;
  opacity: 0;
  transform: scaleX(0);
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
}
.btn-outline-gold {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border: 1px solid var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  transition: background 0.3s, color 0.3s;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
}
.btn-text-light {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s;
}
.btn-text-light:hover { color: var(--gold-light); }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.4);
}
.scroll-line-anim {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ========================================
   ABOUT
   ======================================== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.photo-frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.photo-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold);
  z-index: 1;
  transform: translate(14px, 14px);
  pointer-events: none;
}
.photo-inner {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 60% 70% at 50% 35%, rgba(201, 165, 64, 0.12) 0%, transparent 65%),
    linear-gradient(160deg, #2C2620 0%, #1A1410 50%, #3A2E1E 100%);
  transition: transform 0.8s var(--ease);
}
/* 実際の画像がある場合 */
.photo-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.photo-frame:hover .photo-inner,
.photo-frame:hover .photo-real { transform: scale(1.03); }

.photo-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 88px;
  height: 88px;
  background: var(--dark);
  border: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.badge-small {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
}
.badge-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 300;
  line-height: 1;
}
.about-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.4;
  margin-bottom: 1.4rem;
  color: var(--dark);
}
.about-copy p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.9;
}
.stats-row {
  display: flex;
  align-items: center;
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.stat-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ========================================
   SERVICES
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.4rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-grad);
  transition: width 0.4s var(--ease);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(201, 165, 64, 0.3);
}
.svc-card:hover::after { width: 100%; }
.svc-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  line-height: 1;
}
.svc-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
}
.svc-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}
.svc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
}

/* ========================================
   FEATURES
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.feat-item { text-align: center; padding: 0 1rem; }
.feat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  line-height: 1;
  margin-bottom: 1.2rem;
  transition: color 0.3s;
}
.feat-item:hover .feat-num { color: var(--gold); }
.feat-item h3 { font-size: 1.1rem; margin-bottom: 0.8rem; color: var(--dark); }
.feat-item p  { font-size: 0.86rem; color: var(--text-muted); line-height: 1.85; }

/* ========================================
   STAFF
   ======================================== */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.staff-card {
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease);
}
.staff-card:hover { box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1); }
.staff-avatar {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}
.avatar-1 {
  background:
    radial-gradient(ellipse 40% 55% at 50% 42%, rgba(255, 220, 180, 0.5) 0%, transparent 60%),
    radial-gradient(circle 20% at 50% 22%, rgba(220, 180, 140, 0.7) 0%, transparent 50%),
    linear-gradient(180deg, #C8B89A 0%, #A08060 40%, #6B4E35 100%);
}
.avatar-2 {
  background:
    radial-gradient(ellipse 42% 55% at 50% 44%, rgba(210, 185, 160, 0.5) 0%, transparent 60%),
    radial-gradient(circle 20% at 50% 22%, rgba(190, 160, 130, 0.7) 0%, transparent 50%),
    linear-gradient(180deg, #9A8A70 0%, #6A5840 40%, #3A2E20 100%);
}
.avatar-3 {
  background:
    radial-gradient(ellipse 40% 55% at 50% 42%, rgba(255, 225, 195, 0.5) 0%, transparent 60%),
    radial-gradient(circle 20% at 50% 22%, rgba(235, 200, 165, 0.7) 0%, transparent 50%),
    linear-gradient(180deg, #D4B89A 0%, #B0906A 40%, #7A5840 100%);
}
.staff-body    { padding: 1.6rem 1.8rem 2rem; }
.staff-role {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.staff-name { font-size: 1.35rem; color: var(--dark); margin-bottom: 0.8rem; }
.staff-bio  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; }
.staff-exp {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
}
.g-item { overflow: hidden; }
.g-tall  { grid-row: span 2; }
.g-wide  { grid-column: span 2; }
.g-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  transition: transform 0.6s var(--ease);
}
.g-item:hover .g-img { transform: scale(1.05); }
.gi-1 {
  background:
    radial-gradient(ellipse 70% 50% at 30% 60%, rgba(201, 165, 64, 0.25) 0%, transparent 60%),
    linear-gradient(135deg, #2A2018 0%, #1A1208 50%, #3A2C14 100%);
  min-height: 460px;
}
.gi-2 {
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(180, 140, 80, 0.2) 0%, transparent 60%),
    linear-gradient(160deg, #1E1A10 0%, #2E240E 100%);
}
.gi-3 {
  background:
    radial-gradient(ellipse 60% 80% at 40% 70%, rgba(220, 180, 100, 0.2) 0%, transparent 65%),
    linear-gradient(200deg, #281E0C 0%, #181208 100%);
}
.gi-4 {
  background:
    radial-gradient(ellipse 70% 50% at 60% 50%, rgba(201, 165, 64, 0.18) 0%, transparent 65%),
    linear-gradient(120deg, #221C10 0%, #30260E 100%);
}
.gi-5 {
  background:
    linear-gradient(to right, rgba(201, 165, 64, 0.15), rgba(201, 165, 64, 0.05)),
    linear-gradient(170deg, #1A1410 0%, #2C2410 50%, #1C1808 100%);
  min-height: 220px;
}

/* ========================================
   ACCESS
   ======================================== */
.access-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.info-list {}
.info-row {
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.info-row:first-child { border-top: 1px solid var(--border); }
.info-row dt {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  font-weight: 500;
  padding-top: 0.15rem;
}
.info-row dd { color: var(--text-mid); line-height: 1.7; }
.info-tel {
  color: var(--gold-dark);
  border-bottom: 1px solid currentColor;
  transition: color 0.2s;
}
.info-tel:hover { color: var(--gold); }
.btn-gold-solid {
  display: inline-block;
  margin-top: 2.4rem;
  padding: 1rem 2.8rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.25em;
  transition: background 0.3s, box-shadow 0.3s;
}
.btn-gold-solid:hover {
  background: var(--gold-dark);
  box-shadow: 0 6px 20px rgba(201, 165, 64, 0.3);
}
.map-placeholder {
  aspect-ratio: 1;
  background:
    repeating-linear-gradient(0deg,   rgba(201,165,64,0.06) 0px, rgba(201,165,64,0.06) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg,  rgba(201,165,64,0.06) 0px, rgba(201,165,64,0.06) 1px, transparent 1px, transparent 60px),
    var(--cream2);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.map-pin  { font-size: 2rem; color: var(--gold); }
.map-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--dark); }
.map-area { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--text-muted); }

/* ========================================
   FOOTER
   ======================================== */
#footer {
  background: var(--dark);
  padding: 4rem 0 2.5rem;
}
.footer-inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  letter-spacing: 0.3em;
  color: var(--white);
  margin-bottom: 2rem;
  transition: color 0.25s;
}
.footer-logo:hover { color: var(--gold-light); }
.footer-nav,
.footer-inner nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.4rem;
  padding: 0;
  list-style: none;
}
.footer-nav a,
.footer-inner nav a,
.footer-inner nav ul li a {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.25s;
  text-decoration: none;
}
.footer-nav a:hover,
.footer-inner nav a:hover,
.footer-inner nav ul li a:hover { color: var(--gold); }
/* WordPress wp_nav_menu の ul/li をリセット */
.footer-inner nav ul { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 2rem; list-style: none; padding: 0; margin: 0; }
.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(201, 165, 64, 0.4);
  margin: 0 auto 1.8rem;
}
.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.25);
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
[data-reveal],
[data-reveal="left"],
[data-reveal="right"] {
  opacity: 0;
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
[data-reveal]         { transform: translateY(36px); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal].revealed,
[data-reveal="left"].revealed,
[data-reveal="right"].revealed { opacity: 1; transform: none; }

/* Card stagger */
.services-grid .svc-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .svc-card:nth-child(2) { transition-delay: 0.12s; }
.services-grid .svc-card:nth-child(3) { transition-delay: 0.19s; }
.services-grid .svc-card:nth-child(4) { transition-delay: 0.26s; }
.services-grid .svc-card:nth-child(5) { transition-delay: 0.33s; }
.services-grid .svc-card:nth-child(6) { transition-delay: 0.40s; }
.staff-card:nth-child(1)  { transition-delay: 0.05s; }
.staff-card:nth-child(2)  { transition-delay: 0.15s; }
.staff-card:nth-child(3)  { transition-delay: 0.25s; }
.feat-item:nth-child(1)   { transition-delay: 0.05s; }
.feat-item:nth-child(2)   { transition-delay: 0.15s; }
.feat-item:nth-child(3)   { transition-delay: 0.25s; }

/* ========================================
   RESPONSIVE — TABLET (≤ 900px)
   ======================================== */
@media (max-width: 900px) {
  .sec { padding: 80px 0; }

  /* Nav mobile */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 0 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li   { width: 100%; }
  .nav-link,
  .nav-links li a {
    display: block;
    padding: 1rem 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .nav-link:hover,
  .nav-links li a:hover { color: var(--gold-light) !important; }
  .nav-reserve { margin-top: 1.2rem; text-align: center; color: var(--gold) !important; }

  .about-layout         { grid-template-columns: 1fr; gap: 50px; }
  .about-photo          { max-width: 420px; margin: 0 auto; }
  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .features-grid        { grid-template-columns: 1fr; gap: 2.5rem; }
  .feat-item            { padding: 0; text-align: left; display: flex; gap: 1.5rem; align-items: flex-start; }
  .feat-num             { font-size: 2.5rem; min-width: 3rem; }
  .staff-grid           { grid-template-columns: 1fr 1fr; }
  .gallery-grid         { grid-template-columns: 1fr 1fr; }
  .g-tall               { grid-row: span 1; }
  .g-tall .g-img        { min-height: 240px; }
  .g-wide               { grid-column: span 2; }
  .access-layout        { grid-template-columns: 1fr; gap: 3rem; }
  .map-placeholder      { aspect-ratio: 16 / 9; }
}

/* ========================================
   RESPONSIVE — MOBILE (≤ 580px)
   ======================================== */
@media (max-width: 580px) {
  :root { --nav-h: 66px; }
  .sec         { padding: 64px 0; }
  .sec-head    { margin-bottom: 48px; }
  .hero-title  { letter-spacing: 0.15em; }
  .hero-cta    { flex-direction: column; gap: 1.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .staff-grid  { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-wide      { grid-column: span 1; }
  .g-img       { min-height: 200px !important; }
  .stats-row   { gap: 0; }
  .stat-item   { padding: 0 0.6rem; }
  .stat-num    { font-size: 2rem; }
  .info-row    { grid-template-columns: 5em 1fr; }
}
