/* ADOSINDO AUTO — demo styles
   Warm neutrals, trust tone, mobile-first. No CDN fonts. */

:root {
  --ink: #1c1917;
  --ink-soft: #44403c;
  --muted: #78716c;
  --line: #e7e5e4;
  --paper: #faf8f5;
  --paper-2: #f3efe8;
  --card: #ffffff;
  --accent: #9a3412;
  --accent-hover: #7c2d12;
  --accent-soft: #fff7ed;
  --ok: #166534;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(28, 25, 23, 0.06), 0 8px 24px rgba(28, 25, 23, 0.06);
  --max: 1080px;
  --pad: clamp(1rem, 4vw, 1.75rem);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-display: Georgia, "Times New Roman", "Liberation Serif", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 0.15em; }
a:hover { color: var(--accent-hover); }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
}
.skip:focus { left: var(--pad); top: 0.5rem; }

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

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  min-height: 3.5rem;
}
.brand {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.brand span { display: block; font-weight: 500; font-size: 0.72rem; letter-spacing: 0.02em; text-transform: none; color: var(--muted); }
.brand:hover { color: var(--ink); }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav {
  display: none;
  gap: 0.25rem;
}
.nav a {
  display: block;
  padding: 0.65rem 0.9rem;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
}
.nav a:hover, .nav a[aria-current="page"] {
  background: var(--paper-2);
  color: var(--ink);
}
.nav-open .nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 0.5rem var(--pad) 1rem;
  box-shadow: var(--shadow);
}
.header-cta {
  display: none;
}
.header-cta .btn { white-space: nowrap; }

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: static;
    border: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }
  .header-cta { display: block; }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: #fff;
}
.btn-ghost {
  background: var(--card);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink-soft);
  color: var(--ink);
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* —— Hero —— */
.hero {
  padding: clamp(2.25rem, 6vw, 4rem) 0 clamp(2rem, 5vw, 3.25rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(154, 52, 18, 0.08), transparent 55%),
    var(--paper);
}
.hero-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5.5vw, 2.85rem);
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 0.85rem;
  max-width: 18ch;
  letter-spacing: -0.02em;
}
.hero .lead {
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 38rem;
  margin: 0;
}
.state-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.state-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  flex-shrink: 0;
}
/* S7 only until real hours — never claim open */
[data-state="S7"] .state-chip::before { background: #a8a29e; }

/* —— Sections —— */
.section {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}
.section + .section { border-top: 1px solid var(--line); }
.section-alt { background: var(--paper-2); }
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.5vw, 1.9rem);
  line-height: 1.2;
  margin: 0 0 0.75rem;
  letter-spacing: -0.015em;
}
.section .intro {
  color: var(--ink-soft);
  max-width: 40rem;
  margin: 0 0 1.5rem;
}
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 700px) {
  .trust-strip { grid-template-columns: repeat(4, 1fr); }
}
.trust-strip li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
}

/* Value bullets */
.value-grid {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 700px) {
  .value-grid { grid-template-columns: 1fr 1fr; }
}
.value-grid li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}
.value-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.02rem;
}
.value-grid span { color: var(--ink-soft); font-size: 0.98rem; }

/* Service cards */
.card-grid {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 600px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  height: 100%;
}
.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}
.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.pending-tag {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  background: var(--paper-2);
  border: 1px dashed #d6d3d1;
  border-radius: 6px;
  padding: 0.2rem 0.5rem;
}

/* Reviews */
.reviews {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 800px) {
  .reviews { grid-template-columns: repeat(3, 1fr); }
}
.review {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: var(--shadow);
}
.review blockquote {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
  flex: 1;
}
.review footer {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  border: 0;
  padding: 0;
  background: transparent;
}
.stars {
  color: var(--accent);
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 700px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.steps li {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  counter-increment: step;
}
.steps li::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.steps strong { display: block; margin-bottom: 0.35rem; }
.steps span { color: var(--ink-soft); font-size: 0.98rem; }

/* CTA band */
.cta-band {
  background: var(--ink);
  color: #fafaf9;
  padding: clamp(2.25rem, 5vw, 3.25rem) 0;
}
.cta-band h2 {
  font-family: var(--font-display);
  color: #fff;
  margin: 0 0 0.6rem;
  font-size: clamp(1.4rem, 3.5vw, 1.85rem);
}
.cta-band p {
  margin: 0;
  color: #d6d3d1;
  max-width: 36rem;
}
.cta-band .btn-primary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.cta-band .btn-primary:hover {
  background: var(--paper-2);
  border-color: var(--paper-2);
  color: var(--ink);
}
.cta-band .btn-secondary {
  color: #fff;
  border-color: #a8a29e;
}
.cta-band .btn-secondary:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.cta-band a:not(.btn) {
  color: #fdba74;
}

/* Contact layout */
.contact-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; align-items: start; }
}
.nap-card, .hours-card, .map-card, .form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.nap-card h2, .hours-card h2, .map-card h2, .form-card h2 {
  font-size: 1.15rem;
  margin: 0 0 0.85rem;
  font-family: var(--font);
}
.nap-block {
  margin: 0 0 1rem;
  line-height: 1.5;
}
.nap-block strong { display: block; font-size: 1.05rem; }
.channel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.channel-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}
.pending-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0.35rem 0 0;
}
.hours-pending {
  background: var(--accent-soft);
  border: 1px dashed #fed7aa;
  border-radius: 10px;
  padding: 1rem 1.1rem;
  color: var(--ink-soft);
  margin: 0;
}
.hours-pending strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

/* Map placeholder */
.map-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-link:hover { border-color: var(--accent); }
.map-placeholder {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, #e7e5e4 0%, #f5f5f4 40%, #d6d3d1 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 180px;
}
.map-pin {
  width: 48px;
  height: 48px;
  color: var(--accent);
}
.map-placeholder p {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.map-placeholder small {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Form */
.form-card form {
  display: grid;
  gap: 1rem;
}
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}
.field .hint {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.85rem;
}
.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  border: 1px solid #d6d3d1;
  border-radius: 10px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(154, 52, 18, 0.15);
}
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.check input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: var(--ok);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  font-weight: 600;
}
.form-success.is-visible { display: block; }
.form-card.is-sent .form-fields { display: none; }

/* Soft mention classics */
.soft-mention {
  border-style: dashed;
  background: var(--paper);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper-2);
  padding: 2rem 0 calc(5.5rem + var(--safe-b));
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.footer-nap {
  margin: 0 0 0.75rem;
  color: var(--ink);
  font-weight: 600;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
}
.footer-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
}
.footer-nav a:hover { color: var(--accent); }
.footer-pend {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Mobile sticky bar */
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem var(--pad) calc(0.65rem + var(--safe-b));
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.25s ease;
  box-shadow: 0 -8px 24px rgba(28, 25, 23, 0.08);
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-bar .btn {
  flex: 1;
  min-height: 46px;
  font-size: 0.95rem;
  padding-inline: 0.75rem;
}
@media (min-width: 860px) {
  .sticky-bar { display: none; }
  .site-footer { padding-bottom: 2rem; }
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-weight: 600;
  text-decoration: none;
}
.link-more:hover { text-decoration: underline; }

@media (max-width: 359px) {
  .btn-row .btn { width: 100%; }
}
