:root {
  --bg: #f7f2eb;
  --panel: #fffaf5;
  --ink: #2d332d;
  --muted: #5b665d;
  --line: #dccfc0;
  --accent: #9d6e57;
  --accent-soft: #e7d5c7;
  --sage: #a8b39f;
  --shadow: 0 24px 60px rgba(86, 77, 63, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #f8f4ee 0%, #f4ede5 100%);
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
.page-shell { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0 16px; position: sticky; top: 0; z-index: 10;
  background: rgba(248,244,238,.88); backdrop-filter: blur(14px);
}
.brand { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; }
.header-actions, .desktop-nav, .lang-toggle { display:flex; align-items:center; gap:18px; }
.desktop-nav a { color: var(--muted); font-size: .95rem; }
.lang-toggle {
  border: 1px solid var(--line); border-radius: 999px; padding: 4px; background: rgba(255,255,255,.72);
}
.lang-btn {
  border: none; background: transparent; padding: 8px 12px; border-radius: 999px; cursor: pointer; color: var(--muted);
}
.lang-btn.active { background: var(--ink); color: white; }
.hero {
  display:grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items:center; padding: 44px 0 28px;
}
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .75rem; color: var(--accent); font-weight:700; margin-bottom: 12px; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; margin: 0 0 16px; line-height: .95; }
h1 { font-size: clamp(3rem, 8vw, 5.6rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h3 { font-size: 2rem; }
p, li { line-height: 1.75; color: var(--muted); font-size: 1rem; }
.hero-text { font-size: 1.08rem; max-width: 62ch; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-top: 28px; }
.button {
  display:inline-flex; align-items:center; justify-content:center; padding: 14px 20px; border-radius: 999px; font-weight:600;
  border:1px solid var(--ink);
}
.button.primary { background: var(--ink); color: white; border-color: var(--ink); }
.button.secondary { background: transparent; color: var(--ink); }
.button.full { width: 100%; }
.placeholder-card {
  min-height: 230px; border-radius: var(--radius); border: 1px dashed rgba(93,102,93,.35); background:
  linear-gradient(135deg, rgba(231,213,199,.8), rgba(168,179,159,.32)), var(--panel);
  display:flex; align-items:flex-end; padding: 24px; box-shadow: var(--shadow);
}
.placeholder-card.large { min-height: 520px; }
.placeholder-card.small { min-height: 180px; margin-top: 20px; }
.placeholder-card span { max-width: 18ch; color: rgba(45,51,45,.72); font-weight: 600; }
.promo-band, .soft-panel, .service-card {
  background: rgba(255,250,245,.88); border:1px solid rgba(220,207,192,.8); border-radius: var(--radius); box-shadow: var(--shadow);
}
.promo-band { display:grid; grid-template-columns: .9fr 1.1fr; gap: 28px; padding: 28px; margin: 26px 0 24px; }
.offer-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.offer-card { background: white; border-radius: 20px; padding: 20px; }
.offer-card strong { display:block; margin-bottom: 8px; font-size: 1.1rem; }
.offer-card p { margin:0; color: var(--ink); font-weight:600; }
.section { padding: 64px 0; }
.two-col, .grid-2 { display:grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.soft-panel { padding: 28px; }
.credentials ul, .policies ul, .check-list { padding-left: 20px; margin: 0; }
.tinted { background: rgba(255,255,255,.26); border-radius: 36px; padding-inline: 28px; }
.services { display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { padding: 26px; }
.service-card.muted { background: rgba(247,242,235,.72); }
.price { font-weight:700; color: var(--ink); }
.contact-section { display:grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items:start; }
.contact-list p { margin: 0 0 18px; }
.site-footer { display:flex; justify-content:space-between; gap:16px; padding: 26px 0 40px; color: var(--muted); font-size:.95rem; }
.sticky-cta {
  position: fixed; bottom: 18px; right: 18px; background: var(--ink); color: white; padding: 14px 20px; border-radius: 999px;
  box-shadow: 0 18px 40px rgba(45,51,45,.24); font-weight: 700;
}
@media (max-width: 940px) {
  .hero, .promo-band, .two-col, .grid-2, .contact-section, .services { grid-template-columns: 1fr; }
  .desktop-nav { display:none; }
  .site-header { align-items:flex-start; gap:14px; }
  .header-actions { flex-direction:column; align-items:flex-end; }
  .placeholder-card.large { min-height: 320px; }
}
@media (max-width: 640px) {
  .page-shell { width: min(100% - 20px, 1200px); }
  .site-header { padding-top: 18px; }
  .promo-band, .soft-panel, .service-card { border-radius: 20px; }
  .sticky-cta { left: 12px; right: 12px; text-align:center; bottom: 12px; }
  .site-footer { flex-direction:column; padding-bottom: 88px; }
}
