/* ============================================================
   KinéGenève — Design System
   Warm Luxury Health Aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --gold:        #FFC570;
  --gold-dark:   #E5A94A;
  --gold-light:  #FFD99A;
  --cream:       #FAF8F4;
  --cream-dark:  #F2EDE4;
  --bark:        #2C2118;
  --bark-mid:    #4A3728;
  --bark-light:  #7A6455;
  --sage:        #2D4A3E;
  --white:       #FFFFFF;
  --glass-bg:    rgba(255,255,255,0.55);
  --glass-border:rgba(255,197,112,0.25);

  --radius:      15px;
  --radius-lg:   24px;
  --radius-xl:   32px;

  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'DM Sans', sans-serif;

  --space-xs:    0.5rem;
  --space-sm:    1rem;
  --space-md:    2rem;
  --space-lg:    4rem;
  --space-xl:    8rem;

  --shadow-sm:   0 2px 16px rgba(44,33,24,0.07);
  --shadow-md:   0 8px 40px rgba(44,33,24,0.12);
  --shadow-lg:   0 24px 64px rgba(44,33,24,0.16);

  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
  --nav-h:       72px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--bark);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Scroll Animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { opacity:0; transform:translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity:0; transform:translateX( 40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity:1; transform:translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p  { font-size: 1rem; color: var(--bark-light); line-height: 1.75; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1.5px;
  background: var(--gold);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gold);
  color: var(--bark);
  box-shadow: 0 4px 24px rgba(255,197,112,0.45);
}
.btn-primary:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 32px rgba(255,197,112,0.6);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid var(--bark);
  color: var(--bark);
}
.btn-outline:hover {
  background: var(--bark);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1.5px solid rgba(255,197,112,0.5);
  color: var(--white);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--bark);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.btn:hover .btn-icon { transform: translateX(4px); }

/* ── Glass Card ─────────────────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(44,33,24,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--bark);
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--bark);
}
.nav-logo-text span { color: var(--gold-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--bark-mid);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--bark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 1rem; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--bark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(250,248,244,0.97);
  backdrop-filter: blur(20px);
  padding: 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(44,33,24,0.08);
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s, opacity 0.35s;
}
.nav-mobile.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile a {
  font-size: 1.5rem;
  font-family: var(--font-display);
  color: var(--bark);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(44,33,24,0.06);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bark);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44,33,24,0.90) 0%,
    rgba(44,33,24,0.40) 50%,
    rgba(44,33,24,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--nav-h) + 3rem) 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,197,112,0.18);
  border: 1px solid rgba(255,197,112,0.4);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  animation: fadeSlideUp 0.8s 0.2s both ease;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.5); }
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 680px;
  animation: fadeSlideUp 0.8s 0.4s both ease;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeSlideUp 0.8s 0.6s both ease;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.8s both ease;
}

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

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  animation: fadeSlideUp 0.8s 1s both ease;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem; right: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  animation: fadeSlideUp 1s 1.2s both;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,197,112,0.7), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Section wrappers ─────────────────────────────────────── */
.section {
  padding: var(--space-lg) 2rem;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 3.5rem;
}
.section-header.center { text-align: center; }

/* ── Info Strip ───────────────────────────────────────────── */
.info-strip {
  background: var(--bark);
  padding: 2rem;
}
.info-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.info-icon {
  width: 40px; height: 40px;
  background: rgba(255,197,112,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.info-item-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.info-item-val {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

/* ── Bento Grid (Home) ────────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 16px;
}

.bento-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

/* Card variants */
.bc-hero-img { grid-column: 1 / 8; grid-row: 1 / 7; }
.bc-about    { grid-column: 8 / 13; grid-row: 1 / 5; background: var(--cream-dark); padding: 2rem; }
.bc-rating   { grid-column: 8 / 11; grid-row: 5 / 7; background: var(--gold); padding: 1.5rem; }
.bc-badge    { grid-column: 11 / 13; grid-row: 5 / 7; background: var(--bark); padding: 1.5rem; }
.bc-service1 { grid-column: 1 / 5;  grid-row: 7 / 11; }
.bc-service2 { grid-column: 5 / 9;  grid-row: 7 / 11; }
.bc-service3 { grid-column: 9 / 13; grid-row: 7 / 11; }
.bc-cta      { grid-column: 1 / 7;  grid-row: 11 / 14; background: var(--sage); padding: 2.5rem; display:flex; flex-direction:column; justify-content:center; }
.bc-img2     { grid-column: 7 / 13; grid-row: 11 / 14; }

.bento-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.bento-card:hover .bento-img { transform: scale(1.04); }

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,33,24,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.bc-about h3 { margin-bottom: 0.75rem; }
.bc-about p  { font-size: 0.9rem; }
.bc-about .btn { margin-top: 1.5rem; align-self: flex-start; }

.bc-rating .rating-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--bark);
  line-height: 1;
}
.bc-rating .rating-stars { color: var(--bark); font-size: 0.9rem; margin: 0.25rem 0; }
.bc-rating .rating-label { font-size: 0.75rem; color: var(--bark-mid); font-weight: 500; }

.bc-badge .badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}
.bc-badge .badge-label { font-size: 0.75rem; color: rgba(255,255,255,0.65); margin-top: 0.3rem; }

.bc-cta h3 { color: var(--white); margin-bottom: 0.75rem; }
.bc-cta p  { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 1.5rem; }

.service-tag {
  display: inline-block;
  background: rgba(255,197,112,0.2);
  color: var(--gold-light);
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.bento-overlay h4 { color: var(--white); font-family: var(--font-display); font-size: 1.3rem; }
.bento-overlay p  { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-top: 0.25rem; }

/* ── Services Page ────────────────────────────────────────── */
.services-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 2rem;
  background: var(--cream-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card-img {
  height: 220px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body {
  padding: 1.75rem;
}
.service-card-icon {
  width: 44px; height: 44px;
  background: var(--cream-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.service-card-body h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.service-card-body p  { font-size: 0.88rem; }
.service-card-body .btn { margin-top: 1.25rem; }

.service-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,197,112,0.12);
  border: 1px solid rgba(255,197,112,0.3);
  border-radius: 50px;
  padding: 0.3rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

/* Tarifs */
.tarifs-section {
  background: var(--bark);
  padding: var(--space-lg) 2rem;
}
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.tarif-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,197,112,0.15);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.tarif-card:hover {
  background: rgba(255,197,112,0.08);
  border-color: rgba(255,197,112,0.35);
  transform: translateY(-4px);
}
.tarif-card.featured {
  background: var(--gold);
  border-color: transparent;
}
.tarif-card.featured * { color: var(--bark) !important; }
.tarif-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin: 0.5rem 0;
}
.tarif-name { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.tarif-desc { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-top: 0.5rem; }
.tarif-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 1.25rem 0; }
.tarif-features { display: flex; flex-direction: column; gap: 0.6rem; }
.tarif-feature { font-size: 0.85rem; color: rgba(255,255,255,0.75); display:flex; align-items:center; gap:0.5rem; }
.tarif-feature::before { content:'✓'; color: var(--gold); font-weight: 600; }
.tarif-card.featured .tarif-feature::before { color: var(--bark); }

/* ── About Page ───────────────────────────────────────────── */
.about-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  background: var(--cream-dark);
  padding-bottom: 0;
  overflow: hidden;
}
.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}
.about-hero-text { padding-bottom: 4rem; }
.about-hero-img {
  height: 520px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
}
.about-hero-img img { width:100%; height:100%; object-fit:cover; }

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(44,33,24,0.06);
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.value-card h4 { margin-bottom: 0.5rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card-img {
  height: 300px;
  overflow: hidden;
}
.team-card-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s; }
.team-card:hover .team-card-img img { transform: scale(1.04); }
.team-card-body { padding: 1.5rem; }
.team-card-name { font-size: 1.3rem; margin-bottom: 0.2rem; }
.team-card-role { font-size: 0.8rem; color: var(--gold-dark); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.team-card-bio  { font-size: 0.88rem; margin-top: 0.75rem; }

/* Testimonials */
.testimonials-section {
  background: var(--cream-dark);
  padding: var(--space-lg) 2rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: var(--gold); margin-bottom: 1rem; font-size: 0.85rem; }
.testimonial-text { font-size: 0.95rem; font-style: italic; color: var(--bark-mid); line-height: 1.7; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--bark);
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.88rem; font-weight: 500; }
.testimonial-loc  { font-size: 0.75rem; color: var(--bark-light); }

/* ── Gallery Page ─────────────────────────────────────────── */
.gallery-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 3rem;
  background: var(--cream-dark);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}
.gallery-item:nth-child(4n+1) { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img {
  width:100%; height:100%;
  object-fit:cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,33,24,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-zoom {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  backdrop-filter: blur(8px);
  transform: scale(0.8);
  transition: transform 0.35s;
}
.gallery-item:hover .gallery-zoom { transform: scale(1); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,33,24,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
  animation: lightboxIn 0.3s ease;
}
@keyframes lightboxIn {
  from { opacity:0; transform: scale(0.9); }
  to   { opacity:1; transform: scale(1); }
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.lightbox-nav:hover { background: rgba(255,197,112,0.3); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 0;
  background: var(--cream-dark);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: var(--space-lg) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2.5rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(44,33,24,0.06);
  transition: var(--transition);
}
.contact-detail-item:hover { box-shadow: var(--shadow-sm); transform: translateX(4px); }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--cream-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.2rem; }
.contact-detail-val   { font-size: 0.92rem; color: var(--bark-mid); line-height: 1.45; }

.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.hours-row  { display: flex; justify-content: space-between; font-size: 0.88rem; }
.hours-day  { color: var(--bark-light); }
.hours-time { font-weight: 500; color: var(--bark); }

/* Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { margin-bottom: 0.5rem; }
.contact-form-card > p { font-size: 0.88rem; margin-bottom: 2rem; }

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bark-mid);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid rgba(44,33,24,0.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--bark);
  background: var(--cream);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,197,112,0.18);
}
.form-group input.error,
.form-group textarea.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-error-msg { font-size: 0.78rem; color: #e53e3e; margin-top: 0.3rem; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
.form-success-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
}
.form-success h3 { margin-bottom: 0.5rem; }

/* Map placeholder */
.map-section { padding: 0 2rem var(--space-lg); }
.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px dashed rgba(44,33,24,0.12);
}
.map-embed { width: 100%; height: 100%; border: none; }
.map-overlay-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: white;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
}
.map-overlay-badge strong { display: block; font-family: var(--font-display); font-size: 1.1rem; }
.map-overlay-badge span  { font-size: 0.8rem; color: var(--bark-light); }

/* ── Inner Page Heroes ────────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 4rem;
  background: var(--bark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255,197,112,0.15) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,0.6); max-width: 520px; margin: 1rem auto 0; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.breadcrumb a { font-size: 0.8rem; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.breadcrumb .current { font-size: 0.8rem; color: var(--gold); }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--bark);
  padding: 4rem 2rem 1.5rem;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo-mark { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; margin-bottom: 1.5rem; max-width: 280px; }
.footer-socials { display: flex; gap: 0.75rem; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--bark); border-color: var(--gold); }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { font-size: 0.88rem; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--gold); }

.footer-col .footer-hours { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-hour-row { display: flex; justify-content: space-between; font-size: 0.85rem; }
.footer-hour-day  { color: rgba(255,255,255,0.5); }
.footer-hour-time { color: rgba(255,255,255,0.85); }

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--gold);
  padding: 5rem 2rem;
  text-align: center;
}
.cta-banner h2 { color: var(--bark); margin-bottom: 0.75rem; }
.cta-banner p  { color: var(--bark-mid); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── Page-specific backgrounds ────────────────────────────── */
.bg-cream  { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-bark   { background: var(--bark); }
.bg-white  { background: var(--white); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .bento {
    grid-template-columns: repeat(6, 1fr);
  }
  .bc-hero-img { grid-column: 1 / 7; grid-row: 1 / 6; }
  .bc-about    { grid-column: 1 / 4; grid-row: 6 / 11; }
  .bc-rating   { grid-column: 4 / 6; grid-row: 6 / 9; }
  .bc-badge    { grid-column: 6 / 7; grid-row: 6 / 9; }
  .bc-service1 { grid-column: 1 / 3; grid-row: 11 / 15; }
  .bc-service2 { grid-column: 3 / 5; grid-row: 11 / 15; }
  .bc-service3 { grid-column: 5 / 7; grid-row: 11 / 15; }
  .bc-cta      { grid-column: 1 / 4; grid-row: 15 / 18; }
  .bc-img2     { grid-column: 4 / 7; grid-row: 15 / 18; }
  .bc-badge    { grid-column: 4 / 7; grid-row: 9 / 11; }

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

@media (max-width: 900px) {
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-img { height: 360px; border-radius: var(--radius-xl); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }

  .bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }
  .bc-hero-img { grid-column: 1 / 3; height: 340px; }
  .bc-about    { grid-column: 1 / 3; }
  .bc-rating   { grid-column: 1 / 2; }
  .bc-badge    { grid-column: 2 / 3; }
  .bc-service1 { grid-column: 1 / 3; height: 220px; }
  .bc-service2 { grid-column: 1 / 2; height: 220px; }
  .bc-service3 { grid-column: 2 / 3; height: 220px; }
  .bc-cta      { grid-column: 1 / 3; }
  .bc-img2     { grid-column: 1 / 3; height: 260px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(4n+1) { grid-column: span 2; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

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

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(4n+1) { grid-column: span 1; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
