/* ========================================
   Kelifornia Hair — Stylesheet
   Mix of JT Hair Salon + Miki Beauty Studio
   ======================================== */

:root {
  --bg: #FFFDF9;
  --white: #FFFFFF;
  --sand: #FFF3E6;
  --sand-light: #FFF8F0;
  --peach: #FFBF9B;
  --coral: #FF8E72;
  --pink: #FFB5C2;
  --pink-light: #FFE0E6;
  --gold: #E0A848;
  --gold-light: #F0C060;
  --gold-soft: #FFF0C8;
  --gold-bg: #FFFAEE;
  --ocean: #5CC8D4;
  --ocean-light: #E0F6F8;
  --ocean-deep: #3AA8B8;
  --seafoam: #A8E6CF;
  --seafoam-light: #E8FBF0;
  --dark: #4A3728;
  --black: #3D2E22;
  --text: #4A3728;
  --muted: #8B7565;
  --line: #FFE8D6;
  --line-strong: #F0D4B8;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.3s ease; }

.container { width: min(1100px, 92vw); margin: 0 auto; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(200, 169, 110, 0.12);
  box-shadow: 0 2px 20px rgba(46, 44, 40, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--dark);
  transition: color 0.4s ease;
}

.site-header.scrolled .nav-logo { color: var(--gold); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.3s ease;
}

.site-header.scrolled .site-nav a { color: var(--muted); }
.site-nav a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 50px;
  transition: background 0.3s ease, transform 0.2s ease !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  display: inline-block;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 28px;
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Shared Section Styles ---------- */
.section { padding: clamp(72px, 9vw, 110px) 0; }

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.30em;
  font-size: 0.62rem;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.lead {
  color: var(--muted);
  max-width: 54ch;
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg,
    #FFFFFF 0%,
    #FFFDF9 15%,
    #FFF8EE 35%,
    #FFEDDA 55%,
    #FFE0C4 75%,
    #F5C888 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 720px;
}

.hero-logo {
  width: 300px;
  max-width: 70vw;
  margin: 0 auto 36px;
  animation: fadeUp 1s ease forwards;
}

.hero .eyebrow {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  animation: fadeUp 1s ease 0.15s forwards;
  opacity: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.0;
  color: var(--dark);
  margin-bottom: 1.4rem;
  animation: fadeUp 1s ease 0.3s forwards;
  opacity: 0;
}
.hero h1 em {
  font-weight: 400;
  font-style: italic;
  color: #B8862D;
}

.hero-sub {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  max-width: 440px;
  margin: 0 auto 2.4rem;
  line-height: 1.75;
  animation: fadeUp 1s ease 0.45s forwards;
  opacity: 0;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.6s forwards;
  opacity: 0;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: var(--gold-light);
  opacity: 0.4;
  animation: scrollPulse 2s ease-in-out infinite;
}

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

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

/* ---------- Marquee Strip ---------- */
.marquee-strip {
  background: linear-gradient(90deg, #8FD4DE 0%, #A8DFE6 50%, #8FD4DE 100%);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 3rem;
  animation: slideLoop 25s linear infinite;
}

.marquee-track span {
  color: rgba(30, 80, 100, 0.85);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding-left: 1.8rem;
}

.marquee-track span::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes slideLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Stats ---------- */
.stats-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 80px) 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-left: 1px solid var(--line);
}
.stat-card:first-child { border-left: none; }

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.stat-card strong em {
  font-style: normal;
  font-size: 0.55em;
  color: var(--coral);
  font-weight: 500;
  margin-left: 0.1em;
}

.stat-card span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- About ---------- */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text .lead {
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.85;
}

.about-quote {
  border-left: 3px solid var(--gold);
  margin: 28px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--text);
  background: var(--sand-light);
  padding: 24px 28px;
  border-radius: 0 8px 8px 0;
  line-height: 1.55;
}
.about-quote p { margin: 0 0 14px; }
.about-quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.about-stats {
  display: flex;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.about-stat {
  flex: 1;
  text-align: center;
  border-right: 1px solid var(--line);
}
.about-stat:last-child { border-right: none; }

.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
}
.about-stat span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-visual { position: relative; }

.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 8px;
  display: block;
  box-shadow: 0 20px 50px -20px rgba(74, 55, 40, 0.25);
}

.about-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 140px; height: 140px;
  background: var(--gold-bg);
  border-radius: 4px;
  z-index: -1;
}

/* ---------- Services ---------- */
.services { background: var(--sand); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 4px;
  border: 1px solid var(--line);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE8D6 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(224,168,72,0.15);
  border-color: var(--gold-light);
}
.service-card:hover .card-num { color: var(--coral) !important; opacity: 1; }

.card-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--text);
  transition: color 0.5s ease;
}

.service-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.75;
  transition: color 0.5s ease;
}

.service-card--cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--ocean-light) 0%, var(--seafoam-light) 100%);
  border-color: var(--ocean);
}
.service-card--cta:hover {
  background: linear-gradient(135deg, var(--ocean-light) 0%, #D0F0E8 100%);
  border-color: var(--ocean);
}

/* ---------- Opportunities / Station Rental ---------- */
.opportunities {
  background: var(--sand);
}

.opp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.opp-text .lead {
  margin: 18px 0 32px;
  max-width: 520px;
}

.opp-perks {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 12px;
}

.opp-perk {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.opp-perk-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
  min-width: 40px;
  padding-top: 2px;
}

.opp-perk-body {
  flex: 1;
}

.opp-perk-title {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}

.opp-perk-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.opp-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 42px 38px;
  box-shadow: 0 24px 60px -30px rgba(74, 55, 40, 0.18);
}

.opp-form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 6px;
}

.opp-form-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-input,
.form-textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--sand-light);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color 0.25s ease, background 0.25s ease;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
  font-family: var(--font-body);
}

.form-actions {
  margin-top: 24px;
}

.form-submit { width: 100%; cursor: pointer; }

.opp-confirm {
  text-align: center;
  padding: 36px 0 12px;
}

.opp-confirm .check {
  width: 54px;
  height: 54px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--gold);
}

.opp-confirm .check svg { width: 24px; height: 24px; }

.opp-confirm h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 8px;
}

.opp-confirm p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .opp-grid { grid-template-columns: 1fr; gap: 48px; }
  .opp-form-wrap { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- Experience / Ritual ---------- */
.experience {
  background: linear-gradient(135deg, #FFEAD0 0%, #FFD4B8 30%, #FFC0A8 60%, #FFB5C2 100%);
  color: var(--dark);
}
.experience .eyebrow { color: var(--dark); opacity: 0.6; }
.experience .section-title { color: var(--dark); }

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
}

.ritual-step span {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.ritual-step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--dark);
}

.ritual-step p {
  font-size: 0.88rem;
  color: rgba(74,55,40,0.65);
  line-height: 1.75;
}

/* ---------- Gallery ---------- */
.gallery { background: var(--white); }

.gallery .lead { margin-bottom: 40px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  background: var(--sand-light);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(74,55,40,0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }

.gallery-cta {
  text-align: center;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--white); }

.testimonial-carousel { margin-top: 40px; }

.testimonial-viewport {
  overflow: hidden;
  border-radius: 8px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  flex: 0 0 33.333%;
  padding: 40px 32px;
  background: var(--sand-light);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0 12px;
  min-width: calc(33.333% - 24px);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.4;
}

.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text);
  margin: 8px 0 20px;
  font-style: italic;
}

.testimonial-card cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-card cite strong {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.testimonial-card cite span {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all 0.3s ease;
}
.carousel-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line-strong);
  transition: all 0.3s ease;
  cursor: pointer;
}
.carousel-dots span.active {
  background: var(--gold);
  transform: scale(1.5);
}

/* ---------- Contact ---------- */
.contact { background: var(--ocean-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.contact-item strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 2px;
}
.contact-item div {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.contact-item a { color: var(--gold); }
.contact-item a:hover { text-decoration: underline; }

.contact-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold);
  background: var(--white);
  transition: all 0.3s ease;
}
.social-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.hours-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px;
}

.hours-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--text);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .closed { color: var(--gold); font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--sand);
  padding: 48px 0 32px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  width: 120px;
  opacity: 0.7;
}

.footer-nav {
  display: flex;
  gap: 28px;
}
.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s ease;
}
.footer-nav a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 16px; }
.footer-social a {
  color: var(--muted);
  transition: color 0.3s ease;
}
.footer-social a:hover { color: var(--coral); }

.site-footer small {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  opacity: 0.5;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(250,250,248,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { color: var(--text) !important; font-size: 0.85rem; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .about-img { aspect-ratio: 4/5; }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ritual-grid { grid-template-columns: 1fr; gap: 36px; }

  .testimonial-card {
    flex: 0 0 50%;
    min-width: calc(50% - 24px);
  }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .stat-grid { gap: 0; }
  .stat-card { padding: 1rem 0.5rem; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-logo { width: 240px; }

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

  .testimonial-card {
    flex: 0 0 100%;
    min-width: calc(100% - 24px);
  }

  .stat-grid { grid-template-columns: 1fr; gap: 0; }
  .stat-card { border-left: none; border-bottom: 1px solid var(--line); padding: 20px 0; }
  .stat-card:last-child { border-bottom: none; }

  .about-stats { flex-direction: column; gap: 16px; }
  .about-stat { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
  .about-stat:last-child { border-bottom: none; }

  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 16px; }

  .btn { padding: 12px 24px; font-size: 0.68rem; }
}
