/* MindLine — variant light / editorial calm */
:root {
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --bg: #f7f0e7;
  --bg-soft: #efe4d7;
  --surface: rgba(255, 252, 247, 0.78);
  --surface-solid: #fffaf3;
  --ink: #26302b;
  --muted: #6f766f;
  --line: rgba(60, 72, 64, 0.14);
  --sage: #718778;
  --sage-dark: #3f5a4d;
  --sand: #dac4ab;
  --accent: #a76d45;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 24px 70px rgba(69, 54, 40, 0.14);
  --transition: 260ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 2%, rgba(169, 197, 177, 0.36), transparent 32rem),
    radial-gradient(circle at 84% 12%, rgba(218, 196, 171, 0.42), transparent 30rem),
    linear-gradient(180deg, #fbf6ef 0%, var(--bg) 48%, #f2e7da 100%);
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; }
button, input, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  padding: 12px 14px 12px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 250, 243, 0.64);
  box-shadow: 0 12px 40px rgba(57, 46, 35, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(22px);
  transition: var(--transition);
}
.site-header.is-scrolled { background: rgba(255, 250, 243, 0.88); box-shadow: 0 18px 50px rgba(57, 46, 35, 0.12); }
.logo { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.logo-mark {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%;
  background: var(--sage-dark); color: #fffaf3; font-family: var(--font-heading); font-size: 23px; font-weight: 700;
}
.logo-text { display: flex; flex-direction: column; font-weight: 800; letter-spacing: -0.02em; line-height: 1.08; }
.logo-text small { font-size: 10px; color: var(--muted); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.nav { justify-self: center; display: flex; align-items: center; gap: 8px; }
.nav a { padding: 10px 12px; color: #46524c; font-size: 14px; font-weight: 700; border-radius: 999px; transition: var(--transition); }
.nav a:hover { background: rgba(113, 135, 120, 0.13); color: var(--sage-dark); }
.header-phone {
  padding: 13px 18px; border-radius: 999px; background: #26302b; color: #fffaf3; font-weight: 800; font-size: 15px;
  box-shadow: 0 12px 26px rgba(38, 48, 43, 0.18); transition: var(--transition);
}
.header-phone:hover { transform: translateY(-2px); background: var(--sage-dark); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--ink); padding: 11px; }
.nav-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; border-radius: 4px; }

.section { padding: 104px 0; position: relative; }
.eyebrow, .section-kicker, .label {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; color: var(--accent);
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
}
.eyebrow::before, .section-kicker::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .72; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-heading); line-height: 0.98; letter-spacing: -0.035em; color: var(--ink); }
h1 { max-width: 800px; margin-bottom: 24px; font-size: clamp(38px, 5.2vw, 62px); }
h2 { margin-bottom: 20px; font-size: clamp(30px, 3.5vw, 44px); }
h3 { margin-bottom: 12px; font-size: clamp(22px, 2vw, 28px); }
p { color: var(--muted); }
.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head p { max-width: 650px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border: 0; border-radius: 999px;
  cursor: pointer; font-weight: 800; transition: transform var(--transition), box-shadow var(--transition), background var(--transition); white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--sage-dark); color: #fffaf3; box-shadow: 0 18px 34px rgba(63, 90, 77, 0.24); }
.btn-primary:hover { background: #2f493e; box-shadow: 0 22px 42px rgba(63, 90, 77, 0.3); }
.btn-ghost { border: 1px solid var(--line); background: rgba(255, 250, 243, 0.62); color: var(--ink); }
.btn-ghost:hover { background: #fffaf3; box-shadow: var(--shadow); }

.hero { min-height: 100vh; padding: 132px 0 70px; display: grid; align-items: center; overflow: hidden; position: relative; }
.hero-bg { position: absolute; inset: 0; opacity: 0.18; filter: saturate(0.86); }
.hero-bg img { height: 100%; object-fit: cover; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(251,246,239,.98), rgba(251,246,239,.86) 46%, rgba(251,246,239,.64)); }
.hero::before { content: ""; position: absolute; width: 420px; height: 420px; right: 8%; bottom: 5%; border-radius: 50%; background: rgba(113, 135, 120, 0.22); filter: blur(52px); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .76fr); gap: 56px; align-items: center; }
.hero-lead { max-width: 620px; margin-bottom: 30px; font-size: clamp(17px, 1.5vw, 20px); color: #546159; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 680px; }
.hero-metrics span { padding: 16px 18px; border: 1px solid rgba(60,72,64,.12); border-radius: 20px; background: rgba(255,250,243,.62); color: var(--muted); box-shadow: 0 18px 44px rgba(68, 52, 36, .08); }
.hero-metrics strong { display: block; color: var(--ink); font-size: 22px; line-height: 1; }
.hero-panel { position: relative; padding: 16px; border: 1px solid rgba(255,255,255,.72); border-radius: var(--radius-xl); background: rgba(255,250,243,.58); box-shadow: var(--shadow); backdrop-filter: blur(16px); }
.hero-panel-img { overflow: hidden; border-radius: 28px; height: 500px; }
.hero-panel-img img { height: 100%; object-fit: cover; transition: transform 800ms ease; }
.hero-panel:hover img { transform: scale(1.045); }
.hero-panel-card { position: absolute; left: -22px; right: 36px; bottom: 34px; padding: 24px; border-radius: 26px; background: rgba(38, 48, 43, .88); color: #fffaf3; backdrop-filter: blur(14px); box-shadow: 0 22px 56px rgba(38,48,43,.2); }
.hero-panel-card span { display: block; margin-bottom: 8px; color: var(--sand); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.hero-panel-card strong { display: block; margin-bottom: 8px; font-size: 21px; line-height: 1.2; }
.hero-panel-card p { margin: 0; color: rgba(255,250,243,.76); }

.about-layout { display: grid; grid-template-columns: .6fr 1fr 1.1fr; gap: 30px; align-items: start; }
.about-title { grid-column: 2; }
.about-text { grid-column: 3; font-size: 17px; }
.about-cards { grid-column: 2 / 4; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }
.about-cards article { padding: 22px; min-height: 140px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: 0 16px 48px rgba(68, 52, 36, .07); }
.about-cards strong { display: block; color: var(--sage-dark); margin-bottom: 28px; }
.about-cards span { display: block; color: var(--ink); font-weight: 700; }

.evidence { padding-top: 30px; }
.evidence-grid { display: grid; grid-template-columns: .92fr 1fr; gap: 54px; align-items: center; }
.evidence-image { height: 520px; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); }
.evidence-image img { height: 100%; object-fit: cover; transition: transform .8s ease; }
.evidence-image:hover img { transform: scale(1.04); }
.evidence-copy { padding: 44px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: rgba(255, 250, 243, .62); }
.check-list { display: grid; gap: 18px; margin-top: 24px; }
.check-list p { display: grid; grid-template-columns: 24px 1fr; gap: 14px; margin: 0; color: #4e5d54; }
.check-list span { width: 24px; height: 24px; border-radius: 50%; background: rgba(113, 135, 120, .18); position: relative; }
.check-list span::after { content: ""; position: absolute; width: 10px; height: 5px; border-left: 2px solid var(--sage-dark); border-bottom: 2px solid var(--sage-dark); transform: rotate(-45deg); left: 7px; top: 8px; }

.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case-card { overflow: hidden; border-radius: var(--radius-xl); min-height: 480px; display: flex; flex-direction: column; background: var(--surface-solid); box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.7); }
.case-card img { height: 280px; object-fit: cover; transition: transform .75s ease; }
.case-card:hover img { transform: scale(1.06); }
.case-card div { padding: 26px; }
.case-card span { color: var(--accent); font-weight: 900; }
.case-card p { margin-bottom: 0; }

.process { background: rgba(255,255,255,.22); }
.process-line { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-line::before { content: ""; position: absolute; top: 36px; left: 8%; right: 8%; height: 1px; background: var(--line); }
.step { position: relative; z-index: 1; padding: 24px; border-radius: var(--radius-lg); background: rgba(255,250,243,.82); border: 1px solid rgba(255,255,255,.72); box-shadow: 0 16px 46px rgba(68, 52, 36, .08); }
.step > span { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 26px; border-radius: 50%; background: var(--sage-dark); color: #fff; font-weight: 900; }
.step h3 { font-size: 24px; }
.step p { margin-bottom: 0; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { padding: 30px; border-radius: var(--radius-xl); background: rgba(255,250,243,.72); border: 1px solid var(--line); box-shadow: 0 18px 54px rgba(68, 52, 36, .08); display: flex; flex-direction: column; gap: 12px; transition: var(--transition); }
.price-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.price-card.is-featured { background: var(--ink); color: #fffaf3; }
.price-card.is-featured h3, .price-card.is-featured p { color: #fffaf3; }
.price-card strong { margin-top: auto; font-size: 28px; letter-spacing: -.03em; color: var(--sage-dark); }
.price-card.is-featured strong { color: var(--sand); }
.price-card a { display: inline-flex; align-self: flex-start; margin-top: 8px; padding: 12px 16px; border-radius: 999px; background: rgba(113, 135, 120, .15); color: var(--sage-dark); font-weight: 800; }
.price-card.is-featured a { background: #fffaf3; color: var(--ink); }

.faq-layout { display: grid; grid-template-columns: .78fr 1.2fr; gap: 58px; align-items: start; }
.faq-side { position: sticky; top: 128px; }
.faq-list { display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: 22px; background: rgba(255,250,243,.72); overflow: hidden; }
.faq-button { width: 100%; border: 0; background: transparent; padding: 22px 24px; text-align: left; display: flex; justify-content: space-between; gap: 20px; color: var(--ink); font-weight: 800; cursor: pointer; }
.faq-button span { position: relative; width: 22px; height: 22px; flex: 0 0 22px; border-radius: 50%; background: rgba(113, 135, 120, .14); }
.faq-button span::before, .faq-button span::after { content: ""; position: absolute; background: var(--sage-dark); left: 6px; right: 6px; top: 10px; height: 2px; transition: var(--transition); }
.faq-button span::after { transform: rotate(90deg); }
.faq-item.is-open .faq-button span::after { transform: rotate(0); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height 280ms ease; }
.faq-panel p { margin: 0; padding: 0 24px 22px; }

.contact { padding-top: 50px; }
.contact-card { display: grid; grid-template-columns: .92fr 1fr; gap: 34px; padding: 38px; border-radius: 38px; background: linear-gradient(135deg, rgba(63,90,77,.96), rgba(113,135,120,.88)); color: #fffaf3; box-shadow: 0 28px 90px rgba(63,90,77,.25); position: relative; overflow: hidden; }
.contact-card::after { content: ""; position: absolute; width: 360px; height: 360px; right: -120px; top: -120px; border-radius: 50%; background: rgba(255,250,243,.13); }
.contact-copy, .contact-form { position: relative; z-index: 1; }
.contact-copy h2, .contact-copy p, .contact-copy .eyebrow { color: #fffaf3; }
.contact-copy p { color: rgba(255,250,243,.78); }
.contact-links { display: grid; gap: 10px; margin-top: 28px; color: rgba(255,250,243,.88); font-weight: 700; }
.contact-form { padding: 26px; border: 1px solid rgba(255,255,255,.26); border-radius: 28px; background: rgba(255,255,255,.14); backdrop-filter: blur(16px); display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; color: rgba(255,250,243,.84); font-weight: 800; font-size: 13px; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.24); border-radius: 16px; padding: 15px 16px; background: rgba(255,250,243,.92); color: var(--ink); outline: none; transition: var(--transition); }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.12); }
.contact-form .btn-primary { width: 100%; background: #fffaf3; color: var(--sage-dark); box-shadow: none; }
.contact-form .btn-primary:hover { background: #f6eadb; }
.form-message { min-height: 20px; margin: 0; font-size: 14px; color: rgba(255,250,243,.86); }
.form-message.is-success { color: #efffe9; }
.form-message.is-error { color: #ffe1d8; }

.footer { padding: 34px 0 42px; color: #687269; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 26px; }
.footer .logo-mark { width: 34px; height: 34px; font-size: 20px; }
.footer p { margin: 0; font-size: 14px; }
.footer a:hover { color: var(--sage-dark); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 680ms ease, transform 680ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: auto auto auto; }
  .nav-toggle { display: block; justify-self: end; }
  .nav { position: fixed; left: 16px; right: 16px; top: 88px; display: grid; gap: 6px; padding: 16px; border-radius: 24px; background: rgba(255,250,243,.95); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: var(--transition); }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 13px 14px; }
  .hero-grid, .evidence-grid, .faq-layout, .contact-card { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-title, .about-text, .about-cards { grid-column: auto; }
  .about-cards, .case-grid, .pricing-grid { grid-template-columns: 1fr; }
  .process-line { grid-template-columns: repeat(2, 1fr); }
  .process-line::before, .faq-side { position: static; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1160px); }
  .site-header { top: 12px; width: calc(100% - 20px); min-height: 64px; padding: 10px; gap: 10px; }
  .logo-text small { display: none; }
  .header-phone { padding: 11px 12px; font-size: 12px; }
  .hero { padding-top: 112px; }
  h1 { font-size: clamp(34px, 12vw, 46px); }
  h2 { font-size: clamp(29px, 9vw, 38px); }
  .section { padding: 76px 0; }
  .hero-metrics, .process-line { grid-template-columns: 1fr; }
  .hero-panel-img, .evidence-image { height: 360px; }
  .hero-panel-card { left: 18px; right: 18px; bottom: 24px; }
  .contact-card { padding: 22px; border-radius: 28px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
