/* ================================================
   REBORN DANIŞMANLIK MERKEZİ — Design System
   Premium Psychology Clinic Website
   ================================================ */

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

/* ── CSS Variables ── */
:root {
  /* Color Palette — Beyaz & Sarı Marka Sistemi */
  --sage:        #E8A800;   /* Ana sarı — butonlar, vurgular */
  --sage-light:  #F5C842;   /* Açık sarı */
  --sage-pale:   #FFDF6E;   /* Soluk sarı */
  --sage-mist:   #FFFAED;   /* Çok açık sarı arka plan */
  --forest:      #1A1A1A;   /* Koyu — başlıklar */
  --gold:        #E8A800;   /* Aynı sarı (accent) */
  --gold-light:  #FFF0B0;   /* Çok açık altın */
  --cream:       #FAFAFA;   /* Sayfa arka planı */
  --white:       #FFFFFF;
  --ink:         #1A1A1A;   /* Ana metin */
  --ink-light:   #3D3D3D;   /* İkincil metin */
  --muted:       #6B6B6B;
  --muted-light: #ADADAD;
  --blush:       #FFF8E1;
  --border:      rgba(232, 168, 0, 0.18);
  --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md:   0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg:   0 24px 64px rgba(0, 0, 0, 0.13);
  --shadow-glow: 0 0 48px rgba(232, 168, 0, 0.25);

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Plus Jakarta Sans', -apple-system, sans-serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 5rem;
  --space-4xl: 8rem;

  /* Radius */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   40px;
  --r-full: 9999px;

  /* Transitions */
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:  180ms;
  --dur-base:  300ms;
  --dur-slow:  600ms;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 80px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography Scale ── */
.font-serif { font-family: var(--font-serif); }
.font-sans  { font-family: var(--font-sans); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--forest);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-family: var(--font-sans); font-weight: 600; }
h5 { font-size: 1rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
p  { color: var(--ink-light); line-height: 1.8; }

.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem; }
.text-muted { color: var(--muted); }
.text-gold  { color: var(--gold); }
.text-sage  { color: var(--sage); }
.text-center { text-align: center; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7A5A00;
  background: var(--sage-mist);
  border: 1px solid rgba(232, 168, 0, 0.35);
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: var(--space-lg);
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* ── Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-sm {
  padding: var(--space-3xl) 0;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--dur-base) var(--ease);
}

.nav.scrolled {
  background: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--sage);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

/* Nav scrolled → beyaz zemin, sarı vurgular */

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-light);
  transition: color var(--dur-fast) var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage);
  border-radius: var(--r-full);
  transition: width var(--dur-base) var(--ease-out);
}

.nav-link:hover { color: var(--sage); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--sage); }
.nav-link.active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-phone {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-sans);
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--sage);
  color: var(--ink);
  box-shadow: 0 4px 24px rgba(232, 168, 0, 0.35);
}

.btn-primary:hover {
  background: var(--sage-light);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 168, 0, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 2px solid rgba(232, 168, 0, 0.4);
}

.btn-secondary:hover {
  background: var(--sage-mist);
  border-color: var(--sage);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.btn-gold:hover {
  background: var(--sage-mist);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #1A1A1A 0%, #2D2D2D 45%, #3D3000 75%, #4A3800 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 80% 50%, rgba(232, 168, 0, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(245, 200, 66, 0.12) 0%, transparent 50%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--nav-height) + var(--space-3xl)) var(--space-xl) var(--space-3xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.hero-left { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--r-full);
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xl);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  display: block;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 420px;
  height: 520px;
}

.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  padding: var(--space-xl);
}

.hero-card-main {
  width: 320px;
  top: 60px;
  left: 50px;
  z-index: 3;
}

.hero-card-back-1 {
  width: 280px;
  top: 20px;
  left: 80px;
  z-index: 2;
  opacity: 0.7;
  transform: rotate(4deg);
}

.hero-card-back-2 {
  width: 260px;
  top: 0;
  left: 100px;
  z-index: 1;
  opacity: 0.4;
  transform: rotate(-3deg);
}

.card-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--gold));
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: white;
  font-weight: 500;
}

.card-name {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.card-title {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.card-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: var(--r-full);
}

.hero-float-1, .hero-float-2 {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hero-float-1 {
  bottom: 40px;
  left: 0;
  z-index: 4;
  animation: float 6s ease-in-out infinite;
}

.hero-float-2 {
  top: 30px;
  right: 0;
  z-index: 4;
  animation: float 6s ease-in-out infinite 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(200, 169, 122, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.float-text .label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.float-text .value {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}

/* ── Services Section ── */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-xl);
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
}

.service-card:hover {
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--sage-mist);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  transition: all var(--dur-base) var(--ease);
}

.service-card:hover .service-icon {
  background: var(--sage);
  transform: scale(1.05);
}

.service-card:hover .service-icon span {
  filter: brightness(0) invert(1);
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: var(--space-sm);
}

.service-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sage);
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap var(--dur-fast) var(--ease);
}

.service-link:hover { gap: 10px; }
.service-link svg { width: 16px; height: 16px; }

/* ── About Section ── */
.about {
  background: var(--cream);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--sage) 0%, var(--forest) 100%);
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}

.about-image-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-badge-value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--sage);
  font-weight: 600;
  display: block;
  line-height: 1;
}

.about-badge-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.about-text { padding-left: var(--space-xl); }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.about-feature-icon {
  width: 32px;
  height: 32px;
  background: var(--sage-mist);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature-text h5 {
  font-size: 0.875rem;
  color: var(--forest);
  margin-bottom: 2px;
  text-transform: none;
  letter-spacing: 0;
}

.about-feature-text p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Team Section ── */
.team {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.team-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  transition: all var(--dur-base) var(--ease-out);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-card-photo {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.team-card-photo-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform var(--dur-slow) var(--ease);
}

.team-card:hover .team-card-photo-bg {
  transform: scale(1.05);
}

.team-card-body {
  padding: var(--space-xl);
}

.team-card-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 4px;
}

.team-card-title {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--space-md);
}

.team-card-desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.team-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  background: var(--sage-mist);
  color: #7A5A00;
  border: 1px solid rgba(232, 168, 0, 0.3);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--r-full);
  letter-spacing: 0.03em;
}

/* ── Testimonials ── */
.testimonials {
  background: #111111;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(232, 168, 0, 0.12) 0%, transparent 60%);
}

.testimonials .section-label {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--gold-light);
}

.testimonials h2 { color: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: var(--space-xl);
  backdrop-filter: blur(10px);
  transition: all var(--dur-base) var(--ease-out);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--space-xl);
}

.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-sm);
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-author-name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-author-label {
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

/* ── Appointment CTA Section ── */
.appointment-cta {
  background: linear-gradient(135deg, var(--sage-mist) 0%, var(--white) 100%);
  border-top: 1px solid var(--border);
}

.appointment-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.appointment-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.appointment-feature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.appointment-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--ink);
}

.appointment-feature-text h5 {
  color: var(--forest);
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 2px;
}

.appointment-feature-text p {
  color: var(--muted);
  font-size: 0.8rem;
}

/* ── Mini Form ── */
.mini-form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.mini-form h3 {
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
}

.mini-form-subtitle {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-light);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--cream);
  transition: all var(--dur-fast) var(--ease);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(74, 103, 65, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

.form-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-light);
  margin-top: var(--space-md);
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--sage);
  padding: var(--space-xl) 0;
}

.stats-bar .stat-item-value { color: var(--ink); }
.stats-bar .stat-item-label { color: rgba(26,26,26,0.65); }

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stat-item-value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  line-height: 1;
}

.stat-item-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ── Footer ── */
.footer {
  background: #111111;
  color: rgba(255,255,255,0.7);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-xl);
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  margin-top: var(--space-md);
  max-width: 280px;
  line-height: 1.7;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--sage);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
}

.footer-logo-text {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.8rem;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: color var(--dur-fast) var(--ease);
}

.footer-link:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--sage-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--dur-fast) var(--ease);
}

.footer-social-link:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Page Header ── */
.page-header {
  background: linear-gradient(150deg, #1A1A1A 0%, #2D2D2D 50%, #4A3800 100%);
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}

.page-header h1 { color: var(--white); position: relative; z-index: 1; }
.page-header p  { color: rgba(255,255,255,0.7); position: relative; z-index: 1; max-width: 600px; margin: var(--space-md) auto 0; font-size: 1.1rem; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  justify-content: center;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--dur-fast) var(--ease); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: 0.4; }

/* ── Accordion (FAQ) ── */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease);
}

.accordion-item:hover { box-shadow: var(--shadow-sm); }

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  background: var(--white);
  transition: background var(--dur-fast) var(--ease);
}

.accordion-header:hover { background: var(--sage-mist); }

.accordion-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--forest);
}

.accordion-icon {
  width: 28px;
  height: 28px;
  background: var(--sage-mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--dur-base) var(--ease);
  color: var(--sage);
}

.accordion-item.open .accordion-icon {
  background: var(--sage);
  color: var(--white);
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease);
}

.accordion-item.open .accordion-body {
  max-height: 500px;
}

.accordion-content {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
  background: var(--white);
}

/* ── Map Placeholder ── */
.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 400px;
  background: var(--sage-mist);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-md);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Hamburger Menu ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease);
  display: block;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--white);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  border-top: 1px solid var(--border);
}

.mobile-menu.open { display: flex; flex-direction: column; gap: var(--space-md); }

.mobile-menu .nav-link {
  font-size: 1rem;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
}

/* ── Utility ── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.w-full { width: 100%; }

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sage-light));
  border-radius: var(--r-full);
  margin: var(--space-lg) 0;
}

.divider-center { margin-left: auto; margin-right: auto; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .hero-right { display: none; }
  .about-content { grid-template-columns: 1fr; }
  .about-text { padding-left: 0; }
  .appointment-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .services-grid, .team-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .about-features { grid-template-columns: 1fr; }
  .hero-stats { gap: var(--space-xl); }

  .container { padding: 0 var(--space-lg); }
  .section { padding: var(--space-3xl) 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .btn-lg { padding: 16px 28px; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
}

/* ── Toast Notification ── */
.toast-container {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.toast {
  background: var(--forest);
  color: var(--white);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  animation: slideInRight 0.3s var(--ease-out);
  border-left: 4px solid var(--sage);
}

.toast.success { border-left-color: #22c55e; }
.toast.error   { border-left-color: #ef4444; }

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(100%); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Contact Info Cards ── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--dur-base) var(--ease-out);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-pale);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: var(--sage-mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto var(--space-md);
}

.contact-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: var(--space-sm);
}

.contact-card-info {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.contact-card-info a {
  color: var(--sage);
  font-weight: 600;
  transition: color var(--dur-fast) var(--ease);
}

.contact-card-info a:hover { color: var(--forest); }

/* ── Working Hours Table ── */
.hours-table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-xl);
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.hours-row:last-child { border-bottom: none; }

.hours-day { color: var(--ink-light); font-weight: 500; }
.hours-time { color: var(--sage); font-weight: 600; }
.hours-closed { color: var(--muted-light); font-style: italic; }

/* ── Service Detail Page ── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.service-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-xl));
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.sidebar-card h4 {
  margin-bottom: var(--space-md);
  color: var(--forest);
}
