/* ================================================
   TEMA: ELEGANT V2 — Modern Minimal Luxury
   Tarz: Temiz çizgiler, zengin boşluklar, subtle animasyonlar
   Renk: Charcoal + Champagne Gold + Ivory
   ================================================ */

@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&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --champagne:  #d4af7a;
  --gold:       #c9a66b;
  --gold-light: #e8d5b7;
  --gold-dark:  #a88654;
  --charcoal:   #1a1816;
  --charcoal-l: #2d2a26;
  --charcoal-d: #0f0e0d;
  --ivory:      #faf8f5;
  --cream:      #f5f2ed;
  --text:       #2c2925;
  --text-muted: #6b6662;
  --border:     #e8e4de;
  --white:      #ffffff;
  --shadow-sm:  0 2px 12px rgba(26,24,22,.06);
  --shadow-md:  0 8px 32px rgba(26,24,22,.1);
  --shadow-lg:  0 16px 64px rgba(26,24,22,.15);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { 
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; 
  color: var(--text); 
  background: var(--ivory); 
  line-height: 1.75; 
  font-size: 16px;
  font-weight: 400;
}
h1, h2, h3, h4, h5, h6 { 
  font-family: 'Cormorant Garamond', Georgia, serif; 
  font-weight: 600; 
  letter-spacing: -.02em; 
  line-height: 1.2; 
}
a { color: inherit; text-decoration: none; transition: color .3s ease; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* ── BUTTONS ── */
.cta-btn {
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  padding: 16px 40px; 
  font-family: 'Inter', sans-serif;
  font-weight: 500; 
  font-size: 14px; 
  letter-spacing: .04em; 
  cursor: pointer; 
  border: none; 
  transition: all .4s cubic-bezier(.25,.8,.25,1);
  position: relative;
  overflow: hidden;
}
.cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  transform: translate(-50%, -50%);
  transition: width .6s, height .6s;
}
.cta-btn:hover::before {
  width: 300px;
  height: 300px;
}
.cta-btn.primary { 
  background: linear-gradient(135deg, var(--gold) 0%, var(--champagne) 100%); 
  color: var(--charcoal); 
  box-shadow: var(--shadow-sm);
}
.cta-btn.primary:hover { 
  box-shadow: var(--shadow-md); 
  transform: translateY(-2px);
}
.cta-btn.ghost { 
  background: transparent; 
  border: 1.5px solid rgba(255,255,255,.3); 
  color: var(--white); 
}
.cta-btn.ghost:hover { 
  border-color: var(--champagne); 
  background: rgba(212,175,122,.08);
}
.cta-btn.outline { 
  background: transparent; 
  border: 1.5px solid var(--gold); 
  color: var(--gold); 
}
.cta-btn.outline:hover { 
  background: var(--gold); 
  color: var(--charcoal); 
}
.cta-btn.dark { 
  background: var(--charcoal); 
  color: var(--ivory); 
}
.cta-btn.dark:hover { 
  background: var(--charcoal-l); 
}

/* ── SECTION LABELS ── */
.section-label {
  display: inline-block; 
  font-family: 'Inter', sans-serif; 
  font-size: 11px; 
  font-weight: 600;
  letter-spacing: .2em; 
  text-transform: uppercase; 
  color: var(--gold); 
  margin-bottom: 20px;
  padding: 8px 20px;
  background: linear-gradient(90deg, rgba(212,175,122,.08) 0%, transparent 100%);
  border-left: 2px solid var(--champagne);
}
.section-label.center { 
  display: block; 
  text-align: center; 
  background: none;
  border-left: none;
  padding: 0;
}
.section-label.light { 
  color: var(--gold-light); 
  border-left-color: var(--gold-light);
}
.section-title { 
  font-size: clamp(38px, 5vw, 56px); 
  text-align: center; 
  margin-bottom: 20px; 
  font-weight: 500;
}
.section-sub { 
  color: var(--text-muted); 
  text-align: center; 
  margin-bottom: 72px; 
  font-size: 17px; 
  font-weight: 300; 
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ── NAVIGATION ── */
nav.site-nav { 
  background: rgba(26,24,22,.98); 
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,122,.12); 
  position: sticky; 
  top: 0; 
  z-index: 200;
  transition: all .3s ease;
}
nav.site-nav.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(26,24,22,1);
}
.nav-inner { 
  max-width: 1280px; 
  margin: 0 auto; 
  padding: 0 48px; 
  display: flex; 
  align-items: center; 
  gap: 60px; 
  height: 84px;
}
.nav-logo { 
  display: flex; 
  align-items: center; 
  text-decoration: none; 
  flex-shrink: 0; 
}
.nav-logo img { height: 44px; filter: brightness(1.05); }
.nav-links { 
  display: flex; 
  align-items: center; 
  gap: 40px; 
  flex: 1;
}
.nav-links a { 
  color: rgba(255,255,255,.65); 
  text-decoration: none; 
  font-family: 'Inter', sans-serif; 
  font-size: 14px; 
  font-weight: 500; 
  letter-spacing: .02em; 
  transition: color .3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width .3s ease;
}
.nav-links a:hover, .nav-links a.active { 
  color: var(--champagne); 
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-right { 
  display: flex; 
  align-items: center; 
  gap: 24px; 
  margin-left: auto; 
}
.lang-dropdown { 
  position: relative; 
}
.lang-current { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  padding: 10px 18px; 
  background: rgba(255,255,255,.04); 
  border: 1px solid rgba(212,175,122,.2); 
  font-family: 'Inter', sans-serif; 
  font-size: 12px; 
  font-weight: 600; 
  color: rgba(255,255,255,.8); 
  cursor: pointer; 
  transition: all .3s ease;
  letter-spacing: .1em;
  border-radius: 2px;
}
.lang-current:hover { 
  border-color: var(--champagne); 
  background: rgba(212,175,122,.08);
}
.lang-current svg { 
  transition: transform .3s ease; 
  opacity: .6;
}
.lang-dropdown.open .lang-current svg { 
  transform: rotate(180deg); 
}
.lang-menu { 
  position: absolute; 
  top: calc(100% + 12px); 
  right: 0; 
  min-width: 120px; 
  background: var(--charcoal-l); 
  border: 1px solid rgba(212,175,122,.2); 
  opacity: 0; 
  pointer-events: none; 
  transform: translateY(-12px); 
  transition: all .3s cubic-bezier(.25,.8,.25,1); 
  z-index: 300; 
  box-shadow: var(--shadow-lg);
  border-radius: 2px;
}
.lang-menu.open { 
  opacity: 1; 
  pointer-events: all; 
  transform: translateY(0); 
}
.lang-option { 
  display: block; 
  padding: 12px 20px; 
  font-family: 'Inter', sans-serif; 
  font-size: 13px; 
  font-weight: 500; 
  color: rgba(255,255,255,.6); 
  transition: all .2s ease;
  letter-spacing: .08em;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.lang-option:last-child { 
  border-bottom: none; 
}
.lang-option:hover, .lang-option.active { 
  background: rgba(212,175,122,.12); 
  color: var(--champagne); 
  padding-left: 28px;
}
.nav-phone { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  color: var(--ivory); 
  text-decoration: none; 
  font-family: 'Inter', sans-serif; 
  font-size: 14px; 
  font-weight: 500; 
  letter-spacing: .02em; 
  padding: 10px 20px; 
  border: 1px solid rgba(212,175,122,.25); 
  transition: all .3s ease;
  border-radius: 2px;
}
.nav-phone-icon { 
  font-size: 16px; 
}
.nav-phone:hover { 
  border-color: var(--champagne); 
  background: rgba(212,175,122,.06);
}
.nav-burger { 
  display: none; 
  flex-direction: column; 
  gap: 6px; 
  padding: 12px; 
  background: none; 
  border: none; 
  cursor: pointer; 
}
.nav-burger span { 
  display: block; 
  width: 24px; 
  height: 2px; 
  background: var(--ivory); 
  transition: all .3s ease;
}

/* ── HERO SECTION ── */
.hero { 
  background: linear-gradient(165deg, var(--charcoal) 0%, var(--charcoal-d) 100%); 
  color: var(--ivory); 
  min-height: 90vh; 
  position: relative; 
  overflow: hidden; 
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212,175,122,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { 
  display: grid; 
  grid-template-columns: 1.2fr 1fr; 
  gap: 80px;
  min-height: 90vh; 
  position: relative; 
  z-index: 1; 
  align-items: center;
}
.hero-left { 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
}
.hero-badge { 
  display: inline-block; 
  font-family: 'Inter', sans-serif; 
  font-size: 11px; 
  font-weight: 600; 
  letter-spacing: .15em; 
  text-transform: uppercase; 
  color: var(--gold-light); 
  margin-bottom: 28px; 
  width: fit-content;
  padding: 10px 24px;
  background: rgba(212,175,122,.08);
  border-left: 2px solid var(--champagne);
}
.hero h1 { 
  font-size: clamp(48px, 6vw, 76px); 
  font-weight: 600; 
  line-height: 1.1; 
  margin-bottom: 32px; 
  letter-spacing: -.03em;
}
.hero h1 span { 
  font-style: italic; 
  color: var(--champagne); 
  font-weight: 400;
  display: inline-block;
  position: relative;
}
.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--champagne), transparent);
  opacity: .4;
}
.hero-left > p { 
  font-size: 18px; 
  color: rgba(255,255,255,.55); 
  max-width: 520px; 
  margin-bottom: 44px; 
  font-weight: 300; 
  line-height: 1.8; 
  letter-spacing: .01em;
}
.hero-btns { 
  display: flex; 
  gap: 16px; 
  margin-bottom: 72px; 
}
.hero-stats { 
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 48px; 
  border-top: 1px solid rgba(212,175,122,.15); 
}
.stat-item {
  text-align: center;
}
.stat-num { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 44px; 
  font-weight: 600; 
  color: var(--champagne); 
  display: block; 
  line-height: 1; 
  margin-bottom: 8px;
}
.stat-label { 
  font-size: 11px; 
  color: rgba(255,255,255,.4); 
  letter-spacing: .1em; 
  text-transform: uppercase; 
  display: block; 
  font-weight: 500;
}
.hero-visual { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  position: relative;
}
.hero-visual-inner { 
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(212,175,122,.2);
  display: flex; 
  align-items: center; 
  justify-content: center; 
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual-inner::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(212,175,122,.1);
}
.hero-visual-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) sepia(10%);
}
.hero-card-float { 
  position: absolute; 
  bottom: -20px; 
  left: -40px; 
  background: rgba(26,24,22,.95); 
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212,175,122,.3); 
  padding: 24px 28px; 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  min-width: 260px;
  box-shadow: var(--shadow-md);
}
.hcf-icon { 
  font-size: 24px; 
  color: var(--champagne); 
}
.hero-card-float strong { 
  display: block; 
  font-family: 'Inter', sans-serif; 
  font-size: 13px; 
  font-weight: 600; 
  letter-spacing: .05em; 
  color: var(--ivory); 
  margin-bottom: 4px;
}
.hero-card-float small { 
  color: rgba(255,255,255,.5); 
  font-size: 12px; 
  font-weight: 300;
}

/* ── ABOUT SECTION ── */
.about-section { 
  padding: 140px 0; 
  background: var(--cream); 
}
.about-section .container { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 100px; 
  align-items: center; 
}
.about-img-wrap { 
  position: relative; 
}
.about-img-placeholder { 
  height: 540px; 
  background: var(--charcoal); 
  position: relative; 
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
}
.about-img-placeholder::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.about-social-card { 
  position: absolute; 
  bottom: -32px; 
  right: -32px; 
  background: var(--champagne); 
  padding: 32px 36px;
  box-shadow: var(--shadow-lg);
}
.about-social-card strong { 
  display: block; 
  font-family: 'Inter', sans-serif; 
  font-size: 11px; 
  font-weight: 700; 
  letter-spacing: .15em; 
  text-transform: uppercase; 
  color: var(--charcoal); 
  margin-bottom: 16px; 
}
.social-icons { 
  display: flex; 
  gap: 10px; 
}
.social-icons a { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  width: 36px; 
  height: 36px; 
  background: rgba(26,24,22,.15); 
  color: var(--charcoal); 
  text-decoration: none; 
  font-size: 12px; 
  font-weight: 700; 
  transition: all .3s ease;
}
.social-icons a:hover { 
  background: var(--charcoal); 
  color: var(--champagne);
  transform: translateY(-2px);
}
.about-right h2 { 
  font-size: clamp(38px, 4vw, 52px); 
  line-height: 1.15; 
  margin-bottom: 28px; 
  font-weight: 500;
}
.about-right h2 span { 
  font-style: italic; 
  color: var(--gold); 
  font-weight: 400;
}
.about-right > p { 
  color: var(--text-muted); 
  font-size: 17px; 
  line-height: 1.9; 
  margin-bottom: 40px; 
  font-weight: 300; 
}

/* ── SERVICES ── */
.services { 
  padding: 140px 0; 
  background: var(--ivory);
}
.services .container { 
  display: flex; 
  flex-direction: column; 
  gap: 72px; 
}
.services-left { 
  text-align: center; 
  max-width: 680px;
  margin: 0 auto;
}
.services-left h2 { 
  font-size: clamp(38px, 4vw, 52px); 
  line-height: 1.15; 
  margin-bottom: 20px; 
  font-weight: 500;
}
.services-left > p { 
  color: var(--text-muted); 
  font-weight: 300; 
  font-size: 17px;
}
.services-grid { 
  display: grid; 
  grid-template-columns: repeat(3,1fr); 
  gap: 32px; 
}
.service-card { 
  background: var(--white); 
  border: 1px solid var(--border);
  transition: all .4s cubic-bezier(.25,.8,.25,1); 
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card:hover { 
  box-shadow: var(--shadow-md); 
  transform: translateY(-8px); 
  border-color: var(--gold-light);
}
.service-img { 
  height: 220px; 
  overflow: hidden; 
  position: relative; 
  background: var(--charcoal);
}
.service-img img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform .6s cubic-bezier(.25,.8,.25,1);
  filter: grayscale(10%);
}
.service-card:hover .service-img img { 
  transform: scale(1.08); 
}
.service-icon-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(26,24,22,.9);
  backdrop-filter: blur(8px);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid rgba(212,175,122,.3);
}
.service-card-body { 
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card h3 { 
  font-size: 22px; 
  margin-bottom: 12px; 
  font-weight: 600;
  color: var(--text);
}
.service-card p { 
  color: var(--text-muted); 
  font-size: 15px; 
  font-weight: 300; 
  line-height: 1.8; 
  flex: 1;
}
.services-cta { 
  text-align: center; 
  margin-top: 32px;
}

/* ── TESTIMONIALS ── */
.testimonials { 
  padding: 120px 0; 
  background: var(--charcoal); 
}
.testimonials .section-title {
  color: var(--ivory);
}
.testimonials-wrap { 
  position: relative; 
}
.testi-slide { 
  display: none; 
}
.testi-slide.active { 
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px; 
  align-items: start; 
  padding: 64px; 
  border: 1px solid rgba(212,175,122,.2); 
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(8px);
}
.testi-avatar { 
  position: relative; 
}
.testi-avatar img { 
  width: 120px; 
  height: 120px; 
  object-fit: cover; 
  border: 2px solid var(--champagne);
  filter: grayscale(20%);
}
.testi-content { 
  flex: 1; 
}
.testi-content p { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 22px; 
  color: rgba(255,255,255,.9); 
  line-height: 1.7; 
  font-style: italic; 
  margin-bottom: 28px; 
  font-weight: 300;
}
.testi-content strong { 
  display: block; 
  font-family: 'Inter', sans-serif; 
  font-size: 13px; 
  font-weight: 600; 
  letter-spacing: .08em; 
  color: var(--champagne); 
  margin-bottom: 4px;
}
.testi-content span { 
  color: rgba(255,255,255,.4); 
  font-size: 13px; 
  font-weight: 300;
}
.testi-stars { 
  color: var(--champagne); 
  font-size: 16px; 
  letter-spacing: 4px; 
  margin-top: 12px; 
}
.testi-quote { 
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 120px; 
  color: var(--champagne); 
  opacity: .06; 
  font-family: 'Cormorant Garamond', serif; 
  line-height: 1;
  pointer-events: none;
}
.testi-nav { 
  position: absolute; 
  right: 0; 
  top: -64px; 
  display: flex; 
  gap: 8px; 
}
.testi-prev, .testi-next { 
  width: 48px; 
  height: 48px; 
  background: rgba(255,255,255,.04); 
  border: 1px solid rgba(212,175,122,.25); 
  color: var(--champagne); 
  font-size: 20px; 
  cursor: pointer; 
  transition: all .3s ease; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}
.testi-prev:hover, .testi-next:hover { 
  background: var(--champagne); 
  color: var(--charcoal); 
  border-color: var(--champagne); 
  transform: translateY(-2px);
}

/* ── PACKAGES ── */
.packages { 
  padding: 140px 0; 
  background: var(--cream); 
}
.packages-grid { 
  display: grid; 
  grid-template-columns: repeat(3,1fr); 
  gap: 32px; 
}
.package-card { 
  background: var(--white); 
  display: flex; 
  flex-direction: column; 
  border: 1px solid var(--border);
  transition: all .4s ease;
  overflow: hidden;
}
.package-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.package-card.featured { 
  background: linear-gradient(165deg, var(--charcoal) 0%, var(--charcoal-l) 100%); 
  border-color: var(--champagne);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}
.package-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}
.package-head { 
  padding: 44px 36px; 
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.package-card.featured .package-head { 
  border-bottom-color: rgba(212,175,122,.2); 
  background: linear-gradient(180deg, rgba(212,175,122,.06) 0%, transparent 100%);
}
.package-head h3 { 
  font-size: 28px; 
  margin-bottom: 10px; 
  font-weight: 600;
}
.package-card.featured .package-head h3 { 
  color: var(--ivory); 
}
.package-head span { 
  font-size: 12px; 
  color: var(--gold); 
  letter-spacing: .12em; 
  text-transform: uppercase; 
  font-weight: 600;
}
.package-card.featured .package-head span {
  color: var(--gold-light);
}
.package-card ul { 
  padding: 36px 36px 40px; 
  flex: 1; 
  list-style: none; 
}
.package-card ul li { 
  padding: 14px 0; 
  border-bottom: 1px solid var(--border); 
  font-size: 15px; 
  color: var(--text-muted); 
  font-weight: 300;
  letter-spacing: .01em;
}
.package-card ul li::before { 
  content: '✓ '; 
  color: var(--gold); 
  font-weight: 700;
  margin-right: 8px;
}
.package-card.featured ul li { 
  border-bottom-color: rgba(255,255,255,.08); 
  color: rgba(255,255,255,.7); 
}
.package-card.featured ul li::before {
  color: var(--champagne);
}
.package-card .cta-btn { 
  margin: 0 36px 36px; 
  width: calc(100% - 72px);
}

/* ── PROCESS ── */
.process { 
  padding: 140px 0; 
  background: var(--ivory);
}
.process .container { 
  display: grid; 
  grid-template-columns: 1fr 1.2fr; 
  gap: 100px; 
  align-items: start;
}
.process-left h2 { 
  font-size: clamp(38px, 4vw, 52px); 
  line-height: 1.15; 
  margin: 16px 0 40px; 
  font-weight: 500;
}
.process-visual { 
  height: 420px; 
  background: var(--charcoal); 
  position: relative; 
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.process-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}
.process-visual::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(212,175,122,.25);
  pointer-events: none;
}
.process-right { 
  display: flex; 
  flex-direction: column; 
  gap: 0; 
}
.process-card { 
  padding: 32px 0; 
  border-bottom: 1px solid var(--border); 
  display: flex; 
  gap: 28px; 
  transition: all .3s ease;
}
.process-card:last-child { 
  border-bottom: none; 
}
.process-card:hover { 
  padding-left: 20px; 
}
.process-icon { 
  font-size: 32px; 
  flex-shrink: 0; 
  margin-top: 4px;
  color: var(--gold);
}
.process-card h3 { 
  font-size: 20px; 
  margin-bottom: 10px; 
  font-weight: 600;
}
.process-card p { 
  color: var(--text-muted); 
  font-size: 15px; 
  font-weight: 300; 
  line-height: 1.8; 
}

/* ── STATS BAR ── */
.stats-bar { 
  background: var(--charcoal); 
  border-top: 1px solid rgba(212,175,122,.2); 
  border-bottom: 1px solid rgba(212,175,122,.2); 
  padding: 60px 0; 
}
.stats-bar .container { 
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.stats-bar-item { 
  text-align: center; 
  color: var(--ivory); 
}
.sbi-num { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 56px; 
  font-weight: 600; 
  color: var(--champagne); 
  line-height: 1; 
  margin-bottom: 12px;
  display: block;
}
.stats-bar-item strong { 
  display: block; 
  font-family: 'Inter', sans-serif; 
  font-size: 13px; 
  font-weight: 600; 
  letter-spacing: .08em; 
  text-transform: uppercase;
  margin-bottom: 4px;
}
.stats-bar-item small { 
  font-size: 12px; 
  color: rgba(255,255,255,.4); 
  letter-spacing: .02em; 
  font-weight: 300;
}

/* ── BLOG SECTION ── */
.blog-section { 
  padding: 140px 0; 
  background: var(--cream); 
}
.blog-header {
  text-align: center;
  margin-bottom: 72px;
}
.blog-all-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 32px; 
}
.blog-card { 
  background: var(--white); 
  border: 1px solid var(--border); 
  transition: all .4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.blog-card:hover { 
  border-color: var(--gold); 
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.blog-card-link {
  display: block;
}
.blog-card-img { 
  height: 240px; 
  background: var(--charcoal); 
  position: relative; 
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  filter: grayscale(10%);
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}
.blog-card-body { 
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-cat { 
  font-size: 10px; 
  color: var(--gold); 
  letter-spacing: .15em; 
  text-transform: uppercase; 
  display: block; 
  margin-bottom: 10px; 
  font-weight: 700;
}
.blog-card h3 { 
  font-size: 19px; 
  line-height: 1.4; 
  margin-bottom: 10px;
  font-weight: 600;
  flex: 1;
}
.blog-card h3 a { 
  color: var(--text); 
  transition: color .3s ease; 
}
.blog-card h3 a:hover { 
  color: var(--gold); 
}
.blog-card p {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 16px;
}
.blog-read-more { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  font-family: 'Inter', sans-serif; 
  font-size: 12px; 
  font-weight: 600; 
  color: var(--gold); 
  text-decoration: none; 
  letter-spacing: .08em; 
  text-transform: uppercase; 
  transition: gap .3s ease;
  margin-top: auto;
}
.blog-read-more:hover { 
  gap: 12px; 
}

/* ── CONTACT SECTION ── */
.contact-section { 
  background: var(--charcoal); 
  color: var(--ivory); 
  padding: 140px 0; 
}
.contact-section .container { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 100px; 
  align-items: center; 
}
.contact-left h2 { 
  font-size: clamp(38px, 5vw, 56px); 
  line-height: 1.1; 
  margin-bottom: 24px; 
  font-weight: 500;
}
.contact-left h2 span { 
  font-style: italic; 
  color: var(--champagne); 
  font-weight: 400;
}
.contact-left > p { 
  color: rgba(255,255,255,.5); 
  font-size: 17px; 
  margin-bottom: 40px; 
  font-weight: 300; 
  line-height: 1.8; 
}
.contact-items { 
  display: flex; 
  flex-direction: column; 
  gap: 0;
}
.contact-item { 
  display: flex; 
  align-items: flex-start; 
  gap: 24px; 
  padding: 28px 0; 
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: padding-left .3s ease;
}
.contact-item:hover {
  padding-left: 16px;
}
.contact-item:last-child { 
  border-bottom: none; 
}
.ci-icon { 
  font-size: 22px; 
  color: var(--champagne); 
  flex-shrink: 0; 
  margin-top: 2px; 
}
.contact-item strong { 
  display: block; 
  font-family: 'Inter', sans-serif; 
  font-size: 11px; 
  letter-spacing: .15em; 
  text-transform: uppercase; 
  color: var(--gold-light); 
  margin-bottom: 6px; 
  font-weight: 700;
}
.contact-item a, .contact-item span { 
  color: rgba(255,255,255,.65); 
  text-decoration: none; 
  font-size: 15px; 
  font-weight: 300;
  letter-spacing: .01em;
  transition: color .3s ease;
}
.contact-item a:hover { 
  color: var(--champagne); 
}

/* ── FOOTER ── */
footer { 
  background: #0a0908; 
  color: rgba(255,255,255,.5); 
}
.footer-logo-banner { 
  background: linear-gradient(90deg, var(--charcoal-d) 0%, var(--charcoal) 50%, var(--charcoal-d) 100%); 
  border-bottom: 1px solid rgba(212,175,122,.15); 
  padding: 48px 40px; 
  text-align: center; 
}
.footer-logo-banner img {
  height: 56px;
  width: auto;
  margin: 0 auto;
  filter: brightness(1.1);
}
.footer-cols { 
  display: grid; 
  grid-template-columns: repeat(3,1fr); 
  gap: 72px; 
  padding: 80px 48px; 
  max-width: 1280px; 
  margin: 0 auto; 
}
.footer-col h4 { 
  font-family: 'Inter', sans-serif; 
  font-size: 11px; 
  font-weight: 700; 
  color: var(--champagne); 
  letter-spacing: .15em; 
  text-transform: uppercase; 
  margin-bottom: 32px; 
}
.footer-col nav { 
  display: flex; 
  flex-direction: column; 
  gap: 14px; 
}
.footer-col nav a { 
  color: rgba(255,255,255,.45); 
  text-decoration: none; 
  font-size: 14px; 
  font-weight: 300; 
  letter-spacing: .01em; 
  transition: all .3s ease;
  padding-left: 0;
}
.footer-col nav a:hover { 
  color: var(--champagne); 
  padding-left: 8px;
}
.footer-langs { 
  display: flex; 
  gap: 8px; 
  margin-top: 12px; 
}
.footer-langs a { 
  padding: 6px 14px; 
  border: 1px solid rgba(255,255,255,.1); 
  font-size: 11px; 
  color: rgba(255,255,255,.35); 
  text-decoration: none; 
  letter-spacing: .1em; 
  transition: all .3s ease; 
  font-weight: 600;
}
.footer-langs a.active, .footer-langs a:hover { 
  border-color: var(--champagne); 
  color: var(--champagne); 
  background: rgba(212,175,122,.06);
}
.footer-contact { 
  display: flex; 
  flex-direction: column; 
  gap: 16px; 
}
.footer-contact p { 
  font-size: 14px; 
  display: flex; 
  gap: 12px; 
  font-weight: 300; 
  align-items: center;
}
.footer-contact a { 
  color: rgba(255,255,255,.45); 
  text-decoration: none; 
  transition: color .3s ease;
}
.footer-contact a:hover { 
  color: var(--champagne); 
}
.footer-posts { 
  display: flex; 
  flex-direction: column; 
  gap: 16px; 
}
.footer-posts a { 
  color: rgba(255,255,255,.45); 
  text-decoration: none; 
  font-size: 14px; 
  font-weight: 300; 
  line-height: 1.5; 
  transition: all .3s ease;
  padding-left: 0;
}
.footer-posts a:hover { 
  color: var(--champagne); 
  padding-left: 8px;
}
.footer-no-posts {
  font-style: italic;
  opacity: .6;
  font-size: 13px;
}
.footer-bottom { 
  border-top: 1px solid rgba(212,175,122,.1); 
  padding: 24px 48px; 
  max-width: 1280px; 
  margin: 0 auto; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  font-size: 12px; 
  letter-spacing: .02em; 
}
.footer-bottom-links { 
  display: flex; 
  gap: 24px; 
}
.footer-bottom a { 
  color: rgba(255,255,255,.35); 
  text-decoration: none; 
  font-size: 11px; 
  letter-spacing: .08em; 
  text-transform: uppercase; 
  transition: color .3s ease; 
  font-weight: 600;
}
.footer-bottom a:hover { 
  color: var(--champagne); 
}

/* ── FLOATING BUTTONS ── */
.floating-buttons { 
  position: fixed; 
  left: 20px; 
  bottom: 32px; 
  z-index: 999; 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
}
.float-btn { 
  width: 56px; 
  height: 56px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: #fff; 
  text-decoration: none; 
  box-shadow: var(--shadow-lg); 
  transition: all .3s cubic-bezier(.25,.8,.25,1);
  border: 2px solid rgba(255,255,255,.15);
}
.float-btn:hover { 
  transform: scale(1.12) translateY(-4px); 
  box-shadow: 0 12px 40px rgba(0,0,0,.3); 
}
.float-wa   { background: #25d366; }
.float-loc  { background: #ea4335; }
.float-call { background: var(--champagne); color: var(--charcoal); }

/* ── BLOG LIST PAGE ── */
.page-hero { 
  background: var(--charcoal); 
  color: var(--ivory); 
  padding: 120px 0 80px; 
  text-align: center;
}
.page-hero h1 { 
  font-size: clamp(48px, 6vw, 72px); 
  font-weight: 500;
  margin-bottom: 16px;
}
.page-hero h1 span { 
  font-style: italic; 
  color: var(--champagne); 
  font-weight: 400;
}
.page-hero p { 
  color: rgba(255,255,255,.5); 
  font-size: 17px; 
  font-weight: 300; 
  margin-top: 12px; 
}
.page-hero-breadcrumb { 
  display: flex; 
  align-items: center; 
  justify-content: center;
  gap: 12px; 
  font-family: 'Inter', sans-serif; 
  font-size: 12px; 
  color: rgba(255,255,255,.4); 
  margin-top: 24px; 
  letter-spacing: .08em; 
  text-transform: uppercase; 
  font-weight: 600;
}
.page-hero-breadcrumb a { 
  color: rgba(212,175,122,.7); 
  text-decoration: none; 
  transition: color .3s ease; 
}
.page-hero-breadcrumb a:hover { 
  color: var(--champagne); 
}
.blog-list { 
  padding: 100px 0; 
  background: var(--ivory);
}
.posts-list { 
  display: flex; 
  flex-direction: column; 
  gap: 2px; 
  background: var(--border); 
}
.post-list-item { 
  background: var(--white); 
  padding: 40px 44px; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: 32px; 
  transition: all .3s ease; 
  border-left: 3px solid transparent; 
}
.post-list-item:hover { 
  border-left-color: var(--champagne); 
  padding-left: 56px; 
  box-shadow: var(--shadow-sm);
}
.post-list-inner { 
  flex: 1; 
}
.post-meta { 
  display: flex; 
  gap: 12px; 
  align-items: center; 
  margin-bottom: 10px; 
}
.post-date { 
  color: var(--text-muted); 
  font-size: 11px; 
  letter-spacing: .1em; 
  text-transform: uppercase; 
  font-weight: 600;
}
.post-list-item h2 { 
  font-size: 24px; 
  margin-bottom: 10px; 
  font-weight: 600; 
}
.post-list-item h2 a { 
  color: var(--text); 
  text-decoration: none; 
  transition: color .3s ease;
}
.post-list-item h2 a:hover { 
  color: var(--gold); 
}
.post-list-item p { 
  color: var(--text-muted); 
  font-size: 15px; 
  font-weight: 300; 
  line-height: 1.7;
}
.read-more { 
  color: var(--gold); 
  font-family: 'Inter', sans-serif; 
  font-weight: 600; 
  font-size: 12px; 
  text-decoration: none; 
  text-transform: uppercase; 
  letter-spacing: .08em;
  white-space: nowrap;
}
.read-more::after { 
  content: ' →'; 
}
.blog-empty { 
  text-align: center; 
  padding: 100px 0; 
  color: var(--text-muted); 
}
.blog-empty span { 
  font-size: 64px; 
  display: block; 
  margin-bottom: 20px; 
  opacity: .3;
}
.blog-empty p { 
  font-size: 20px; 
  font-family: 'Cormorant Garamond', serif; 
  font-style: italic; 
  margin-bottom: 32px; 
  font-weight: 300;
}
.pagination { 
  display: flex; 
  justify-content: center; 
  gap: 4px; 
  margin-top: 72px; 
}
.page-btn { 
  display: inline-block; 
  padding: 12px 24px; 
  background: var(--white); 
  color: var(--text); 
  border: 1px solid var(--border); 
  text-decoration: none; 
  font-family: 'Inter', sans-serif; 
  font-size: 13px; 
  font-weight: 600; 
  letter-spacing: .05em; 
  transition: all .3s ease;
}
.page-btn:hover, .page-btn.active { 
  background: var(--champagne); 
  color: var(--charcoal); 
  border-color: var(--champagne); 
  transform: translateY(-2px);
}

/* ── ARTICLE PAGE ── */
.article-wrap { 
  max-width: 800px; 
  margin: 0 auto; 
  padding: 100px 32px 140px; 
  background: var(--ivory);
}
.breadcrumb { 
  font-size: 11px; 
  color: var(--text-muted); 
  margin-bottom: 48px; 
  letter-spacing: .1em; 
  text-transform: uppercase; 
  font-weight: 600;
}
.breadcrumb a { 
  color: var(--gold); 
  text-decoration: none; 
  transition: color .3s ease;
}
.breadcrumb a:hover {
  color: var(--gold-dark);
}
.article-header h1 { 
  font-size: clamp(36px, 5vw, 52px); 
  line-height: 1.2; 
  margin-bottom: 28px; 
  font-weight: 600;
}
.article-meta { 
  display: flex; 
  gap: 24px; 
  align-items: center; 
  color: var(--text-muted); 
  font-size: 12px; 
  padding-bottom: 32px; 
  border-bottom: 1px solid var(--border); 
  letter-spacing: .08em; 
  text-transform: uppercase; 
  margin-bottom: 48px; 
  font-weight: 600;
}
.article-content { 
  font-size: 18px; 
  line-height: 1.9; 
  color: var(--text); 
  font-weight: 300;
}
.article-content h2 { 
  font-size: 36px; 
  margin: 64px 0 24px; 
  font-weight: 600;
}
.article-content h3 { 
  font-size: 26px; 
  margin: 44px 0 16px; 
  color: var(--gold-dark); 
  font-weight: 600;
}
.article-content p { 
  margin-bottom: 28px; 
}
.article-content ul, .article-content ol { 
  margin: 0 0 28px 32px; 
}
.article-content li { 
  margin-bottom: 12px; 
}
.article-content blockquote {
  border-left: 3px solid var(--gold);
  margin: 40px 0;
  padding: 20px 32px;
  background: rgba(212,175,122,.05);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--text-muted);
}
.article-content code {
  background: rgba(212,175,122,.08);
  padding: 3px 10px;
  font-size: 15px;
  font-family: 'Courier New', monospace;
  color: var(--gold-dark);
  border: 1px solid rgba(212,175,122,.2);
}
.article-content pre {
  background: var(--charcoal);
  color: var(--gold-light);
  padding: 28px 32px;
  overflow-x: auto;
  margin: 32px 0;
  font-size: 14px;
  line-height: 1.7;
}
.article-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: var(--gold-light);
}
.article-tags { 
  margin-top: 56px; 
  padding-top: 28px; 
  border-top: 1px solid var(--border); 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  flex-wrap: wrap; 
}
.article-tags strong {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}
.tag { 
  display: inline-block; 
  background: transparent; 
  color: var(--gold); 
  padding: 6px 18px; 
  border: 1px solid var(--gold); 
  font-family: 'Inter', sans-serif; 
  font-size: 11px; 
  font-weight: 600; 
  text-transform: uppercase; 
  letter-spacing: .08em; 
  transition: all .3s ease; 
}
.tag:hover { 
  background: var(--gold); 
  color: var(--charcoal); 
  transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .blog-all-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container { 
    padding: 0 24px; 
  }
  .nav-inner {
    padding: 0 24px;
    height: 72px;
  }
  .nav-links { 
    display: none; 
  }
  .nav-links.open { 
    display: flex !important; 
    flex-direction: column; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    right: 0; 
    background: var(--charcoal-l); 
    padding: 20px 24px; 
    gap: 0; 
    border-top: 1px solid rgba(212,175,122,.2); 
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open a { 
    padding: 16px 0; 
    border-bottom: 1px solid rgba(212,175,122,.1); 
  }
  .nav-burger { 
    display: flex; 
  }
  .nav-phone-text { 
    display: none; 
  }
  .hero .container { 
    grid-template-columns: 1fr; 
    gap: 48px;
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .hero-visual { 
    display: none; 
  }
  .hero-stats { 
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .about-section .container { 
    grid-template-columns: 1fr; 
    gap: 56px;
  }
  .about-social-card { 
    right: 0; 
    bottom: -24px; 
  }
  .services-grid, .packages-grid, .blog-all-grid { 
    grid-template-columns: 1fr; 
  }
  .package-card.featured {
    transform: scale(1);
  }
  .package-card.featured:hover {
    transform: scale(1) translateY(-4px);
  }
  .process .container { 
    grid-template-columns: 1fr; 
    gap: 56px;
  }
  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-section .container { 
    grid-template-columns: 1fr; 
    gap: 56px;
  }
  .footer-cols { 
    grid-template-columns: 1fr; 
    gap: 40px; 
    padding: 56px 24px;
  }
  .footer-bottom { 
    flex-direction: column; 
    gap: 16px; 
    text-align: center; 
    padding: 24px;
  }
  .testi-slide.active { 
    grid-template-columns: 1fr;
    padding: 36px 28px; 
  }
  .testi-quote { 
    display: none; 
  }
  .floating-buttons { 
    left: 12px; 
    bottom: 20px; 
    gap: 10px; 
  }
  .float-btn { 
    width: 48px; 
    height: 48px; 
  }
  .post-list-item { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 16px; 
  }
  .testi-nav {
    top: -56px;
  }
}