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

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

:root {
  --cream: #F5F0E8;
  --ink: #1A1714;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --rust: #B85C38;
  --warm-gray: #8A8078;
  --paper: #EDE8DE;
  --white: #FDFBF7;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: rgba(245,240,232,0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  animation: fadeDown 0.8s ease both;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo .logo-a { color: var(--gold); }
.nav-logo span { color: var(--ink); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--warm-gray);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.lang-switcher-nav { display: flex; gap: 6px; }
.lang-switcher-nav a {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--warm-gray); text-decoration: none;
  padding: 4px 8px; border-radius: 2px;
  transition: color 0.2s, background 0.2s;
  text-transform: uppercase;
}
.lang-switcher-nav a:hover { color: var(--gold); }
.lang-switcher-nav a.active {
  color: var(--ink); background: rgba(201,168,76,0.18);
}
.nav-cta {
  background: var(--gold); color: var(--ink);
  padding: 10px 24px; border-radius: 2px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    repeating-linear-gradient(
      0deg, transparent, transparent 79px,
      rgba(201,168,76,0.06) 79px, rgba(201,168,76,0.06) 80px
    );
}
.hero-left { position: relative; z-index: 1; padding-right: 60px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rust); margin-bottom: 28px;
}
.hero-tag::before { content: ''; display: block; width: 28px; height: 1px; background: var(--rust); }
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -0.01em; margin-bottom: 24px;
}
h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 17px; line-height: 1.7; color: var(--warm-gray);
  max-width: 460px; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: var(--ink); color: var(--cream);
  padding: 16px 36px; border-radius: 2px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.btn-secondary {
  color: var(--ink); font-size: 14px; font-weight: 500;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--ink); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--gold); border-color: var(--gold); }
.hero-right { position: relative; z-index: 1; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 28px 24px; border-radius: 4px;
  opacity: 0; animation: fadeUp 0.7s ease both;
}
.stat-card:nth-child(1) { animation-delay: 0.3s; }
.stat-card:nth-child(2) { animation-delay: 0.42s; }
.stat-card:nth-child(3) { animation-delay: 0.54s; }
.stat-card:nth-child(4) { animation-delay: 0.66s; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 700; color: var(--gold); line-height: 1;
}
.stat-label { font-size: 12px; color: var(--warm-gray); margin-top: 6px; line-height: 1.4; }

/* ── DIVIDER ── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0 60px; }

/* ── SECTION COMMON ── */
section { padding: 100px 60px; }
.section-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.section-tag::after { content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--gold); }
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 900; line-height: 1.12; margin-bottom: 20px;
}

/* ── WHY ── */
.why { background: var(--ink); color: var(--cream); }
.why .section-tag { color: var(--gold); }
.why h2 { color: var(--cream); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 56px; }
.why-text p { font-size: 16px; line-height: 1.8; color: rgba(245,240,232,0.72); margin-bottom: 20px; }
.why-text strong { color: var(--gold-light); font-weight: 600; }
.pain-list { display: flex; flex-direction: column; gap: 14px; }
.pain-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  transition: border-color 0.3s, background 0.3s;
}
.pain-item:hover { border-color: rgba(201,168,76,0.4); background: rgba(255,255,255,0.07); }
.pain-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.pain-item p { font-size: 14px; line-height: 1.65; color: rgba(245,240,232,0.8); }

/* ── SERVICES ── */
.services-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 56px; }
.services-intro p { font-size: 16px; line-height: 1.8; color: var(--warm-gray); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(201,168,76,0.15);
  border-radius: 4px; overflow: hidden;
}
.service-card {
  background: var(--white); padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--paper); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 46px; font-weight: 700;
  color: rgba(201,168,76,0.18); line-height: 1; margin-bottom: 14px;
}
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 700; margin-bottom: 10px; line-height: 1.3;
}
.service-desc { font-size: 14px; line-height: 1.7; color: var(--warm-gray); margin-bottom: 18px; }
.service-price {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--gold); text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.service-price::before { content: ''; width: 20px; height: 1px; background: var(--gold); }

/* ── ANCHOR ── */
.anchor-section {
  display: grid; grid-template-columns: 1fr 1.2fr;
  background: var(--paper); padding: 0;
}
.anchor-content { padding: 100px 60px; }
.anchor-content h2 { margin-bottom: 16px; }
.anchor-content p { font-size: 16px; line-height: 1.8; color: var(--warm-gray); margin-bottom: 28px; }
.anchor-visual {
  background: var(--ink); padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.anchor-visual::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 70%);
}
.anchor-visual h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: var(--cream); margin-bottom: 28px; position: relative;
}
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 13px; position: relative; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  color: rgba(245,240,232,0.85); font-size: 15px; line-height: 1.6;
}
.feature-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.price-badge {
  display: inline-flex; flex-direction: column;
  background: var(--gold); color: var(--ink);
  padding: 18px 26px; border-radius: 4px;
  margin-top: 28px; max-width: 200px;
}
.price-badge .from { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }
.price-badge .amount { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; line-height: 1; }
.price-badge .period { font-size: 12px; opacity: 0.7; margin-top: 2px; }

/* ── PROCESS ── */
.process { background: var(--white); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; margin-top: 56px;
  background: var(--paper); border-radius: 4px; overflow: hidden;
}
.step { background: var(--white); padding: 36px 28px; position: relative; transition: background 0.3s; }
.step:hover { background: var(--cream); }
.step-arrow { position: absolute; right: -13px; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 18px; z-index: 1; }
.step:last-child .step-arrow { display: none; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 900; color: rgba(201,168,76,0.2); line-height: 1; margin-bottom: 14px;
}
.step h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.step p { font-size: 14px; line-height: 1.7; color: var(--warm-gray); }

/* ── ABOUT ── */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 56px; }
.photo-frame {
  width: 100%; aspect-ratio: 4/5;
  background: var(--paper); border-radius: 4px; overflow: hidden;
  position: relative; border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder { font-family: 'Playfair Display', serif; font-size: 80px; opacity: 0.15; color: var(--gold); }
.photo-accent {
  position: absolute; bottom: -18px; right: -18px;
  width: 130px; height: 130px;
  border: 2px solid var(--gold); border-radius: 4px; z-index: -1;
}
.about-photo { position: relative; }
.about-content p { font-size: 16px; line-height: 1.8; color: var(--warm-gray); margin-bottom: 20px; }
.about-content strong { color: var(--ink); font-weight: 600; }
.founder-sig {
  margin-top: 32px; display: flex; align-items: center; gap: 20px;
  padding-top: 28px; border-top: 1px solid rgba(201,168,76,0.3);
}
.sig-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gold); font-weight: 700;
  flex-shrink: 0;
}
.sig-name { font-weight: 600; font-size: 15px; }
.sig-role { font-size: 13px; color: var(--warm-gray); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--paper); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.testimonial {
  background: var(--white); padding: 32px 28px; border-radius: 4px;
  border: 1px solid rgba(201,168,76,0.2);
  transition: border-color 0.3s, transform 0.2s;
}
.testimonial:hover { border-color: var(--gold); transform: translateY(-3px); }
.t-stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; }
.t-quote {
  font-size: 15px; line-height: 1.75; color: var(--ink); margin-bottom: 24px;
  font-style: italic; position: relative; padding-left: 16px;
}
.t-quote::before {
  content: '"'; position: absolute; left: 0; top: -4px;
  font-family: 'Playfair Display', serif; font-size: 34px; color: var(--gold); line-height: 1; opacity: 0.45;
}
.t-author { font-size: 13px; font-weight: 600; }
.t-origin { font-size: 12px; color: var(--warm-gray); }

/* ── FAQ ── */
.faq { background: var(--white); }
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; margin-top: 56px; }
.faq-item { padding: 22px 0; border-bottom: 1px solid rgba(201,168,76,0.25); cursor: pointer; }
.faq-q {
  font-size: 15px; font-weight: 600; line-height: 1.5;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
}
.faq-toggle { color: var(--gold); font-size: 22px; flex-shrink: 0; font-weight: 300; line-height: 1; }
.faq-a { font-size: 14px; line-height: 1.75; color: var(--warm-gray); margin-top: 12px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── CTA ── */
.cta-section {
  background: var(--ink); padding: 100px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12), transparent 70%);
  pointer-events: none;
}
.cta-section .section-tag { justify-content: center; }
.cta-section h2 { color: var(--cream); }
.cta-section h2 em { color: var(--gold); font-style: italic; }
.cta-section p { font-size: 17px; color: rgba(245,240,232,0.65); max-width: 520px; margin: 20px auto 44px; line-height: 1.75; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-gold {
  background: var(--gold); color: var(--ink);
  padding: 18px 44px; border-radius: 2px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(245,240,232,0.3); color: var(--cream);
  padding: 18px 44px; border-radius: 2px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.06em;
  text-decoration: none; transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); }

/* ── FOOTER ── */
footer {
  background: var(--ink); color: rgba(245,240,232,0.55);
  padding: 60px 60px 36px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 44px; }
.footer-logo {
  font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 900;
  color: var(--cream); text-decoration: none; letter-spacing: 0.1em; display: block; margin-bottom: 14px;
}
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 13px; line-height: 1.7; }
.footer-brand .legal { font-size: 11px; margin-top: 10px; opacity: 0.6; line-height: 1.6; }
.footer-col h4 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(245,240,232,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(201,168,76,0.1);
  display: flex; justify-content: space-between; align-items: center; font-size: 12px;
}
.lang-switcher-footer { display: flex; gap: 12px; }
.lang-switcher-footer a {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  color: rgba(245,240,232,0.4); text-decoration: none; transition: color 0.2s;
}
.lang-switcher-footer a:hover { color: var(--gold); }
.lang-switcher-footer a.active { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── MOBILE ── */
@media (max-width: 960px) {
  nav {
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .nav-logo { font-size: 18px; }
  .nav-links { display: none; }
  .nav-right { gap: 8px; }
  .lang-switcher-nav a { font-size: 11px; padding: 3px 6px; }
  .nav-cta { padding: 8px 14px; font-size: 11px; letter-spacing: 0.04em; }
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 48px; }
  .hero-left { padding-right: 0; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  section { padding: 64px 24px; }
  .divider { margin: 0 24px; }
  .why-grid, .services-intro, .about-grid, .faq-cols { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .anchor-section { grid-template-columns: 1fr; }
  .anchor-content, .anchor-visual { padding: 60px 24px; }
  .cta-section { padding: 72px 24px; }
  .about-photo { display: none; }
}
@media (max-width: 520px) {
  nav { padding: 10px 14px; }
  .nav-logo { font-size: 16px; letter-spacing: 0.08em; }
  .nav-cta { padding: 7px 12px; font-size: 10px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .step-arrow { display: none; }
}
