*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink: #171717;
  --paper: #f7f3ec;
  --panel: #ffffff;
  --line: #ded6c9;
  --muted: #6f6a62;
  --green: #1f5b4f;
  --wine: #7f2f3b;
  --gold: #a97931;
  --blue: #315f7d;
  --shadow: 0 18px 50px rgba(23, 23, 23, .12);
}
html { scroll-behavior: smooth; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 20;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(247, 243, 236, .9);
  border-bottom: 1px solid rgba(222, 214, 201, .8);
  backdrop-filter: blur(14px);
}
.brand { font-weight: 800; letter-spacing: .02em; color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 13px; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  border: 1px solid var(--green); color: var(--green);
  padding: 8px 14px; border-radius: 6px; font-weight: 700;
}
.hero {
  min-height: 88vh;
  display: grid; align-items: end;
  padding: 130px clamp(18px, 6vw, 78px) 54px;
  position: relative; overflow: hidden;
  color: white;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--hero-image);
  background-size: cover; background-position: center;
  transform: scale(1.02);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,20,20,.82), rgba(20,20,20,.42) 58%, rgba(20,20,20,.12));
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.eyebrow {
  display: inline-block;
  color: #f2cf90; font-size: 12px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 20px;
}
h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(40px, 8vw, 86px);
  line-height: 1.02; font-weight: 800;
  overflow-wrap: anywhere; hyphens: auto;
}
.hero p { margin-top: 24px; max-width: 620px; color: rgba(255,255,255,.86); font-size: clamp(17px, 2vw, 21px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 12px 18px; border-radius: 7px;
  font-weight: 800; font-size: 14px; border: 1px solid transparent;
}
.btn.primary { background: #f0c978; color: #171717; }
.btn.secondary { border-color: rgba(255,255,255,.5); color: white; }
.below-fold-hint { position: absolute; z-index: 1; left: clamp(18px, 6vw, 78px); bottom: 18px; color: rgba(255,255,255,.72); font-size: 12px; }
main { overflow: hidden; }
section { padding: 72px clamp(18px, 6vw, 78px); }
.trust-bar { background: #172f2a; color: white; padding: 0 clamp(18px, 6vw, 78px); }
.trust-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 24px 20px; border-right: 1px solid rgba(255,255,255,.13); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: #f2cf90; font-family: "Playfair Display", Georgia, serif; font-size: 22px; }
.trust-item span { display: block; margin-top: 4px; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.45; }
.container { max-width: 1120px; margin: 0 auto; }
.section-head { max-width: 760px; margin-bottom: 30px; }
.label { color: var(--gold); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 10px; }
h2 { font-family: "Playfair Display", Georgia, serif; font-size: clamp(30px, 4vw, 52px); line-height: 1.12; }
.lead { color: var(--muted); font-size: 17px; margin-top: 14px; max-width: 700px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 8px; padding: 22px; box-shadow: 0 8px 24px rgba(23, 23, 23, .06);
}
.card h3 { font-size: 18px; margin-bottom: 8px; color: var(--green); }
.card p, .card li { color: var(--muted); font-size: 14px; }
.card ul { list-style: none; display: grid; gap: 8px; margin-top: 12px; }
.surface-alt { background: #ebe4d8; }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 46px; align-items: start; }
.about-mark { position: sticky; top: 110px; padding: 30px; background: var(--green); color: white; border-radius: 8px; box-shadow: var(--shadow); }
.about-mark .initials { font-family: "Playfair Display", Georgia, serif; font-size: 54px; line-height: 1; color: #f2cf90; }
.about-mark strong { display: block; margin-top: 16px; font-size: 20px; }
.about-mark p { color: rgba(255,255,255,.72); margin-top: 8px; font-size: 14px; }
.promise-list { display: grid; gap: 16px; margin-top: 28px; }
.promise { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; }
.promise::before { content: "✓"; width: 30px; height: 30px; border-radius: 50%; background: #dfe9e4; color: var(--green); display: grid; place-items: center; font-weight: 900; }
.promise strong { display: block; margin-bottom: 4px; }
.promise p { color: var(--muted); font-size: 14px; }
.deliverables { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.deliverable { min-height: 170px; padding: 24px; background: white; border: 1px solid var(--line); border-radius: 8px; }
.deliverable .number { color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.deliverable h3 { margin: 12px 0 8px; font-size: 19px; }
.deliverable p { color: var(--muted); font-size: 14px; }
.faq { display: grid; gap: 10px; max-width: 900px; margin-top: 28px; }
.faq details { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 18px 20px; }
.faq summary { cursor: pointer; font-weight: 800; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--gold); font-size: 20px; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); margin-top: 12px; font-size: 14px; max-width: 760px; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: center; }
.photo {
  min-height: 420px; border-radius: 8px; background-image: var(--section-image);
  background-size: cover; background-position: center; box-shadow: var(--shadow);
}
.steps { counter-reset: step; display: grid; gap: 10px; }
.step {
  counter-increment: step; display: grid; grid-template-columns: 44px 1fr; gap: 14px;
  background: rgba(255,255,255,.65); border: 1px solid var(--line); padding: 16px; border-radius: 8px;
}
.step::before {
  content: counter(step); width: 34px; height: 34px; border-radius: 50%;
  background: var(--green); color: white; display: grid; place-items: center; font-weight: 800;
}
.note { border-left: 4px solid var(--wine); padding: 16px 18px; background: #fff; color: var(--muted); border-radius: 0 8px 8px 0; }
.cta {
  background: var(--green); color: white; border-radius: 8px;
  padding: 34px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  justify-content: space-between; gap: 22px; align-items: center;
}
.cta p { color: rgba(255,255,255,.78); margin-top: 8px; }
.cta .btn { background: white; color: var(--green); flex: none; }
.text-link { display: inline-flex; margin-top: 18px; color: #f2cf90; font-weight: 800; border-bottom: 1px solid rgba(242,207,144,.55); }
.brief-form {
  display: grid; gap: 16px; background: rgba(255,255,255,.98); color: var(--ink);
  border: 1px solid rgba(255,255,255,.7); border-radius: 14px; padding: 24px;
  box-shadow: 0 22px 54px rgba(0,0,0,.22);
}
.brief-head { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.brief-badge { display: inline-flex; padding: 5px 9px; background: #e7efe9; color: var(--green); border-radius: 99px; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.brief-head h3 { margin-top: 10px; font-family: "Playfair Display", Georgia, serif; font-size: 25px; line-height: 1.12; }
.brief-head p { margin-top: 6px; color: var(--muted); font-size: 13px; }
.choice-group { display: grid; gap: 9px; }
.choice-title { font-size: 12px; font-weight: 900; color: var(--ink); }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.choice { position: relative; display: block !important; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { display: flex; min-height: 45px; align-items: center; justify-content: center; padding: 9px 10px; border: 1px solid var(--line); border-radius: 8px; background: #faf8f4; color: var(--muted); text-align: center; font-size: 12px; font-weight: 800; cursor: pointer; transition: .18s ease; }
.choice input:checked + span { border-color: var(--green); background: #e6efeb; color: var(--green); box-shadow: inset 0 0 0 1px var(--green); }
.form-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.field-hint { font-weight: 400; color: #999188; }
.brief-note { display: flex; gap: 8px; align-items: flex-start; color: var(--muted); font-size: 11px; line-height: 1.45; }
.brief-note::before { content: "✓"; color: var(--green); font-weight: 900; }
.brief-progress { display: flex; align-items: center; gap: 9px; color: #a39c92; font-size: 10px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.brief-progress i { height: 1px; flex: 1; background: var(--line); }
.brief-progress span.active { color: var(--green); }
.brief-panel { display: none; gap: 16px; }
.brief-panel.active { display: grid; animation: brief-in .24s ease both; }
@keyframes brief-in { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
.brief-step-hint { text-align: center; color: var(--muted); font-size: 11px; }
.brief-back { width: max-content; padding: 0; border: 0; background: none; color: var(--muted); font: inherit; font-size: 12px; cursor: pointer; }
.brief-optional { border: 1px dashed var(--line); border-radius: 9px; padding: 12px; }
.brief-optional summary { cursor: pointer; color: var(--green); font-size: 12px; font-weight: 800; }
.brief-optional summary span { color: var(--muted); font-weight: 400; margin-left: 5px; }
.brief-optional[open] { display: grid; gap: 12px; }
.brief-optional[open] summary { margin-bottom: 2px; }
.needs-choice .choice-grid { border-radius: 9px; box-shadow: 0 0 0 2px rgba(127,47,59,.25); }
.brief-form label { display: grid; gap: 5px; font-size: 12px; font-weight: 800; color: var(--muted); }
.brief-form input, .brief-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 6px; padding: 11px 12px;
  font: inherit; color: var(--ink); background: white;
}
.brief-form textarea { resize: vertical; min-height: 86px; }
.brief-form .btn { width: 100%; background: var(--green); color: white; border: 0; cursor: pointer; }
.brief-form .btn { min-height: 52px; border-radius: 9px; font-size: 15px; box-shadow: 0 8px 20px rgba(31,91,79,.2); }
.brief-form .btn:disabled { opacity: .62; cursor: progress; }
.form-status { min-height: 20px; color: var(--muted); font-size: 13px; margin-top: 0; }
.form-status.ok { color: var(--green); }
.form-status.error { color: var(--wine); }
.footer { padding: 34px clamp(18px, 6vw, 78px); color: var(--muted); border-top: 1px solid var(--line); font-size: 13px; }
[dir="rtl"] body { direction: rtl; }
[dir="rtl"] .hero::after { background: linear-gradient(270deg, rgba(20,20,20,.82), rgba(20,20,20,.42) 58%, rgba(20,20,20,.12)); }
[dir="rtl"] .below-fold-hint { left: auto; right: clamp(18px, 6vw, 78px); }
[dir="rtl"] .step { grid-template-columns: 1fr 44px; }
[dir="rtl"] .step::before { grid-column: 2; grid-row: 1; }
[dir="rtl"] .step > div { grid-column: 1; grid-row: 1; }
[dir="rtl"] .note { border-left: 0; border-right: 4px solid var(--wine); border-radius: 8px 0 0 8px; }
@media (max-width: 860px) {
  .nav { position: absolute; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { min-height: 92vh; padding-top: 118px; }
  .hero::after { background: linear-gradient(180deg, rgba(20,20,20,.45), rgba(20,20,20,.82)); }
  .grid, .split { grid-template-columns: 1fr; }
  .about-grid, .deliverables { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-bottom: 1px solid rgba(255,255,255,.13); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:first-child { padding-left: 20px; }
  .about-mark { position: static; }
  .photo { min-height: 300px; }
  .cta { display: grid; grid-template-columns: 1fr; }
  .cta .btn { margin-top: 20px; width: 100%; }
  .brief-form .btn { margin-top: 4px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  [dir="rtl"] .hero::after { background: linear-gradient(180deg, rgba(20,20,20,.45), rgba(20,20,20,.82)); }
}
@media (max-width: 520px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; padding: 18px 0; }
  .trust-item:first-child { padding-left: 0; }
  section { padding-top: 58px; padding-bottom: 58px; }
  .cta { padding: 24px 18px; }
  .brief-form { padding: 18px; }
}
