
:root {
  --bg: #f6f1ea;
  --surface: #fdfbf8;
  --surface-2: #eee5de;
  --text: #2a2526;
  --muted: #766c69;
  --line: #ddd2c9;
  --accent: #6f2a45;
  --accent-dark: #4c1830;
  --choc-dark: #2a1a13;
  --choc-mid: #4a2c1c;
  --choc-light: #7a4a2a;
  --accent-soft: #ecdce2;
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(70, 47, 55, .12);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: 1180px;
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.narrow { max-width: 900px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(221, 210, 201, .75);
  background: rgba(246, 241, 234, .86);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.logo { display: inline-flex; align-items: baseline; gap: 7px; font-weight: 700; }
.logo-block { display: flex; flex-direction: column; gap: 4px; }
.logo-line { display: inline-flex; align-items: baseline; gap: 8px; }
.logo-mark { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--accent); letter-spacing: -.01em; }
.logo-text { font-size: 22px; font-weight: 700; letter-spacing: -.01em; color: var(--text); }
.logo-tagline { font-size: 12px; color: var(--muted); line-height: 1.4; max-width: 340px; }
.desktop-nav { display: flex; gap: 30px; font-size: 15.5px; font-weight: 500; color: var(--text); }
.desktop-nav a:hover { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { font-size: 14.5px; font-weight: 600; }
.btn {
  border: 0;
  border-radius: 999px;
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--white);
  background: var(--accent-dark);
  box-shadow: 0 12px 28px rgba(76, 24, 48, .22);
}
.btn-primary:hover { background: #3a1225; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-light { background: var(--white); color: var(--accent-dark); }
.btn-small { min-height: 42px; padding: 0 18px; font-size: 14px; }
.hero { padding: 76px 0 100px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: center;
  gap: 48px;
}
.eyebrow, .section-label {
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 700;
}
.eyebrow { margin-bottom: 22px; }
h1, h2, h3 { margin: 0; font-family: var(--font-head); font-weight: 500; }
h1 {
  font-size: clamp(32px, 3.15vw, 48px);
  line-height: 1.18;
  letter-spacing: -.015em;
  max-width: 700px;
  font-weight: 600;
}
h1 .accent-word { color: var(--accent); }
h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -.025em;
}
h3 { font-size: 25px; line-height: 1.2; }
.hero-subtitle { font-size: 17px; color: var(--muted); max-width: 560px; margin: 22px 0 30px; line-height: 1.6; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 44px; }
.hero-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 20px; max-width: 560px; }
.hero-feature { display: flex; align-items: flex-start; gap: 11px; }
.hf-icon { width: 22px; height: 22px; flex: 0 0 auto; color: var(--accent); margin-top: 1px; }
.hero-feature span:last-child { font-size: 13.5px; color: var(--text); line-height: 1.45; }
.hero-visual {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
}
.visual-glow {
  position: absolute; inset: 6% 6%;
  background: radial-gradient(circle, rgba(173, 108, 133, .22), transparent 70%);
  filter: blur(20px);
}
.hero-visual-img {
  position: relative; z-index: 2;
  width: 100%; max-width: 380px;
  filter: drop-shadow(0 44px 50px rgba(42, 26, 19, .18));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.section { padding: 100px 0; border-top: 1px solid rgba(221, 210, 201, .7); }
.section-head { max-width: 900px; margin-bottom: 46px; }
.section-head .section-label { margin-bottom: 14px; }
.section-head p { color: var(--muted); max-width: 700px; font-size: 17px; }
.audit-section { padding-top: 0; border: 0; }
.audit-card {
  border-radius: var(--radius-lg);
  padding: 46px;
  background: var(--surface);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
}
.audit-card h2 { font-size: 40px; margin: 12px 0 18px; }
.audit-card p { color: var(--muted); }
.lead-form { display: grid; gap: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form label span, .contact-methods legend {
  display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px;
}
.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"] {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  padding: 0 14px;
  outline: none;
}
.lead-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(111,42,69,.1); }
.contact-methods {
  grid-column: 1 / -1;
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.contact-methods label { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; }
.consent { display: flex !important; align-items: flex-start; gap: 9px; font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.consent input { margin-top: 3px; flex: 0 0 auto; }
.consent a { color: var(--accent); text-decoration: underline; }
.form-status { min-height: 20px; font-size: 13px; }
.problem-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.problem-card {
  padding: 26px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  min-height: 220px;
}
.problem-card span { font-family: var(--font-head); font-size: 36px; color: var(--accent); }
.problem-card p { margin-top: 24px; color: var(--muted); font-size: 14.5px; }
.transition-line { margin-top: 34px; max-width: 760px; font-size: 17px; color: var(--muted); }
.route-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.route-copy { position: sticky; top: 110px; }
.route-copy h2 { margin: 12px 0 0; font-size: clamp(28px, 3.2vw, 40px); }
.route-steps { display: grid; gap: 14px; }
.route-step {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.route-step > span { font-family: var(--font-head); font-size: 32px; color: var(--accent); }
.route-step h3 { font-size: 18px; line-height: 1.4; font-weight: 600; font-family: var(--font-body); margin: 0; }
.solutions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.solution-card {
  position: relative;
  padding: 34px;
  min-height: 300px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.solution-card.featured {
  background: linear-gradient(150deg, var(--choc-mid), var(--choc-dark));
  color: white;
  border: 0;
}
.solution-card.featured p { color: #e8dccf; }
.solution-number {
  position: absolute; right: 26px; top: 16px;
  font-family: var(--font-head); font-size: 74px; color: rgba(111,42,69,.08);
}
.featured .solution-number { color: rgba(255,255,255,.14); }
.solution-card h3 { margin: 10px 0 16px; max-width: 540px; font-size: 27px; }
.solution-card p { color: var(--muted); max-width: 580px; font-size: 15.5px; }
.gift-card { background: linear-gradient(145deg, #fffaf6, #f5e8ec); border-color: rgba(111,42,69,.2); }
.gift-badge {
  position: absolute; left: 34px; bottom: 28px;
  display: inline-flex; padding: 9px 13px;
  background: var(--accent-dark); color: white; border-radius: 999px;
  font-size: 12px; font-weight: 700;
}
.center-cta { display: flex; justify-content: center; margin-top: 36px; }
.gift-banner {
  padding: 54px;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--choc-dark), var(--choc-light));
  color: white;
  display: grid; grid-template-columns: .7fr 1.3fr; gap: 46px; align-items: center;
  overflow: hidden;
}
.light { color: #d8b896; }
.gift-banner h2 { margin: 12px 0 20px; }
.gift-banner p { color: #e8dccf; max-width: 700px; }
.gift-banner-art { min-height: 260px; display: grid; place-items: center; }
.gift-banner-art img { width: 100%; max-width: 260px; filter: drop-shadow(0 26px 34px rgba(0,0,0,.28)); }
.promotion-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; }
.promotion-grid .section-head { margin: 0; position: sticky; top: 110px; }
.promotion-grid .section-head h2 { margin: 12px 0 18px; }
.promotion-grid .section-head p { margin-bottom: 26px; }
.promotion-list { display: grid; gap: 12px; }
.promotion-item {
  display: grid; grid-template-columns: 60px 1fr; gap: 18px;
  padding: 22px 24px; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--line);
}
.promotion-item > span { font-family: var(--font-head); font-size: 30px; color: var(--accent); }
.promotion-item p { color: var(--muted); margin: 0; font-size: 15px; }
.gift-mini { background: var(--accent-soft); border-color: transparent; }
.expertise-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.expertise-visual { min-height: 460px; display: grid; place-items: center; position: relative; }
.expertise-visual img { width: 100%; max-width: 320px; filter: drop-shadow(0 30px 36px rgba(42,26,19,.16)); }
.expertise-copy h2 { margin: 12px 0 20px; }
.expertise-lead { color: var(--muted); font-size: 17px; margin: 0 0 26px; }
.clean-list { list-style: none; padding: 0; display: grid; gap: 14px; }
.clean-list li { padding-left: 26px; position: relative; font-size: 15.5px; color: var(--text); }
.clean-list li::before { content: "•"; position: absolute; left: 6px; color: var(--accent); font-size: 22px; }
blockquote {
  margin: 32px 0 0;
  padding: 26px 28px;
  border-left: 4px solid var(--accent);
  background: var(--surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 1.4;
}
.founder-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 56px; align-items: center; }
.founder-photo {
  position: relative;
  min-height: 460px; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #fdfbf8, #f4ece1);
  box-shadow: 0 24px 60px rgba(70,47,55,.10);
  display: grid; place-items: end center;
  overflow: hidden;
}
.founder-photo img {
  width: 78%;
  max-width: 300px;
  object-fit: contain;
  position: relative; z-index: 1;
}
.founder-copy h2 { margin: 10px 0 16px; }
.lead-text { font-size: 19px; }
.founder-copy .clean-list { margin: 20px 0 24px; }
.founder-copy .clean-list li { color: var(--muted); font-size: 15px; }
.founder-copy > p { color: var(--muted); font-size: 15.5px; }
.founder-principle {
  margin-top: 26px; padding: 20px 24px; border-radius: 18px;
  background: var(--accent-dark); color: white; font-weight: 500; font-size: 15px; line-height: 1.5;
}
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 56px; padding-bottom: 48px; border-bottom: 1px solid var(--line);
}
.stat-item .stat-num { font-family: var(--font-head); font-size: clamp(32px, 3.4vw, 46px); color: var(--accent); display: block; line-height: 1; }
.stat-item .stat-label { display: block; margin-top: 10px; color: var(--muted); font-size: 14px; line-height: 1.4; }
.experience-head {
  display: flex; align-items: end; justify-content: space-between; gap: 30px; max-width: none;
}
.carousel-controls { display: flex; gap: 10px; }
.carousel-btn {
  width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%;
  background: var(--surface); font-size: 20px;
}
.carousel-btn:hover { background: var(--accent-dark); color: white; border-color: var(--accent-dark); }
.cases-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 42%);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--surface-2);
}
.case-card {
  scroll-snap-align: start;
  min-height: 400px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
}
.case-type { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); font-weight: 700; }
.case-card h3 { margin: 56px 0 20px; font-size: 27px; }
.case-card ul { padding-left: 18px; color: var(--muted); font-size: 15px; }
.case-card li + li { margin-top: 8px; }
.accent-case { background: linear-gradient(150deg, var(--choc-mid), var(--choc-dark)); color: white; border: 0; }
.accent-case .case-type, .accent-case p { color: #e8dccf; }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.process-card {
  padding: 24px; min-height: 230px; border-radius: var(--radius-md);
  background: var(--surface); border: 1px solid var(--line);
}
.process-card span { font-family: var(--font-head); font-size: 38px; color: var(--accent); }
.process-card p { margin: 30px 0 0; font-size: 14.5px; color: var(--text); line-height: 1.45; }
.accordion { display: grid; gap: 12px; }
details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0 24px;
}
summary { list-style: none; cursor: pointer; font-weight: 600; padding: 22px 0; position: relative; padding-right: 30px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; font-size: 22px; color: var(--accent); }
details[open] summary::after { content: "−"; }
details p { color: var(--muted); margin: 0 0 22px; font-size: 15px; }
.final-card {
  background: linear-gradient(140deg, var(--choc-dark), var(--choc-light));
  color: white;
  border-radius: var(--radius-lg);
  padding: 58px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
}
.final-card h2 { margin: 12px 0 18px; }
.final-card p { color: #e8dccf; }
.dark-form input[type="text"], .dark-form input[type="tel"], .dark-form input[type="email"] {
  background: rgba(255,255,255,.95);
}
.dark-form .contact-methods label, .dark-form .consent { color: #ecdfd3; }
.dark-form .consent a { color: white; }
.footer { padding: 60px 0 30px; background: #221e1f; color: #e6dddd; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.3fr .8fr; gap: 36px; }
.footer h4 { color: white; margin-top: 0; font-size: 14px; font-weight: 600; }
.footer a { display: block; margin: 7px 0; color: #c9bec1; font-size: 14px; }
.footer p { color: #c9bec1; }
.footer-logo .logo-text { color: white; }
.footer-logo .logo-mark { color: #d79bb2; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 38px; padding-top: 22px; display: flex; justify-content: space-between; color: #948a8c; font-size: 13px; }
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: none;
}
.modal.is-open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(20,15,17,.58); backdrop-filter: blur(7px); }
.modal-dialog {
  position: relative;
  width: min(620px, calc(100% - 24px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  margin: 20px auto;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 40px 100px rgba(0,0,0,.28);
}
.modal-dialog h2 { font-size: 38px; margin: 10px 0 10px; }
.modal-dialog > p { color: var(--muted); margin-bottom: 24px; }
.modal-close {
  position: absolute; top: 16px; right: 18px;
  border: 0; background: transparent; font-size: 34px; color: var(--muted);
}
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 90;
  max-width: 980px; margin: auto;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(34,30,31,.96);
  color: white;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.cookie-banner p { margin: 3px 0 0; color: #cfc4c7; font-size: 13px; }
.cookie-banner a { color: #e6ccd6; font-size: 13px; text-decoration: underline; }
.cookie-actions { display: flex; align-items: center; gap: 14px; }
.cookie-banner.is-hidden { display: none; }
.mobile-sticky-cta {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 70;
  border: 0; min-height: 52px; border-radius: 999px;
  background: var(--accent-dark); color: white; font-weight: 700;
  box-shadow: 0 14px 34px rgba(76,24,48,.35);
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Legal pages */
.legal-page { padding: 64px 0 100px; }
.legal-page .container.narrow { max-width: 820px; }
.legal-page h1 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 6px; }
.legal-meta { color: var(--muted); font-size: 14px; margin-bottom: 40px; }
.legal-page h2 { font-family: var(--font-body); font-weight: 700; font-size: 21px; margin: 40px 0 14px; }
.legal-page p { color: var(--text); font-size: 15.5px; line-height: 1.75; margin: 0 0 14px; }
.legal-page a { color: var(--accent); text-decoration: underline; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 30px; font-size: 14px; color: var(--muted); }
.back-link:hover { color: var(--accent); }

@media (max-width: 1000px) {
  .desktop-nav { display: none; }
  .hero-grid, .audit-card, .route-grid, .promotion-grid, .expertise-grid, .founder-grid, .final-card { grid-template-columns: 1fr; }
  .hero-visual { min-height: 440px; }
  .route-copy, .promotion-grid .section-head { position: static; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-card:last-child { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-track { grid-auto-columns: minmax(330px, 62%); }
}
@media (max-width: 700px) {
  .container { width: min(100% - 24px, var(--container)); }
  .site-header .header-phone { display: none; }
  .site-header .btn { display: none; }
  .nav-wrap { min-height: 66px; padding: 10px 0; }
  .logo-tagline { display: none; }
  .hero-features { grid-template-columns: 1fr; max-width: none; }
  .hero { padding: 40px 0 64px; }
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 320px; }
  .hero-visual-img { max-width: 260px; }
  .section { padding: 70px 0; }
  .audit-card, .gift-banner, .final-card { padding: 26px; }
  .audit-card h2 { font-size: 33px; }
  .form-grid { grid-template-columns: 1fr; }
  .problem-grid, .solutions-grid, .process-grid, .footer-grid { grid-template-columns: 1fr; }
  .problem-card:last-child { grid-column: auto; }
  .route-step { grid-template-columns: 40px 1fr; padding: 22px; }
  .solution-card { min-height: auto; padding: 26px; }
  .solution-card h3 { font-size: 24px; }
  .gift-badge { position: static; margin-top: 22px; width: fit-content; }
  .gift-banner { grid-template-columns: 1fr; text-align: center; }
  .gift-banner-art { min-height: 180px; }
  .gift-banner-art img { max-width: 160px; margin: 0 auto; }
  .promotion-item { grid-template-columns: 40px 1fr; padding: 20px; }
  .expertise-visual { min-height: 300px; }
  .expertise-visual img { max-width: 220px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .founder-photo { min-height: 380px; }
  .founder-photo img { max-width: 260px; }
  .experience-head { align-items: flex-start; }
  .cases-track { grid-auto-columns: 86%; }
  .carousel-controls { display: none; }
  .case-card { min-height: 380px; padding: 26px; }
  .case-card h3 { font-size: 26px; margin-top: 44px; }
  .footer-bottom { padding-bottom: 70px; flex-direction: column; gap: 6px; align-items: flex-start; }
  .mobile-sticky-cta { display: block; }
  .cookie-banner { bottom: 76px; flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; justify-content: space-between; }
}
