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

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

:root {
  --dark:       #1E1E2E;
  --rose:       #B5334A;
  --rose-hover: #9A2A3E;
  --blush:      #F2DDE1;
  --blush-pale: #FDF5F6;
  --cream:      #FAFAF8;
  --white:      #FFFFFF;
  --border:     #EDE8EC;
  --text-dark:  #1E1E2E;
  --text-mid:   #5A5370;
  --text-muted: #8A7F8A;
  --silver:     #A8B2C0;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--cream); font-size: 15px; line-height: 1.7; }

/* ── NAV ── */
nav {
  background: var(--white);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border);
}
.logo-link { text-decoration: none; display: flex; align-items: center; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--text-mid); font-size: 13px; text-decoration: none; letter-spacing: 0.05em; font-weight: 400; transition: color 0.2s; }
.nav-links a:hover { color: var(--rose); }
.nav-cta { background: var(--rose); color: var(--white); padding: 9px 22px; font-size: 13px; font-family: 'Inter', sans-serif; border-radius: 4px; text-decoration: none; font-weight: 500; letter-spacing: 0.04em; transition: background 0.2s; }
.nav-cta:hover { background: var(--rose-hover); }

/* ── HERO ── */
.hero { background: linear-gradient(135deg, #FDF5F6 0%, #FFF8F9 60%, #F2DDE1 100%); min-height: 88vh; display: flex; align-items: center; padding: 80px 48px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; right: -60px; top: -60px; width: 520px; height: 520px; border-radius: 50%; border: 1.5px solid rgba(181,51,74,0.1); }
.hero::after  { content: ''; position: absolute; right: 60px; top: 60px; width: 360px; height: 360px; border-radius: 50%; border: 1px solid rgba(181,51,74,0.06); }
.hero-content { max-width: 600px; position: relative; z-index: 1; }
.hero-eyebrow { font-size: 11px; letter-spacing: 0.2em; color: var(--rose); text-transform: uppercase; margin-bottom: 24px; font-weight: 500; }
.hero-title { font-family: 'Playfair Display', serif; font-size: 58px; font-weight: 700; color: var(--dark); line-height: 1.1; margin-bottom: 24px; }
.hero-title em { color: var(--rose); font-style: italic; font-weight: 400; }
.hero-sub { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 40px; font-weight: 300; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 64px; padding-top: 40px; border-top: 1px solid rgba(181,51,74,0.12); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--rose); }
.stat-label { font-size: 12px; color: var(--text-muted); letter-spacing: 0.06em; margin-top: 2px; }

/* ── BUTTONS ── */
.btn-primary { background: var(--rose); color: var(--white); border: none; padding: 14px 32px; font-size: 14px; font-family: 'Inter', sans-serif; cursor: pointer; letter-spacing: 0.04em; border-radius: 4px; text-decoration: none; display: inline-block; font-weight: 500; transition: background 0.2s; }
.btn-primary:hover { background: var(--rose-hover); }
.btn-outline { background: transparent; color: var(--dark); border: 1.5px solid var(--border); padding: 13px 28px; font-size: 14px; font-family: 'Inter', sans-serif; cursor: pointer; letter-spacing: 0.04em; border-radius: 4px; text-decoration: none; display: inline-block; transition: border-color 0.2s, color 0.2s; }
.btn-outline:hover { border-color: var(--rose); color: var(--rose); }
.btn-white { background: var(--white); color: var(--rose); border: none; padding: 14px 36px; font-size: 14px; font-family: 'Inter', sans-serif; cursor: pointer; letter-spacing: 0.04em; border-radius: 4px; font-weight: 600; text-decoration: none; display: inline-block; transition: opacity 0.2s; }
.btn-white:hover { opacity: 0.9; }

/* ── STRIP ── */
.strip { background: var(--white); padding: 14px 48px; display: flex; gap: 40px; align-items: center; border-bottom: 1px solid var(--border); border-top: 1px solid var(--border); flex-wrap: wrap; }
.strip-item { font-size: 12px; color: var(--text-mid); letter-spacing: 0.06em; display: flex; align-items: center; gap: 8px; }
.strip-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--rose); }

/* ── SECTIONS COMMON ── */
section { padding: 88px 48px; }
.section-label { font-size: 11px; letter-spacing: 0.16em; color: var(--rose); text-transform: uppercase; margin-bottom: 16px; font-weight: 500; }
.section-title { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 15px; color: var(--text-mid); max-width: 520px; line-height: 1.75; font-weight: 300; margin-bottom: 56px; }

/* ── SERVICES ── */
.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { background: var(--cream); border: 1px solid var(--border); border-radius: 6px; padding: 36px 28px; transition: border-color 0.2s, transform 0.2s; }
.service-card:hover { border-color: var(--rose); transform: translateY(-2px); }
.service-icon { font-size: 28px; margin-bottom: 18px; }
.service-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; font-weight: 300; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--rose); letter-spacing: 0.06em; margin-top: 18px; text-decoration: none; font-weight: 500; }
.service-link:hover { color: var(--rose-hover); }

/* ── HOW IT WORKS ── */
.how-section { background: var(--blush-pale); }
.how-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 56px; }
.how-steps { display: flex; flex-direction: column; }
.how-step { padding: 28px 0; border-bottom: 1px solid var(--border); display: flex; gap: 24px; align-items: flex-start; }
.step-num { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--rose); font-weight: 700; min-width: 32px; line-height: 1; opacity: 0.5; }
.step-title { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }
.how-visual { background: var(--dark); border-radius: 8px; padding: 48px; color: #fff; min-height: 380px; display: flex; flex-direction: column; justify-content: center; }
.how-visual-title { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 32px; color: #fff; font-weight: 700; }
.flow-item { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.flow-badge { background: rgba(181,51,74,0.15); border: 1px solid rgba(181,51,74,0.3); color: #E8899A; font-size: 11px; padding: 5px 14px; border-radius: 20px; letter-spacing: 0.06em; white-space: nowrap; }
.flow-arrow { color: var(--silver); font-size: 13px; opacity: 0.5; }
.flow-label { font-size: 13px; color: var(--silver); font-weight: 300; }

/* ── WHY US ── */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 56px; }
.why-card { background: var(--cream); border: 1px solid var(--border); border-radius: 6px; padding: 36px; }
.why-card.featured { background: var(--dark); border-color: var(--dark); }
.why-card.featured .why-title { color: #fff; }
.why-card.featured .why-desc { color: var(--silver); }
.why-icon { font-size: 26px; margin-bottom: 18px; }
.why-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.why-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; font-weight: 300; }

/* ── CTA STRIP ── */
.cta-strip { background: var(--rose); padding: 72px 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.cta-strip-title { font-family: 'Playfair Display', serif; font-size: 34px; color: #fff; font-weight: 700; max-width: 500px; }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 56px 48px 32px; color: var(--silver); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { margin-bottom: 16px; }
.footer-tagline { font-size: 13px; color: var(--silver); font-weight: 300; line-height: 1.75; }
.footer-col-title { font-size: 11px; letter-spacing: 0.12em; color: var(--silver); text-transform: uppercase; margin-bottom: 20px; font-weight: 500; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; font-weight: 300; transition: color 0.2s; }
.footer-links a:hover { color: var(--rose); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, #FDF5F6 0%, #FFF8F9 60%, #F2DDE1 100%); padding: 80px 48px 72px; }
.page-hero-label { font-size: 11px; letter-spacing: 0.2em; color: var(--rose); text-transform: uppercase; margin-bottom: 16px; font-weight: 500; }
.page-hero-title { font-family: 'Playfair Display', serif; font-size: 46px; font-weight: 700; color: var(--dark); line-height: 1.15; margin-bottom: 16px; }
.page-hero-sub { font-size: 16px; color: var(--text-mid); max-width: 520px; font-weight: 300; line-height: 1.75; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--text-mid); margin-bottom: 40px; font-weight: 300; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon { width: 40px; height: 40px; min-width: 40px; border-radius: 6px; background: var(--blush); display: flex; align-items: center; justify-content: center; font-size: 18px; border: 1px solid rgba(181,51,74,0.15); }
.contact-label { font-size: 11px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-value { font-size: 14px; color: var(--dark); font-weight: 500; margin-top: 3px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--dark); letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text-dark); background: var(--white); border: 1.5px solid var(--border); border-radius: 4px; padding: 12px 14px; outline: none; transition: border-color 0.2s; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--rose); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── LANGUAGES ── */
.lang-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 48px; }
.lang-pill { background: var(--white); border: 1px solid var(--border); border-radius: 24px; padding: 8px 18px; font-size: 14px; color: var(--dark); font-weight: 400; transition: all 0.2s; cursor: default; }
.lang-pill:hover { background: var(--blush); border-color: var(--rose); }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 28px; border-top: 3px solid var(--rose); }
.value-icon { font-size: 24px; margin-bottom: 14px; }
.value-title { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.value-desc { font-size: 13px; color: var(--text-mid); line-height: 1.65; font-weight: 300; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  section { padding: 64px 24px; }
  .hero { padding: 60px 24px; min-height: auto; }
  .hero-title { font-size: 38px; }
  .how-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .cta-strip { flex-direction: column; text-align: center; padding: 48px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .strip { padding: 14px 24px; gap: 16px; }
  .page-hero { padding: 60px 24px 52px; }
  .page-hero-title { font-size: 34px; }
  .hero-stats { gap: 24px; }
}
