/* Sites by Vital, version 2.1
   Accent: Fire Engine Red #CE2029. Headings: Poppins. Reading text: Inter.
   No entrance animation anywhere. The only motion is the hero lantern loop
   and ordinary hover feedback. */

:root {
  --paper: #ffffff;
  --field: #f1f2f4;
  --field-warm: #faf9f9;
  --ink: #1a1a1d;
  --ink-soft: #565961;
  --line: #d7d9de;
  --line-soft: #e8e9ec;
  --brand: #ce2029;
  --brand-deep: #9d151d;
  --brand-tint: #fdecec;
  --brand-soft: #f7cdcf;

  --wrap: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
  --band: clamp(60px, 7.5vw, 108px);
  --radius: 14px;

  --fs-display: clamp(2.4rem, 5.6vw, 4.2rem);
  --fs-h1: clamp(2rem, 4.2vw, 3.1rem);
  --fs-h2: clamp(1.55rem, 2.9vw, 2.25rem);
  --fs-h3: 1.22rem;
  --fs-body: 1.0625rem;
  --fs-sm: 0.9375rem;
  --fs-xs: 0.8125rem;

  --display: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --read: "Inter", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

/* Author display rules must not reveal inactive wizard controls. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--read);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
svg { max-width: 100%; }

a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand-deep); }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3, h4, .display, nav, button, .btn, label, input, select, textarea, .fig, th, summary {
  font-family: var(--display);
}

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
  line-height: 1.14;
  font-weight: 600;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.32; letter-spacing: -0.01em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 34em;
}

.measure { max-width: 36em; }

.skip { position: absolute; left: -9999px; top: 0; background: var(--brand); color: #fff; padding: 12px 18px; z-index: 100; }
.skip:focus { left: 12px; top: 12px; }

/* ---------- sticky topbar ---------- */

.topbar { position: sticky; top: 0; z-index: 50; }

.promo {
  background: var(--brand);
  color: #fff;
  font-family: var(--display);
  font-size: var(--fs-sm);
  font-weight: 500;
}
.promo[hidden] { display: none; }
.promo .wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  gap: 12px; padding: 11px 52px; text-align: center;
}
.promo a { color: #fff; font-weight: 600; text-underline-offset: 4px; }
.promo a:hover { color: #fff; }

.promo-close {
  position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%);
  display: grid; place-items: center;
  width: 28px; height: 28px; padding: 0;
  background: rgba(255, 255, 255, 0.16); color: #fff;
  border: none; border-radius: 999px; cursor: pointer;
  transition: background 150ms ease;
}
.promo-close:hover { background: rgba(255, 255, 255, 0.34); }
.promo-close svg { display: block; }
@media (max-width: 560px) { .promo .wrap { padding: 11px 46px; font-size: var(--fs-xs); } }

/* ---------- masthead ---------- */

.masthead {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-soft);
}

.masthead-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 70px; }

.mark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 1.05rem;
  letter-spacing: -0.025em; color: var(--ink); text-decoration: none;
}
.mark:hover { color: var(--brand); }
.mark svg { width: 26px; height: 26px; flex: none; display: block; }

.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav a { font-size: var(--fs-sm); font-weight: 500; color: var(--ink-soft); text-decoration: none; }
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); box-shadow: inset 0 -2px 0 var(--brand); }
.nav a.btn, .nav a.btn:hover { color: #fff; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 8px; padding: 8px 12px; font-size: var(--fs-sm);
  font-weight: 600; color: var(--ink); cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 18px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; }
  .nav a.btn { margin-top: 14px; border-bottom: none; text-align: center; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 24px; border-radius: 999px; border: 1px solid var(--brand);
  background: var(--brand); color: #fff; font-size: var(--fs-sm);
  font-weight: 600; text-decoration: none; cursor: pointer;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}
.btn:hover { background: var(--brand-deep); border-color: var(--brand-deep); color: #fff; }

.btn-white { background: #fff; border-color: #fff; color: var(--brand-deep); }
.btn-white:hover { background: var(--brand-deep); border-color: #fff; color: #fff; }

.btn-ghost { background: transparent; color: var(--brand); border-color: var(--line); }
.btn-ghost:hover { background: var(--brand-tint); color: var(--brand-deep); border-color: var(--brand); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ---------- icons ----------
   Fixed pixel box, and the svg itself is sized explicitly so it can never
   inherit a parent's height and blow up. */

.ico {
  width: 42px; height: 42px; border-radius: 11px; flex: none;
  display: inline-grid; place-items: center;
  background: var(--brand-tint); color: var(--brand);
}
.ico svg { width: 21px; height: 21px; display: block; }

/* ---------- hero ---------- */

.hero { padding-block: clamp(46px, 6.5vw, 92px) clamp(40px, 5.5vw, 76px); }

.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(28px, 5vw, 68px); align-items: center;
}

.hero h1 { font-size: var(--fs-display); font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 20px; }

.hero-note {
  margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line-soft);
  font-family: var(--display); font-size: var(--fs-sm); color: var(--ink-soft);
}

.parul { width: 100%; max-width: 400px; margin-inline: auto; display: block; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .parul { max-width: 250px; order: -1; }
}

/* ---------- layout helpers ---------- */

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); }

.band { padding-block: var(--band); }
.band-tight { padding-block: clamp(42px, 5.5vw, 72px); }
.band-field { background: var(--field-warm); }
.band-rule { border-top: 1px solid var(--line-soft); }

.head { max-width: 40rem; margin-bottom: clamp(32px, 4.5vw, 52px); }
.head p { color: var(--ink-soft); margin-bottom: 0; }

.split { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(28px, 5vw, 68px); }
.split-even { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.split-media { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 4.5vw, 60px); align-items: center; }
@media (max-width: 880px) { .split-media { grid-template-columns: 1fr; } }

.split-image {
  display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4.5vw, 60px); align-items: start;
}
@media (max-width: 880px) { .split, .split-even, .split-media { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 4.5vw, 60px); align-items: center; }
@media (max-width: 880px) { .split-media { grid-template-columns: 1fr; } }

.split-image { grid-template-columns: 1fr; } }

/* ---------- image placeholder ---------- */

.media { margin: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.media img { width: 100%; }
.media figcaption {
  padding: 12px 18px; font-family: var(--display); font-size: var(--fs-xs);
  color: var(--ink-soft); border-top: 1px solid var(--line-soft); background: var(--field-warm);
}

/* ---------- lists ---------- */

.stack { list-style: none; margin: 0; padding: 0; }
.stack li { padding: 22px 0; border-top: 1px solid var(--line-soft); }
.stack li:first-child { border-top: none; padding-top: 0; }
.stack h3 { margin-bottom: 6px; }
.stack p { color: var(--ink-soft); margin: 0; }

.stack-ico li { display: flex; gap: 18px; align-items: flex-start; }

.steps { list-style: none; counter-reset: s; margin: 0; padding: 0; }
.steps li { counter-increment: s; position: relative; padding: 0 0 28px 54px; border-left: 1px solid var(--line); margin-left: 14px; }
.steps li:last-child { padding-bottom: 0; border-left-color: transparent; }
.steps li::before {
  content: counter(s); position: absolute; left: -15px; top: -2px;
  width: 30px; height: 30px; border-radius: 999px; background: var(--brand); color: #fff;
  font-family: var(--display); font-size: 0.85rem; font-weight: 600;
  display: grid; place-items: center;
}
.steps h3 { margin-bottom: 5px; }
.steps p { color: var(--ink-soft); margin: 0; }

.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li { position: relative; padding: 9px 0 9px 30px; color: var(--ink-soft); border-bottom: 1px solid var(--line-soft); }
.ticks li::before {
  content: ""; position: absolute; left: 4px; top: 16px; width: 11px; height: 6px;
  border-left: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}
.ticks li:last-child { border-bottom: none; }

.tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 0; padding: 0; list-style: none; }
.tags li {
  font-family: var(--display); font-size: var(--fs-sm); font-weight: 500;
  padding: 8px 15px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--paper); color: var(--ink-soft);
}

/* ---------- horizontal timeline ---------- */

.timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(18px, 2.6vw, 30px); position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 18px; right: 18px; top: 18px;
  height: 1px; background: var(--line);
}
.tl { position: relative; }
.tl-dot {
  position: relative; z-index: 1;
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--brand); color: #fff;
  font-family: var(--display); font-weight: 600; font-size: 0.88rem;
  display: grid; place-items: center;
  box-shadow: 0 0 0 6px var(--paper);
}
.tl-when {
  display: block; margin: 20px 0 6px;
  font-family: var(--display); font-size: 1.02rem; font-weight: 600; color: var(--ink);
}
.tl p { margin: 0; color: var(--ink-soft); font-size: var(--fs-sm); line-height: 1.55; }
.band-field .tl-dot { box-shadow: 0 0 0 6px var(--field-warm); }

@media (max-width: 900px) {
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 34px; }
  .timeline::before { display: none; }
}
@media (max-width: 560px) { .timeline { grid-template-columns: 1fr; row-gap: 28px; } }

/* ---------- note strip ---------- */

.note {
  margin-top: clamp(30px, 4vw, 44px);
  background: var(--paper); border: 1px solid var(--line);
  border-left: 4px solid var(--brand); border-radius: 12px;
  padding: 22px 26px; max-width: 62em;
}
.note strong {
  display: block; font-family: var(--display); font-weight: 600;
  font-size: 1rem; color: var(--ink); margin-bottom: 5px;
}
.note p { margin: 0; color: var(--ink-soft); font-size: var(--fs-sm); }

/* ---------- hover boxes ---------- */

.boxes { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 2vw, 20px); }
.boxes-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 940px) { .boxes, .boxes-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .boxes, .boxes-3 { grid-template-columns: 1fr; } }

.box {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); padding: 26px 22px 28px; height: 100%;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.box:hover, .box:focus-visible {
  border-color: var(--brand); background: var(--brand-tint);
  box-shadow: 0 10px 26px rgba(206, 32, 41, 0.1); color: inherit;
}
.box-num {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px; border-radius: 999px;
  background: var(--brand); color: #fff;
  font-family: var(--display); font-weight: 600; font-size: 0.85rem;
}
.box-mark { display: block; width: 32px; height: 4px; border-radius: 2px; background: var(--brand); }
.box .ico { margin-bottom: 18px; }
.box .fig {
  display: block; font-family: var(--display); font-weight: 600;
  font-size: clamp(1.4rem, 2.3vw, 1.9rem); letter-spacing: -0.03em;
  color: var(--brand); line-height: 1.12; margin-bottom: 8px;
}
.box h3 { margin: 16px 0 6px; }
.box-static { cursor: default; }
.box p { color: var(--ink-soft); font-size: var(--fs-sm); margin: 0; }

/* ---------- service blocks ---------- */

.svc { border-top: 1px solid var(--line); padding-top: 26px; margin-top: 34px; }
.svc:first-of-type { margin-top: 0; }
.svc-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(20px, 4vw, 54px); }
.svc-grid h2 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); margin-bottom: 10px; }
.svc-price { font-family: var(--display); font-size: var(--fs-sm); font-weight: 600; color: var(--brand); }
.svc ul { margin: 14px 0 0; padding-left: 20px; color: var(--ink-soft); }
.svc li { margin-bottom: 6px; }
@media (max-width: 760px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- pricing ---------- */

.tiers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 26px); align-items: start; }
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; max-width: 470px; } }

.tier {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px 30px; background: var(--paper);
  display: flex; flex-direction: column; height: 100%;
}
.tier-featured { border-color: var(--brand); box-shadow: 8px 8px 0 var(--brand-soft); }
.tier-name { font-size: var(--fs-h3); margin-bottom: 4px; }
.tier-for { font-size: var(--fs-sm); color: var(--ink-soft); margin-bottom: 18px; }
.tier-price { font-family: var(--display); font-size: clamp(1.8rem, 2.9vw, 2.25rem); font-weight: 600; letter-spacing: -0.035em; color: var(--ink); line-height: 1; display: block; }
.was { font-family: var(--display); font-size: var(--fs-sm); color: var(--ink-soft); text-decoration: line-through; display: block; margin-bottom: 4px; }
.tier-terms { font-size: var(--fs-xs); color: var(--ink-soft); margin: 10px 0 20px; font-family: var(--display); }
.tier ul { list-style: none; margin: 0 0 24px; padding: 0; font-size: var(--fs-sm); border-top: 1px solid var(--line-soft); }
.tier li { padding: 10px 0 10px 22px; border-bottom: 1px solid var(--line-soft); position: relative; color: var(--ink-soft); line-height: 1.45; }
.tier li::before { content: ""; position: absolute; left: 2px; top: 18px; width: 8px; height: 8px; border-radius: 999px; background: var(--brand-soft); }
.tier .btn { margin-top: auto; }

.tag-featured {
  display: inline-block; align-self: flex-start;
  font-family: var(--display); font-size: var(--fs-xs); font-weight: 600;
  color: #fff; background: var(--brand); padding: 5px 13px; border-radius: 999px; margin-bottom: 12px;
  width: auto; max-width: 100%;
}

table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); text-align: left; margin: 0; }
th, td { padding: 14px 16px 14px 0; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
th { font-weight: 600; color: var(--ink); border-bottom-color: var(--line); }
td:last-child, th:last-child { text-align: right; padding-right: 0; white-space: nowrap; }
td { color: var(--ink-soft); }
.table-scroll { overflow-x: auto; }

/* ---------- offer ---------- */

.offer { border: 2px solid var(--brand); border-radius: var(--radius); background: var(--brand-tint); padding: clamp(24px, 3.5vw, 40px); }
.offer h2 { margin-bottom: 10px; }
.offer p { color: #74282e; }
.offer .ticks { margin-top: 18px; }
.offer .ticks li { color: #74282e; border-bottom-color: rgba(157, 21, 29, 0.16); }

.callout { background: var(--field); border-radius: var(--radius); padding: clamp(24px, 3.5vw, 36px); border: 1px solid var(--line-soft); }
.callout h3 { margin-bottom: 8px; }
.callout p { color: var(--ink-soft); margin-bottom: 0; }

.cta { background: var(--brand); color: #fff; }
.cta h2 { color: #fff; max-width: 26em; }
.cta p { color: rgba(255, 255, 255, 0.88); max-width: 34em; margin-bottom: 0; }
.cta .btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.cta .btn-ghost:hover { background: rgba(255, 255, 255, 0.14); color: #fff; border-color: #fff; }

/* ---------- faq ---------- */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  cursor: pointer; padding: 18px 40px 18px 0; position: relative;
  font-size: 1.04rem; font-weight: 500; color: var(--ink); list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 25px;
  width: 9px; height: 9px; border-right: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
  transform: rotate(45deg);
}
.faq details[open] summary::after { transform: rotate(225deg); top: 28px; }
.faq summary:hover { color: var(--brand); }
.faq .answer { padding: 0 clamp(8px, 4vw, 60px) 22px 0; color: var(--ink-soft); }

/* ---------- forms ---------- */

.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }

label { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); }
.hint { display: block; margin-top: 4px; font-size: var(--fs-xs); color: var(--ink-soft); font-weight: 400; line-height: 1.5; }

input, select, textarea {
  width: 100%; padding: 13px 15px; font-size: var(--fs-body); color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  font-family: var(--read); font-weight: 400;
}
textarea { min-height: 148px; resize: vertical; line-height: 1.55; }
input:focus, select:focus, textarea:focus { border-color: var(--brand); outline: none; box-shadow: 0 0 0 3px var(--brand-tint); }
select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%), linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 14px) center;
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
}

.form-status { display: none; padding: 14px 16px; border-radius: 10px; font-size: var(--fs-sm); }
.form-status.is-shown { display: block; }
.form-status.is-ok { background: #eaf6ee; color: #1d5a31; border: 1px solid #3f8b57; }
.form-status.is-bad { background: var(--brand-tint); color: var(--brand-deep); border: 1px solid var(--brand); }

.hp { position: absolute; left: -9999px; }

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { padding: 16px 0; border-top: 1px solid var(--line-soft); }
.contact-list li:first-child { border-top: none; padding-top: 0; }
.contact-list li > span { display: block; font-family: var(--display); font-size: var(--fs-xs); color: var(--ink-soft); margin-bottom: 3px; }
.contact-list a, .contact-list strong { font-family: var(--display); font-weight: 600; font-size: 1.02rem; }

/* ---------- footer ---------- */

.footer { background: var(--ink); color: rgba(255, 255, 255, 0.72); padding-block: clamp(42px, 5vw, 64px) 28px; font-size: var(--fs-sm); }
.footer a { color: rgba(255, 255, 255, 0.82); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer h4 { color: #fff; font-size: var(--fs-sm); font-weight: 600; margin-bottom: 14px; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.9fr)); gap: clamp(24px, 3vw, 44px); }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 9px; }
.footer .mark { color: #fff; }
.footer .mark:hover { color: var(--brand); }
.footer-bottom {
  margin-top: clamp(32px, 4vw, 48px); padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: space-between; font-size: var(--fs-xs);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-grid > div:first-child { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }


/* ---------- page banner ---------- */

.banner {
  position: relative;
  background-color: var(--brand-deep);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}
.banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20, 8, 9, 0.78) 0%, rgba(20, 8, 9, 0.5) 48%, rgba(20, 8, 9, 0.18) 100%);
}
.banner > .wrap { position: relative; z-index: 1; padding-block: clamp(56px, 8vw, 108px); }
.banner h1 { color: #fff; max-width: 18em; }
.banner p { color: rgba(255, 255, 255, 0.9); max-width: 36em; }
.banner .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.banner .btn-ghost:hover { background: rgba(255, 255, 255, 0.14); color: #fff; border-color: #fff; }
.banner-note {
  margin-top: 26px; padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--display); font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.82); max-width: 40em;
}

/* ---------- alternating image rows ---------- */

.row {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(26px, 4.5vw, 58px); align-items: start;
  padding-block: clamp(36px, 5vw, 60px);
  border-top: 1px solid var(--line-soft);
}
.row:first-of-type { border-top: none; padding-top: clamp(8px, 1vw, 16px); }
.row-flip .row-media { order: 2; }
.row h2 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); margin-bottom: 8px; }
.row h2 a { color: var(--ink); text-decoration: none; }
.row h2 a:hover { color: var(--brand); text-decoration: underline; text-underline-offset: 4px; }
.row-price { font-family: var(--display); font-size: var(--fs-sm); font-weight: 600; color: var(--brand); display: block; margin-bottom: 14px; }
.row-lede { color: var(--ink-soft); margin-bottom: 16px; }
.row .btn { margin-top: 22px; }
@media (max-width: 880px) {
  .row { grid-template-columns: 1fr; }
  .row-flip .row-media { order: 0; }
}

/* ---------- interactive chips ---------- */

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.chips li { position: relative; }

.chip-btn {
  font-family: var(--display); font-size: var(--fs-sm); font-weight: 500;
  padding: 9px 17px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--paper); color: var(--ink-soft); cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}
.chip-btn:hover, .chip-btn:focus-visible { border-color: var(--brand); color: var(--brand-deep); background: var(--brand-tint); }
.chip-btn:active { background: var(--brand-soft); border-color: var(--brand); }
.chip-btn[aria-pressed="true"] { background: var(--brand); border-color: var(--brand); color: #fff; }

.chips li::after {
  content: attr(data-tip);
  position: absolute; left: 50%; bottom: calc(100% + 12px); transform: translateX(-50%);
  width: max-content; max-width: 260px;
  background: var(--ink); color: #fff;
  font-family: var(--read); font-size: var(--fs-xs); font-weight: 400; line-height: 1.5;
  text-align: left; padding: 10px 13px; border-radius: 9px;
  opacity: 0; visibility: hidden; pointer-events: none; z-index: 30;
  transition: opacity 140ms ease;
}
.chips li::before {
  content: ""; position: absolute; left: 50%; bottom: calc(100% + 5px); transform: translateX(-50%);
  border: 7px solid transparent; border-top-color: var(--ink);
  opacity: 0; visibility: hidden; z-index: 30;
}
.chips li:hover::after, .chips li:hover::before,
.chips li:focus-within::after, .chips li:focus-within::before,
.chips li.is-open::after, .chips li.is-open::before { opacity: 1; visibility: visible; }

/* ---------- call to action box ---------- */

.mini-cta {
  margin-top: 28px; border: 1px solid var(--brand-soft); background: var(--brand-tint);
  border-radius: var(--radius); padding: 24px 22px 26px;
}
.mini-cta h3 { margin-bottom: 6px; }
.mini-cta p { color: #74282e; font-size: var(--fs-sm); margin-bottom: 18px; }

/* ---------- bordered table with accent headings ---------- */

.table-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.table-card table { font-size: var(--fs-sm); }
.table-card table { table-layout: auto; }
.table-card thead th {
  background: var(--brand); color: #fff; font-weight: 600;
  padding: 15px 20px; border-bottom: none;
}
.table-card thead th:last-child { text-align: right; }
.table-card td { padding: 17px 20px; border-bottom: 1px solid var(--line-soft); }
.table-card tbody tr:last-child td { border-bottom: none; }
.table-card tbody tr:nth-child(even) { background: var(--field-warm); }
.table-card td:first-child { font-family: var(--display); font-weight: 600; color: var(--ink); white-space: normal; }
.table-card .cell-plan { white-space: nowrap; }
.table-card .table-scroll { overflow-x: auto; }
.table-card td:last-child { font-family: var(--display); font-weight: 600; color: var(--brand-deep); text-align: right; white-space: nowrap; }
.table-card .cell-plan { color: var(--brand-deep); }

/* ---------- solid red offer ---------- */

.offer-red {
  background: var(--brand); color: #fff; border-radius: var(--radius);
  overflow: hidden;
}
.offer-red h2 { color: #fff; }
.offer-red p { color: rgba(255, 255, 255, 0.9); }
.offer-red .ticks li { color: rgba(255, 255, 255, 0.94); border-bottom-color: rgba(255, 255, 255, 0.24); }
.offer-red .ticks li::before { border-color: #fff; }
.offer-grid {
  display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch; gap: 0;
}
.offer-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }
.offer-body { padding: clamp(26px, 4vw, 48px); }
.offer-deadline {
  display: inline-block; font-family: var(--display); font-size: var(--fs-xs); font-weight: 600;
  background: rgba(255, 255, 255, 0.2); color: #fff; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
@media (max-width: 880px) { .offer-grid { grid-template-columns: 1fr; } .offer-grid img { max-height: 240px; } }

/* ---------- service area card ---------- */

.area {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--paper); display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}
.area img { width: 100%; height: 100%; object-fit: cover; }
.area-body { padding: clamp(26px, 3.5vw, 42px); }
.area-body h2 { margin-bottom: 12px; }
.area-body p { color: var(--ink-soft); }
.area-towns { margin-top: 22px; }
@media (max-width: 880px) { .area { grid-template-columns: 1fr; } .area img { max-height: 260px; } }

/* ---------- panels ---------- */

.panel {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); padding: clamp(24px, 3vw, 34px);
}
.panel-tint { background: var(--field-warm); }
.panel h2, .panel h3 { margin-bottom: 10px; }


/* ---------- contact: sticky rail ---------- */

.rail-grid {
  display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 4.5vw, 56px); align-items: start;
}
.rail { position: sticky; top: 124px; }
.rail h2 { font-size: 1.5rem; }
.rail-list { list-style: none; margin: 24px 0 0; padding: 0; }
.rail-list li { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-top: 1px solid var(--line-soft); }
.rail-list li:first-child { border-top: none; padding-top: 0; }
.rail-list .k { display: block; font-family: var(--display); font-size: var(--fs-xs); color: var(--ink-soft); margin-bottom: 2px; }
.rail-list a, .rail-list strong { font-family: var(--display); font-weight: 600; font-size: 1rem; }
@media (max-width: 900px) { .rail-grid { grid-template-columns: 1fr; } .rail { position: static; } }

/* ---------- multistep form ---------- */

.wizard {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); overflow: hidden;
  box-shadow: 0 18px 44px rgba(20, 8, 9, 0.09);
}
.wizard-head {
  padding: clamp(22px, 2.8vw, 30px) clamp(22px, 3vw, 32px);
  background: var(--field-warm); border-bottom: 1px solid var(--line-soft);
}
.wizard-head h2 { font-size: 1.4rem; margin-bottom: 5px; }
.wizard-head p { margin: 0; color: var(--ink-soft); font-size: var(--fs-sm); }
.wizard-body { padding: clamp(24px, 3vw, 34px); }

.steps-bar { list-style: none; display: flex; align-items: center; margin: 24px 0 0; padding: 0; }
.steps-bar li { display: flex; align-items: center; gap: 10px; min-width: 0; }
.steps-bar li + li { flex: 1; }
.steps-bar li + li::before {
  content: ""; height: 1px; background: var(--line); flex: 1; min-width: 12px; margin-right: 10px;
}
.step-dot {
  flex: none; width: 30px; height: 30px; border-radius: 999px;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 600; font-size: 0.82rem;
  background: var(--paper); color: var(--ink-soft); border: 1px solid var(--line);
}
.step-name { font-family: var(--display); font-size: var(--fs-xs); font-weight: 600; color: var(--ink-soft); white-space: nowrap; }
.steps-bar li.is-done .step-dot { background: var(--brand-tint); color: var(--brand-deep); border-color: var(--brand-soft); }
.steps-bar li[aria-current="step"] .step-dot { background: var(--brand); color: #fff; border-color: var(--brand); }
.steps-bar li[aria-current="step"] .step-name { color: var(--ink); }
@media (max-width: 620px) {
  .step-name { display: none; }
  .steps-bar li + li::before { margin-right: 8px; }
}

.step { border: none; margin: 0; padding: 0; min-width: 0; }
.step[hidden] { display: none; }
.step-title { margin: 0 0 4px; font-size: 1.12rem; }
.step-sub { margin: 0 0 22px; color: var(--ink-soft); font-size: var(--fs-sm); }

.wizard-nav {
  display: flex; gap: 12px; align-items: center; justify-content: space-between;
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line-soft);
}
.wizard-nav .spacer { flex: 1; }
.stack-fields { display: grid; gap: 18px; }

input[aria-invalid="true"], textarea[aria-invalid="true"], select[aria-invalid="true"] {
  border-color: var(--brand); background: var(--brand-tint);
}

/* ---------- package picker ---------- */

.picker { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.pick {
  font-family: var(--display); font-size: var(--fs-sm); font-weight: 500;
  padding: 10px 17px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--paper); color: var(--ink-soft); cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}
.pick:hover { border-color: var(--brand); color: var(--brand-deep); background: var(--brand-tint); }
.pick[aria-pressed="true"] { background: var(--brand); border-color: var(--brand); color: #fff; }


/* ---------- hero caption ---------- */

.parul-figure { margin: 0; }
.parul-caption {
  display: block; margin-top: 14px; text-align: center;
  font-family: var(--display); font-size: var(--fs-xs); color: var(--ink-soft); line-height: 1.5;
}
.parul-caption strong { color: var(--ink); font-weight: 600; }

/* ---------- article, used by blog posts and legal pages ---------- */

.article { max-width: 44rem; margin-inline: auto; }
.article h2 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); margin-top: 2em; }
.article h2:first-of-type { margin-top: 0.6em; }
.article h3 { margin-top: 1.6em; }
.article p { margin-bottom: 1.15em; }
.article ul, .article ol { margin: 0 0 1.3em; padding-left: 22px; color: var(--ink-soft); }
.article li { margin-bottom: 8px; }
.article strong { color: var(--ink); }
.article blockquote {
  margin: 1.6em 0; padding: 4px 0 4px 22px;
  border-left: 3px solid var(--brand); color: var(--ink); font-size: 1.08rem;
}
.article .lead { font-size: 1.14rem; line-height: 1.62; color: var(--ink-soft); margin-bottom: 1.5em; }

.meta {
  display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center;
  font-family: var(--display); font-size: var(--fs-sm); color: var(--ink-soft);
  margin-bottom: 26px;
}
.meta span { display: inline-flex; align-items: center; gap: 8px; }
.meta span + span::before { content: ""; width: 4px; height: 4px; border-radius: 999px; background: var(--line); }

.updated {
  font-family: var(--display); font-size: var(--fs-xs); color: var(--ink-soft);
  padding-bottom: 18px; margin-bottom: 26px; border-bottom: 1px solid var(--line-soft);
}

/* ---------- blog index ---------- */

.posts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 26px); }
@media (max-width: 940px) { .posts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .posts { grid-template-columns: 1fr; } }

.post-card {
  display: flex; flex-direction: column; height: 100%;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--paper); text-decoration: none; color: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.post-card:hover { border-color: var(--brand); box-shadow: 0 12px 30px rgba(26, 26, 29, 0.08); color: inherit; }
.post-card img { width: 100%; }
.post-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.post-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.post-card p { color: var(--ink-soft); font-size: var(--fs-sm); margin: 0 0 16px; }
.post-card .post-meta { margin-top: auto; font-family: var(--display); font-size: var(--fs-xs); color: var(--ink-soft); }

.post-hero { border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; margin-bottom: 34px; }
.article .meta, .article h1 { text-align: left; }
.post-hero img { width: 100%; }

.next-posts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 700px) { .next-posts { grid-template-columns: 1fr; } }
.next-post {
  display: block; padding: 20px 22px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); text-decoration: none; color: inherit;
  transition: border-color 160ms ease, background 160ms ease;
}
.next-post:hover { border-color: var(--brand); background: var(--brand-tint); color: inherit; }
.next-post span { display: block; font-family: var(--display); font-size: var(--fs-xs); color: var(--ink-soft); margin-bottom: 6px; }
.next-post strong { font-family: var(--display); font-size: 1.02rem; font-weight: 600; }

/* ---------- portfolio, private ---------- */

.private-bar {
  background: var(--ink); color: #fff;
  font-family: var(--display); font-size: var(--fs-sm); font-weight: 500;
}
.private-bar .wrap { display: flex; align-items: center; justify-content: center; gap: 10px; padding-block: 11px; text-align: center; }
.private-bar strong { color: #fff; }
.private-bar span { color: rgba(255, 255, 255, 0.72); }

.demo-note {
  border: 1px solid var(--brand-soft); background: var(--brand-tint);
  border-radius: var(--radius); padding: 20px 22px; margin-bottom: 30px;
}
.demo-note strong { display: block; font-family: var(--display); color: var(--brand-deep); margin-bottom: 5px; }
.demo-note p { margin: 0; color: #74282e; font-size: var(--fs-sm); }

.shots { display: grid; gap: clamp(18px, 2.4vw, 26px); }
.shot-frame { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.shot-frame img { width: 100%; }
.shot-frame figcaption {
  padding: 13px 20px; font-family: var(--display); font-size: var(--fs-xs); color: var(--ink-soft);
  border-top: 1px solid var(--line-soft); background: var(--field-warm);
}

.spec { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (max-width: 700px) { .spec { grid-template-columns: 1fr; } }
.spec div { border: 1px solid var(--line-soft); border-radius: 12px; padding: 16px 18px; background: var(--paper); }
.spec span { display: block; font-family: var(--display); font-size: var(--fs-xs); color: var(--ink-soft); margin-bottom: 4px; }
.spec strong { font-family: var(--display); font-size: 1rem; font-weight: 600; }

/* ---------- service detail pages ---------- */

.svc-hero-price {
  display: inline-flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px; padding: 9px 20px; margin-top: 22px;
}
.svc-hero-price s { font-family: var(--display); font-size: var(--fs-sm); color: rgba(255, 255, 255, 0.66); }
.svc-hero-price b { font-family: var(--display); font-size: 1.3rem; color: #fff; }
.svc-hero-price em { font-family: var(--display); font-size: var(--fs-xs); font-style: normal; color: rgba(255, 255, 255, 0.82); }

.examples-empty {
  border: 1px dashed var(--line); border-radius: var(--radius);
  padding: clamp(24px, 3.5vw, 36px); background: var(--field-warm); text-align: center;
}
.examples-empty h3 { margin-bottom: 8px; }
.examples-empty p { color: var(--ink-soft); max-width: 40em; margin-inline: auto; }

/* ---------- footer legal row ---------- */

.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-legal a { color: rgba(255, 255, 255, 0.62); }


/* ---------- utilities lost in an earlier revert ---------- */

.head-center { margin-inline: auto; text-align: center; }
.head-center p { margin-inline: auto; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 2.2vw, 24px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2.2vw, 24px); }
@media (max-width: 940px) { .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 720px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 30px);
  display: flex; flex-direction: column;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.card:hover { border-color: var(--brand-soft); box-shadow: 0 10px 30px rgba(26, 26, 29, 0.07); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-soft); }
.card .btn { align-self: flex-start; margin-top: auto; }

/* ---------- service price, no strike through ---------- */

.svc-hero-price {
  display: inline-flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px; padding: 10px 22px; margin-top: 24px;
}
.svc-hero-price .from { font-family: var(--display); font-size: var(--fs-sm); font-weight: 500; color: rgba(255, 255, 255, 0.82); }
.svc-hero-price b { font-family: var(--display); font-size: 1.45rem; font-weight: 600; letter-spacing: -0.02em; color: #fff; }
.svc-hero-price em { font-family: var(--display); font-size: var(--fs-xs); font-style: normal; color: rgba(255, 255, 255, 0.78); }

.price-note {
  margin-top: 14px; font-family: var(--display); font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.78); max-width: 40em;
}

/* ---------- the verse in the footer ----------
   Fixed width so the footer never reflows, slow enough to read, and muted
   enough to sit behind everything else. */

.verse {
  display: inline-flex; align-items: center; gap: 12px;
  max-width: 100%; min-width: 0;
}
.verse-label {
  flex: none; font-family: var(--display); font-size: var(--fs-xs); font-weight: 600;
  color: rgba(255, 255, 255, 0.5); white-space: nowrap;
}
.verse-marquee {
  position: relative; overflow: hidden;
  width: 300px; max-width: 46vw; height: 1.6em; flex: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.verse-track {
  position: absolute; top: 0; left: 0;
  display: flex; white-space: nowrap; will-change: transform;
  animation: marquee 150s linear infinite;
}
.verse-track span {
  padding-right: 3.5em;
  font-size: var(--fs-xs); line-height: 1.6;
  color: rgba(255, 255, 255, 0.38);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 620px) { .verse-marquee { width: 190px; max-width: 58vw; } }

/* ---------- reveal on scroll ----------
   Uses animation rather than transition, so it cannot be wiped out by a
   component that declares its own transition shorthand. */

[data-reveal] { opacity: 0; }
[data-reveal].is-in { animation: revealUp 640ms cubic-bezier(0.22, 0.68, 0.24, 1) var(--d, 0ms) both; }
[data-reveal="left"].is-in { animation-name: revealLeft; }
[data-reveal="right"].is-in { animation-name: revealRight; }

@keyframes revealUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes revealLeft { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: none; } }
@keyframes revealRight { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }

.no-motion [data-reveal] { opacity: 1; animation: none; }

/* ---------- reduced motion ----------
   There is no animation left on the site. This stays for the transitions. */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .chips li::after { transition: none; }
  [data-reveal], [data-reveal].is-in { opacity: 1; animation: none; }
  .verse-track { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
