/* ARES Digital Studio — system fonts only, cream / ink / orange */
:root {
  --ink: #111111;
  --muted: #5b6168;
  --bg: #f4f1ea;
  --card: #ffffff;
  --line: #d8d2c8;
  --accent: #c45c26;
  --accent-dark: #a34a1c;
  --max: 720px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

a {
  color: var(--accent-dark);
}

a:hover {
  text-decoration-thickness: 2px;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Top bar —— */
.topbar {
  border-bottom: 1px solid var(--line);
  background: var(--card);
}

.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.85rem 0;
}

.brand {
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
  font-size: 1rem;
}

.brand span {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.8rem;
  display: block;
  margin-top: 0.15rem;
}

.nav-mail {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent-dark);
  word-break: break-all;
}

.nav-mail:hover {
  text-decoration: underline;
}

/* —— Hero —— */
.hero {
  padding: 2.5rem 0 2rem;
}

.kicker {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.85rem, 6.5vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  font-weight: 700;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 36em;
}

.fix-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.fix-list li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
}

.fix-list strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--ink);
}

.fix-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  text-decoration: none;
}

.btn-ghost {
  background: var(--card);
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--ink);
  text-decoration: none;
}

.note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

/* —— Sections —— */
section {
  padding: 2rem 0;
}

section + section {
  border-top: 1px solid var(--line);
}

.section-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-intro {
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 38em;
  font-size: 0.98rem;
}

/* —— How we work —— */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
  display: grid;
  gap: 0.75rem;
}

.steps li {
  counter-increment: step;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1rem 1rem 3.25rem;
  position: relative;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.9rem;
  top: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* —— Services —— */
.price-note {
  background: #fff8f0;
  border: 1px solid #e8c9b0;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: var(--ink);
  margin: 0 0 1.25rem;
}

.price-note strong {
  color: var(--accent-dark);
}

.services {
  display: grid;
  gap: 0.85rem;
}

.service {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
}

.service h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.service .range {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
}

.service .range small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

.service p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service.custom {
  border-style: dashed;
}

/* —— Example —— */
.example {
  display: grid;
  gap: 0.85rem;
}

.example-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
}

.example-card.bad {
  border-left: 4px solid #8a6d5a;
}

.example-card.good {
  border-left: 4px solid var(--accent);
}

.example-card .label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 0.4rem;
}

.example-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.example-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.example-caption {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.25rem 0 0;
}

/* —— Contact —— */
.contact-box {
  background: var(--ink);
  color: #f4f1ea;
  border-radius: 18px;
  padding: 1.5rem 1.25rem;
  text-align: left;
}

.contact-box h2 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.35rem, 4vw, 1.7rem);
  margin: 0 0 0.5rem;
  color: #fff;
}

.contact-box p {
  margin: 0 0 1.15rem;
  color: #c8c4bc;
  font-size: 0.95rem;
  max-width: 34em;
}

.contact-box .btn-primary {
  background: var(--accent);
}

.contact-box .btn-primary:hover {
  background: #d66a30;
}

.contact-box .note {
  margin-top: 0.9rem;
  color: #9a958c;
}

/* —— Footer —— */
footer {
  border-top: 1px solid var(--line);
  padding: 1.75rem 0 2.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

footer .wrap > p {
  margin: 0 0 0.65rem;
  max-width: 42em;
}

footer .legal-list {
  margin: 0 0 0.85rem;
  padding-left: 1.1rem;
}

footer .legal-list li {
  margin-bottom: 0.35rem;
}

footer .meta {
  margin: 0;
  font-size: 0.75rem;
}

/* —— Desktop tweaks —— */
@media (min-width: 640px) {
  .hero {
    padding: 3.25rem 0 2.5rem;
  }

  .fix-list {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .services {
    grid-template-columns: 1fr 1fr;
  }

  .service.custom {
    grid-column: 1 / -1;
  }

  .example {
    grid-template-columns: 1fr 1fr;
  }

  .contact-box {
    padding: 2rem 1.75rem;
  }
}

/* —— Offer extras + sticky CTA —— */
.offer-meta {
  margin: 0.65rem 0 0.85rem !important;
  font-size: 0.8rem !important;
}
.offer-btn {
  margin-top: 0.25rem;
  width: 100%;
}
.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 20;
  background: #111111;
  border-top: 1px solid #c45c26;
}
.sticky-cta a {
  display: block;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
}
.sticky-cta a:hover {
  background: #c45c26;
  text-decoration: none;
}
body {
  padding-bottom: 0;
}

/* —— Contact form —— */
.contact-form {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 1rem;
  text-align: left;
}
.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #f4f1ea;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  font-weight: 400;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}
.contact-form textarea {
  resize: vertical;
  min-height: 7rem;
}
.contact-form .hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}
.form-status {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}


/* —— Offer badge + FAQ + backend banner (2026-09-05) —— */
.offer-badge {
  display: inline-block;
  margin: 0 0 0.4rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #fff8f0;
  color: var(--accent-dark);
  border: 1px solid #e8c9b0;
}
.faq-list {
  display: grid;
  gap: 0.65rem;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}
.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 700;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.backend-banner {
  background: #3a2218;
  border: 1px solid #c45c26;
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: #f4dcc8;
  line-height: 1.45;
}
.contact-box .form-status {
  color: #c8c4bc;
}
@media (min-width: 900px) {
  .services {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
