:root {
  --bg: #f7f1e6;
  --bg-alt: #efe6d6;
  --card: #fffaf2;
  --fg: #1f1a14;
  --muted: #6b6053;
  --line: #e2d6c1;
  --accent: #b4832c;
  --accent-ink: #8a6320;
  --band: #1f1a14;
  --band-fg: #f3ead9;
  --tg: #229ed9;
  --radius: 14px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #15120e;
    --bg-alt: #1c1813;
    --card: #221d17;
    --fg: #f1e8d8;
    --muted: #b3a690;
    --line: #3a3127;
    --accent: #d1a545;
    --accent-ink: #e2bb66;
    --band: #0e0c09;
    --band-fg: #f1e8d8;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 400 17px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-ink); }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.2; margin: 0 0 .6em; text-wrap: balance; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 780px; }

/* header */
.top { position: sticky; top: 0; z-index: 10; background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.top-in { display: flex; align-items: center; justify-content: space-between; gap: 12px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--fg); }
.mono { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--band); color: var(--accent); border: 1.5px solid var(--accent); font: 600 15px/1 var(--serif); letter-spacing: .5px; flex: none; }
.word { font: 600 15px/1.1 var(--serif); letter-spacing: 2px; display: flex; flex-direction: column; }
.word small { font: 500 9px/1.4 var(--sans); letter-spacing: 3px; color: var(--accent-ink); }
.top-nav { display: flex; align-items: center; gap: 14px; }
.lang { font-size: 14px; font-weight: 500; text-decoration: none; color: var(--muted); }
.lang:hover { color: var(--fg); }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; background: var(--tg); color: #fff; text-decoration: none; font-weight: 600; border-radius: 999px; padding: 12px 22px; transition: transform .15s, box-shadow .15s; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgb(34 158 217 / .3); }
.btn:focus-visible, a:focus-visible, summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 17px; }
.cta { margin: 1.6em 0 0; }
.cta-note { color: var(--muted); font-size: 14px; margin: .7em 0 0; }

/* hero */
.hero { position: relative; overflow: hidden; padding: 72px 0 80px; border-bottom: 1px solid var(--line); }
.hero .wrap { position: relative; z-index: 1; }
.hero h1 { max-width: 760px; }
.eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: 12px; font-weight: 600; color: var(--accent-ink); margin-bottom: 1.2em; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 680px; }
.usp { font-family: var(--serif); font-size: 1.25rem; border-left: 3px solid var(--accent); padding: 4px 0 4px 16px; max-width: 640px; }
.drape { position: absolute; top: 0; right: 0; width: 38%; height: 100%; opacity: .5;
  background: repeating-linear-gradient(90deg, transparent 0 22px, color-mix(in srgb, var(--accent) 22%, transparent) 22px 24px, transparent 24px 46px, color-mix(in srgb, var(--accent) 10%, transparent) 46px 60px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 60%); mask-image: linear-gradient(90deg, transparent, #000 60%); }
.hero-sub { padding: 40px 0 56px; }
.crumbs { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.crumbs a { color: var(--muted); }
.hero-ico { color: var(--accent); margin-bottom: 8px; }

/* sections */
.sec { padding: 64px 0; }
.sec.alt { background: var(--bg-alt); }
.band { background: var(--band); color: var(--band-fg); }
.band p { color: color-mix(in srgb, var(--band-fg) 80%, transparent); }
.link-light { color: var(--accent); font-weight: 600; }
.final { text-align: center; }
.final .cta { display: flex; flex-direction: column; align-items: center; }

.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 18px; }
.card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; text-decoration: none; color: var(--fg); transition: border-color .15s, transform .15s; }
.card:hover { border-color: var(--accent); transform: translateY(-2px); }
.card .ico { color: var(--accent); margin-bottom: 14px; }
.card p { color: var(--muted); font-size: 15px; flex: 1; }
.more { color: var(--accent-ink); font-weight: 600; font-size: 14px; }

.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; counter-reset: s; }
.steps li { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.steps .n { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 600; margin-bottom: 12px; }
.steps p { color: var(--muted); font-size: 15px; margin: 0; }

.whys { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.why { border-top: 2px solid var(--accent); padding-top: 16px; }
.why p { color: var(--muted); font-size: 15px; }
.insta { margin-top: 28px; font-weight: 600; }

/* prose (service pages) */
.prose ul { padding-left: 1.2em; margin: 0 0 1.4em; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--accent); }
.prose h2 { margin-top: 1.4em; }
.prose h2:first-child { margin-top: 0; }

/* faq */
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 36px 18px 0; font-weight: 600; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 14px; font-size: 24px; color: var(--accent); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 12px; }

/* footer */
.foot { background: var(--band); color: var(--band-fg); padding: 56px 0 24px; }
.foot .brand, .foot .word { color: var(--band-fg); }
.foot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.foot h2 { font-size: 1rem; font-family: var(--sans); letter-spacing: 2px; text-transform: uppercase; color: var(--accent); }
.foot p { color: color-mix(in srgb, var(--band-fg) 70%, transparent); font-size: 15px; margin-top: 14px; }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: 8px; }
.foot a { color: var(--band-fg); text-decoration: none; font-size: 15px; }
.foot a:hover { color: var(--accent); }
.copy { margin-top: 40px; padding-top: 20px; border-top: 1px solid color-mix(in srgb, var(--band-fg) 15%, transparent); font-size: 13px; color: color-mix(in srgb, var(--band-fg) 55%, transparent); }

/* mobile sticky CTA */
.sticky-cta { display: none; }
@media (max-width: 720px) {
  body { font-size: 16px; padding-bottom: 76px; }
  .wrap { padding: 0 16px; }
  .hero { padding: 48px 0 56px; }
  .drape { width: 55%; opacity: .3; }
  .sec { padding: 48px 0; }
  .top-nav .btn-sm { display: none; }
  .sticky-cta { display: flex; justify-content: center; position: fixed; left: 16px; right: 16px; bottom: 14px; z-index: 20; box-shadow: 0 8px 24px rgb(0 0 0 / .2); }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }

/* secondary contact links */
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.final .cta-row { justify-content: center; }
.btn-ghost { background: transparent; color: var(--fg); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent); box-shadow: none; }
.band .btn-ghost { color: var(--band-fg); }
.icon-link { display: inline-flex; align-items: center; gap: 6px; color: var(--fg); text-decoration: none; font-size: 14px; font-weight: 500; }
.icon-link:hover { color: var(--accent-ink); }
@media (max-width: 720px) {
  .phone-link span { display: none; }
  .cta-row .btn { width: 100%; justify-content: center; }
}
