/* ══════════════════════════════════════════════════════════
   FIZYOTERAPI SITE — LUXURY EDITORIAL DESIGN
   ══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  --black: #101828;
  --black-soft: #1d2939;
  --black-muted: #2d3a4a;
  --white: #ffffff;
  --cream: #f8f9fb;
  --cream-dark: #eef1f5;
  --warm-bg: #f2f4f8;
  --gold: #EAA832;
  --gold-hover: #D4952A;
  --gold-pale: rgba(234,168,50,0.08);
  --gold-glow: rgba(234,168,50,0.2);
  --sage: #3563a0;
  --sage-light: rgba(53,99,160,0.07);
  --terra: #d64c4c;
  --text: #101828;
  --text-mid: #475467;
  --text-light: #7a8ca5;
  --text-white: #f5f7fa;
  --text-white-soft: rgba(245,247,250,0.6);
  --border: rgba(0,0,0,0.06);
  --border-strong: rgba(0,0,0,0.12);
  --border-white: rgba(255,255,255,0.1);
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max-w: 1360px;
}

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

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.wrap {
  width: min(calc(100% - 48px), var(--max-w));
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════
   CURSOR GLOW
   ══════════════════════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,126,0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 300ms;
  opacity: 0;
}

body:hover .cursor-glow { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   SCROLL PROGRESS
   ══════════════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  width: 0; height: 2px;
  background: var(--gold);
}

/* ══════════════════════════════════════════════════════════
   HEADER — wide transparent bar
   ══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 500ms var(--ease);
}

.header-bar {
  padding: 16px 32px;
  transition: all 500ms var(--ease);
}

.site-header.scrolled .header-bar {
  padding: 8px 32px;
  background: rgba(15,15,15,0.88);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
}

.brand {
  display: flex; align-items: center; gap: 12px;
  min-width: 0;
  margin-right: auto;
}

.brand-mark {
  width: 90px; height: 90px;
  display: grid; place-items: center;
  border-radius: 0;
  flex-shrink: 0;
  transition: transform 400ms var(--ease);
  overflow: visible;
}
.brand-mark img { width: 100%; height: 100%; display: block; object-fit: contain; }

.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.08); }

.brand-copy { min-width: 0; }
.brand-copy strong { font-size: 0.88rem; font-weight: 700; color: var(--text-white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }

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

.site-nav a {
  padding: 8px 16px;
  color: rgba(250,246,241,0.5);
  font-size: 0.84rem; font-weight: 600;
  border-radius: 100px;
  transition: all 200ms;
  white-space: nowrap;
}

.site-nav a:hover, .site-nav a:focus-visible, .site-nav-link.is-active {
  color: var(--text-white);
  background: rgba(255,255,255,0.07);
}

.header-right {
  display: flex; align-items: center; gap: 10px;
  margin-left: 12px;
}

.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  height: 40px; padding: 0 18px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text-white-soft);
  font-size: 0.82rem; font-weight: 700;
  transition: all 250ms var(--ease);
  white-space: nowrap;
}

.header-phone:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-white);
}

.header-phone svg { opacity: 0.6; flex-shrink: 0; }

.header-cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; padding: 0 24px;
  border-radius: 100px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.84rem; font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 250ms var(--ease);
}

.header-cta:hover {
  background: var(--gold-hover);
  transform: scale(1.03);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  border: 0; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block; width: 16px; height: 1.5px;
  border-radius: 2px; background: var(--text-white);
  transition: all 300ms var(--ease);
}

.header-inner.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.header-inner.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }

/* ══════════════════════════════════════════════════════════
   HERO — FULLSCREEN CINEMATIC
   ══════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}

.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(17,17,17,0.4) 0%, rgba(17,17,17,0.2) 40%, rgba(17,17,17,0.7) 100%),
    linear-gradient(90deg, rgba(17,17,17,0.6) 0%, transparent 60%);
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 0 0 max(24px, calc((100vw - var(--max-w)) / 2 + 24px));
  max-width: 900px;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.68rem; font-weight: 800;
}

.hero-tag::before {
  content: ""; width: 40px; height: 1px; background: var(--gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-white);
}

.hero-desc {
  margin-top: 24px;
  max-width: 620px;
  color: var(--text-white-soft);
  font-size: 1.05rem; line-height: 1.8;
}

.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 40px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 56px; padding: 0 36px;
  border-radius: 100px;
  font-weight: 700; font-size: 0.92rem;
  transition: all 300ms var(--ease);
  cursor: pointer; border: none;
}

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

.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200,169,126,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* Hero stats bar at bottom */
.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(17,17,17,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-stat {
  flex: 1;
  display: flex; align-items: center; gap: 14px;
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.hero-stat:last-child { border-right: none; }

.hero-stat-value {
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  color: var(--text-white-soft);
  font-size: 0.78rem; font-weight: 600;
  max-width: 12ch;
  line-height: 1.4;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 100px; right: max(24px, calc((100vw - var(--max-w)) / 2 + 24px));
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-white-soft);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
}

.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ══════════════════════════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════════════════════════ */
.marquee-section {
  background: var(--black);
  padding: 20px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marquee-track {
  display: flex; gap: 48px;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-white-soft);
  flex-shrink: 0;
}

.marquee-track span::after {
  content: "✦";
  margin-left: 48px;
  color: var(--gold);
  font-style: normal;
  font-size: 0.7rem;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════
   HIGHLIGHTS
   ══════════════════════════════════════════════════════════ */
.highlights-section {
  background: var(--black);
  padding: 80px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.highlight-card {
  padding: 36px 28px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 400ms var(--ease);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 400ms;
}

.highlight-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(200,169,126,0.2);
  transform: translateY(-6px);
}

.highlight-card:hover::before { opacity: 1; }

.highlight-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--gold-pale);
  color: var(--gold);
  font-weight: 800; font-size: 0.75rem;
  margin-bottom: 20px;
  border: 1px solid rgba(200,169,126,0.15);
}

.highlight-card strong {
  display: block; margin-bottom: 10px;
  color: var(--text-white);
  font-size: 1rem; font-weight: 700;
}

.highlight-card span {
  color: var(--text-white-soft);
  font-size: 0.88rem; line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   COMMON
   ══════════════════════════════════════════════════════════ */
.tag {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem; font-weight: 800;
}

.tag::before {
  content: ""; width: 24px; height: 1px; background: currentColor;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 28ch;
}

.section-sub {
  margin-top: 16px;
  color: var(--text-mid);
  font-size: 1rem; line-height: 1.8;
  max-width: 52ch;
}

/* ══════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════ */
.about-section {
  padding: 140px 0;
  background: var(--cream);
}

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

.about-left .section-title { margin-bottom: 20px; }

.about-points {
  display: grid; gap: 16px;
  margin-top: 40px;
}

.about-point {
  display: flex; gap: 16px;
  padding: 20px 24px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 350ms var(--ease);
}

.about-point:hover {
  transform: translateX(8px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.about-point-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--gold-pale);
  color: var(--gold);
  font-weight: 900; font-size: 0.8rem;
  border: 1px solid rgba(200,169,126,0.15);
}

.about-point strong {
  display: block; font-size: 0.92rem; font-weight: 700;
  margin-bottom: 4px;
}

.about-point p {
  color: var(--text-mid);
  font-size: 0.85rem; line-height: 1.6;
}

.about-right { display: grid; gap: 20px; }

.about-text-card {
  padding: 40px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--border);
}

.about-text-card p {
  color: var(--text-mid);
  font-size: 0.96rem; line-height: 1.85;
}

.about-text-card p + p { margin-top: 18px; }

.about-side-img {
  border-radius: 24px;
  overflow: hidden;
  height: 320px;
}

.about-side-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ══════════════════════════════════════════════════════════
   SERVICES — BENTO
   ══════════════════════════════════════════════════════════ */
.services-section {
  padding: 140px 0;
  background: var(--cream-dark);
}

.services-header { margin-bottom: 56px; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 16px;
}

.bento-card {
  padding: 36px 32px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: all 400ms var(--ease);
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
  border-color: var(--gold);
}

/* Bento layout: first 2 cards span 6, rest span 3 */
.bento-card:nth-child(1) { grid-column: span 6; grid-row: span 2; }
.bento-card:nth-child(2) { grid-column: span 6; }
.bento-card:nth-child(3) { grid-column: span 6; }
.bento-card:nth-child(4) { grid-column: span 4; }
.bento-card:nth-child(5) { grid-column: span 4; }
.bento-card:nth-child(6) { grid-column: span 4; }
.bento-card:nth-child(7) { grid-column: span 6; }
.bento-card:nth-child(8) { grid-column: span 6; }

.bento-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--black);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.9rem; font-weight: 500;
  margin-bottom: 24px;
  transition: all 300ms var(--ease);
}

.bento-card:hover .bento-num {
  background: var(--gold);
  color: var(--black);
  transform: rotate(-6deg) scale(1.1);
}

.bento-card h3 {
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 12px;
}

.bento-card p {
  color: var(--text-mid);
  font-size: 0.9rem; line-height: 1.7;
  margin-top: auto;
}

/* ══════════════════════════════════════════════════════════
   PROCESS — TIMELINE
   ══════════════════════════════════════════════════════════ */
.process-section {
  padding: 140px 0;
  background: var(--black);
}

.process-header { margin-bottom: 64px; }
.process-section .tag { color: var(--gold); }
.process-section .tag::before { background: var(--gold); }
.process-section .section-title { color: var(--text-white); }

.timeline {
  display: grid; gap: 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 39px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(200,169,126,0.1));
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  position: relative;
}

.timeline-item + .timeline-item {
  border-top: 1px solid rgba(255,255,255,0.04);
}

.timeline-num {
  width: 80px; height: 80px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--black-muted);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  position: relative; z-index: 1;
  transition: all 400ms var(--ease);
}

.timeline-item:hover .timeline-num {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1);
}

.timeline-body { padding-top: 16px; }

.timeline-body h3 {
  font-size: 1.4rem; font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  font-family: var(--font-serif);
}

.timeline-body p {
  color: var(--text-white-soft);
  font-size: 0.95rem; line-height: 1.8;
  max-width: 52ch;
}

/* ══════════════════════════════════════════════════════════
   GALLERY — MASONRY
   ══════════════════════════════════════════════════════════ */
.gallery-section {
  padding: 60px 0;
  background: var(--cream);
}

.gallery-header { margin-bottom: 24px; }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
}

.gallery-card {
  position: relative; overflow: hidden;
  border-radius: 14px;
  cursor: zoom-in;
  isolation: isolate;
}

.gallery-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5));
  z-index: 1;
  transition: opacity 300ms;
}

.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

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

.gallery-card:nth-child(1) { grid-column: span 4; min-height: 160px; }
.gallery-card:nth-child(2) { grid-column: span 4; min-height: 160px; }
.gallery-card:nth-child(3) { grid-column: span 4; min-height: 160px; }
.gallery-card:nth-child(4) { grid-column: span 3; min-height: 140px; }
.gallery-card:nth-child(5) { grid-column: span 3; min-height: 140px; }
.gallery-card:nth-child(6) { grid-column: span 3; min-height: 140px; }
.gallery-card:nth-child(7) { grid-column: span 3; min-height: 140px; }

.gallery-caption {
  position: absolute;
  inset: auto 14px 14px 14px;
  z-index: 2;
  padding: 12px 18px;
  border-radius: 12px;
  color: white;
  font-size: 0.85rem; font-weight: 600;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(16px);
  opacity: 0; transform: translateY(12px);
  transition: all 400ms var(--ease);
}

.gallery-card:hover .gallery-caption {
  opacity: 1; transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════ */
.contact-section {
  padding: 140px 0;
  background: var(--cream-dark);
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px;
  border-radius: 36px;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  position: relative; overflow: hidden;
}

.contact-inner::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,126,0.06), transparent 70%);
  pointer-events: none;
}

.contact-info { position: relative; z-index: 1; }

.contact-info .tag { color: var(--gold); }
.contact-info .tag::before { background: var(--gold); }
.contact-info .section-title { color: var(--text-white); }
.contact-info .section-sub { color: var(--text-white-soft); }

.contact-cards {
  display: grid; gap: 12px;
  margin: 36px 0;
}

.contact-card {
  padding: 24px 28px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 350ms var(--ease);
}

.contact-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200,169,126,0.25);
  transform: translateX(8px);
}

.contact-card h3 {
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-white-soft);
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-white-soft);
  font-size: 0.88rem; line-height: 1.6;
  margin-bottom: 8px;
}

.contact-card a {
  color: var(--gold); font-weight: 700; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 8px;
}

.contact-card a::after { content: "→"; transition: transform 250ms var(--ease); }
.contact-card:hover a::after { transform: translateX(6px); }

.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.social-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-weight: 600; font-size: 0.85rem; padding: 6px 12px; border: 1px solid var(--gold-glow); border-radius: 8px; transition: all 250ms var(--ease); text-decoration: none; }
.social-link:hover { background: var(--gold-pale); border-color: var(--gold); }
.social-link::after { display: none; }
.social-link svg { flex-shrink: 0; }

.schedule-block {
  padding: 28px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.schedule-block h3 {
  color: var(--text-white);
  font-size: 1rem; font-family: var(--font-serif);
  margin-bottom: 4px;
}

.schedule-note {
  color: var(--text-white-soft);
  font-size: 0.82rem;
  margin-bottom: 18px;
}

.schedule-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.schedule-item:last-child { border-bottom: none; padding-bottom: 0; }
.schedule-item span:first-child { color: var(--text-white); font-weight: 700; font-size: 0.88rem; }
.schedule-item span:last-child { color: var(--text-white-soft); font-size: 0.85rem; }

.contact-map-wrap {
  display: grid; gap: 16px;
  position: relative; z-index: 1;
}

.map-container {
  border-radius: 24px;
  overflow: hidden;
  height: 480px;
  border: 1px solid rgba(255,255,255,0.06);
}

.map-container iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(0.8) contrast(1.05);
}

.quick-actions {
  display: flex; gap: 10px;
}

.quick-action {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text-white-soft);
  font-size: 0.82rem; font-weight: 700;
  transition: all 250ms var(--ease);
}

.quick-action:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* ══════════════════════════════════════════════════════════
   APPOINTMENT FORM
   ══════════════════════════════════════════════════════════ */
.appointment-section {
  padding: 140px 0;
  background: var(--warm-bg);
}

.appointment-grid {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 72px;
  align-items: start;
}

.appointment-info .section-title { margin-bottom: 16px; }

.appointment-features {
  display: grid; gap: 16px;
  margin-top: 40px;
}

.appt-feature {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 0.92rem; font-weight: 600;
  color: var(--text);
  transition: all 300ms var(--ease);
}

.appt-feature:hover {
  transform: translateX(6px);
  border-color: var(--gold);
}

.appt-feature svg { color: var(--sage); flex-shrink: 0; }

.appointment-form-wrap {
  position: relative;
}

.appointment-form {
  padding: 44px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.05);
  display: grid; gap: 20px;
}

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

.form-group { display: grid; gap: 8px; }

.form-group label {
  font-size: 0.82rem; font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border-strong);
  border-radius: 14px;
  background: var(--cream);
  color: var(--text);
  font-size: 0.92rem;
  transition: all 250ms var(--ease);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-pale);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.btn-full { width: 100%; justify-content: center; }

.captcha-group label {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.9rem;
}
.form-spam-error {
  color: #dc2626;
  font-size: 0.84rem;
  margin-bottom: 10px;
  padding: 10px 14px;
  background: rgba(220,38,38,0.06);
  border-radius: 8px;
  border: 1px solid rgba(220,38,38,0.15);
}
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin: -4px 0 0;
}

.form-success {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  padding: 44px;
  border-radius: 28px;
  background: var(--white);
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.05);
}

.form-success svg { color: var(--sage); }

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem; font-weight: 400;
}

.form-success p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* ══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */
.faq-section {
  padding: 140px 0;
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 64px;
  align-items: start;
}

.faq-header { position: sticky; top: 110px; }

.faq-list { display: grid; gap: 12px; }

.faq-item {
  padding: 28px 32px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 300ms var(--ease);
}

.faq-item:hover, .faq-item[open] {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.faq-item summary {
  list-style: none; cursor: pointer;
  font-size: 1rem; font-weight: 700;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  font-size: 1.2rem; font-weight: 300;
  flex-shrink: 0;
  transition: all 350ms var(--ease);
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-item p {
  margin: 18px 0 0;
  color: var(--text-mid);
  line-height: 1.8; font-size: 0.95rem;
  padding-right: 52px;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
/* ── Footer CTA ── */
.footer-cta {
  padding: 100px 0 110px;
  text-align: center;
  background: var(--cream);
}

.footer-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-cta-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto 44px;
}

.footer-cta-buttons {
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
}

.footer-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 36px;
  border-radius: 14px;
  font-size: 1rem; font-weight: 600;
  transition: all 300ms var(--ease);
}

.footer-cta-btn--primary {
  background: var(--gold);
  color: var(--black);
}

.footer-cta-btn--primary:hover { background: #b8963f; transform: translateY(-2px); }

.footer-cta-btn--secondary {
  border: 1.5px solid rgba(0,0,0,0.2);
  color: var(--text);
  background: transparent;
}

.footer-cta-btn--secondary:hover { background: var(--text); color: var(--cream); border-color: var(--text); }

/* ── Footer ── */
.site-footer {
  padding: 0;
  background: #1a1a1a;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr;
  gap: 64px;
  padding-top: 90px;
  padding-bottom: 80px;
}

.footer-col--brand { display: flex; flex-direction: column; gap: 28px; }

.footer-brand-block {
  display: flex; align-items: center; gap: 14px;
}

.footer-logo {
  width: 100px; height: 100px;
  display: grid; place-items: center;
  border-radius: 0;
  flex-shrink: 0;
  overflow: visible;
}
.footer-logo img { width: 100%; height: 100%; display: block; object-fit: contain; }

.footer-name {
  color: #fff;
  font-size: 1.1rem; font-weight: 700;
}

.footer-address-text {
  color: rgba(255,255,255,0.35);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 32ch;
}

.footer-heading {
  display: flex; align-items: center; gap: 12px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.footer-heading::before {
  content: "";
  width: 22px; height: 2.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.footer-nav-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 18px;
}

.footer-nav-list a {
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
  transition: color 200ms;
}

.footer-nav-list a:hover { color: var(--gold); }

.footer-schedule {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 16px;
}

.footer-schedule li {
  display: flex; justify-content: space-between; gap: 24px;
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
}

.footer-schedule li .day { color: rgba(255,255,255,0.65); }

.footer-contact-list {
  display: flex; flex-direction: column; gap: 26px;
}

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

.footer-contact-item a {
  color: rgba(255,255,255,0.5);
  transition: color 200ms;
}

.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.25);
  font-size: 0.85rem;
}

/* ══════════════════════════════════════════════════════════
   FAB
   ══════════════════════════════════════════════════════════ */
.fab {
  position: fixed; right: 28px; bottom: 28px; z-index: 90;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 8px 32px rgba(200,169,126,0.35);
  transition: all 350ms var(--ease);
}

.fab:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 48px rgba(200,169,126,0.45);
  background: var(--gold-hover);
}

/* ══════════════════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════════════════ */
.lightbox:not([open]) {
  display: none;
}

.lightbox {
  width: min(94vw, 1200px);
  max-width: none;
  padding: 24px; border: 0;
  border-radius: 24px;
  background: rgba(17,17,17,0.96);
  color: white;
  margin: auto;
}

.lightbox[open] {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox::backdrop { background: rgba(0,0,0,0.8); backdrop-filter: blur(20px); }
.lightbox img { max-height: 78vh; max-width: 100%; object-fit: contain; border-radius: 16px; display: block; margin: 0 auto; }
.lightbox p { margin: 14px 0 0; color: rgba(255,255,255,0.5); font-size: 0.88rem; text-align: center; }

.lightbox-close {
  display: flex; align-items: center; justify-content: center;
  margin-left: auto; margin-bottom: 12px;
  width: 44px; height: 44px;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: white; cursor: pointer;
  transition: background 200ms;
}

.lightbox-close:hover { background: rgba(255,255,255,0.16); }

/* ══════════════════════════════════════════════════════════
   REVEAL ANIMATION
   ══════════════════════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 150ms; }
.delay-2 { transition-delay: 300ms; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE: TABLET
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .wrap { width: min(calc(100% - 32px), var(--max-w)); }

  .hero-content { max-width: 680px; }

  .hero-stats-bar { flex-wrap: wrap; }
  .hero-stat { flex: 1 1 50%; }
  .hero-stat:nth-child(2) { border-right: none; }

  .hero-scroll-hint { display: none; }

  .about-grid,
  .faq-grid,
  .contact-inner,
  .appointment-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-inner { padding: 40px; }

  .highlights-grid { grid-template-columns: repeat(2, 1fr); }

  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card, .bento-card:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .bento-card:nth-child(1) { grid-column: span 2; }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-card, .gallery-card:nth-child(n) {
    grid-column: span 1; min-height: 280px;
  }
  .gallery-card:nth-child(1) { grid-column: span 2; }

  .timeline::before { left: 39px; }

  .faq-header { position: static; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE: MOBILE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  .wrap { width: min(calc(100% - 20px), var(--max-w)); }

  .cursor-glow { display: none; }

  .header-bar { padding: 10px 16px; }
  .site-header.scrolled .header-bar { padding: 6px 16px; }

  .header-inner { position: relative; }

  .brand-copy { display: none; }
  .header-phone span { display: none; }
  .header-phone { padding: 0; width: 40px; justify-content: center; }
  .header-phone svg { opacity: 1; }
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    display: none;
    flex-direction: column;
    gap: 4px; padding: 14px;
    border-radius: 18px;
    background: rgba(15,15,15,0.96);
    backdrop-filter: blur(24px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
    z-index: 10;
  }

  .header-inner.nav-open .site-nav { display: flex; }

  .site-nav a { padding: 14px 18px; border-radius: 12px; font-size: 0.95rem; }

  .appointment-section { padding: 80px 0; }
  .appointment-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .hero-section { min-height: 100svh; }

  .hero-content { padding-left: 20px; }

  .hero-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }

  .hero-stats-bar { flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 18px 24px; }
  .hero-stat:last-child { border-bottom: none; }

  .marquee-track span { font-size: 0.9rem; }

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

  .about-section,
  .services-section,
  .process-section,
  .gallery-section,
  .contact-section,
  .faq-section { padding: 80px 0; }

  .about-grid { gap: 40px; }

  .about-side-img { height: 240px; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-card, .bento-card:nth-child(n) { grid-column: span 1; grid-row: span 1; }

  .timeline-item { grid-template-columns: 60px 1fr; gap: 20px; padding: 28px 0; }
  .timeline-num { width: 60px; height: 60px; font-size: 1.2rem; }
  .timeline::before { left: 29px; }
  .timeline-body h3 { font-size: 1.15rem; }

  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-card, .gallery-card:nth-child(n) { grid-column: span 1; min-height: 240px; }
  .gallery-caption { opacity: 1; transform: none; }

  .contact-inner { padding: 28px; gap: 36px; border-radius: 24px; }

  .map-container { height: 320px; }

  .quick-actions { flex-wrap: wrap; }
  .quick-action { flex: 1 1 calc(50% - 5px); }

  .faq-grid { gap: 40px; }
  .faq-item { padding: 22px; }
  .faq-item p { padding-right: 0; }

  .footer-cta { padding: 64px 0 72px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; padding: 52px 20px 44px; }
  .footer-col--brand { grid-column: span 2; }
  .footer-bottom { padding: 20px 20px; flex-wrap: wrap; gap: 8px; justify-content: center; }

  .fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .fab svg { width: 18px; height: 18px; }
}

/* ══════════════════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0ms !important; animation-duration: 0ms !important; }
  .reveal-up { opacity: 1; transform: none; }
  .hero-bg-img { animation: none; transform: scale(1.05); }
}
