/* ============================================================
   RONATECH AB — "Verkstad" design system (dark, warm editorial)
   Palette: warm ink-brown + cream paper + signal yellow
   Type: Fraunces (display serif) + Public Sans (body)
   Warm and human — not a neon "AI tech" look.
   ============================================================ */

:root {
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Public Sans", system-ui, sans-serif;

  /* Dark, warm editorial tokens (single theme) — deep near-black */
  --bg: #0a0806;          /* deep warm near-black */
  --bg-soft: #120e0a;     /* soft raised surface */
  --bg-raise: #191410;    /* raised panel */
  --ink: #f2ead9;         /* warm cream text */
  --ink-soft: #c9bfac;    /* warm muted */
  --ink-faint: #9b9079;   /* tertiary */
  --line: #2b2117;        /* warm hairline */
  --yellow: #e8b20a;      /* signal yellow accent */
  --yellow-deep: #c7950a;
  --yellow-soft: #2c2312;
  --cream: #f2ead9;

  color-scheme: dark;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

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

body,
h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

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

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--yellow);
  color: #1a1406;
  padding: 0.75rem 1rem;
  border-radius: 0 0 6px 0;
  z-index: 100;
  text-decoration: none;
}
.skip:focus {
  left: 0;
}

.container {
  width: min(1140px, 100% - 3rem);
  margin-inline: auto;
}

section[id] {
  scroll-margin-top: 96px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  min-height: 48px;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--yellow);
  color: #1a1406;
}
.btn-primary:hover {
  background: var(--yellow-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}
.btn:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}
.btn-tel {
  white-space: nowrap;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 8, 6, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1240px;
  margin-inline: auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 74px;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: none;
  gap: 0.05rem;
  text-decoration: none;
}
.brand-mark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  color: var(--cream);
  line-height: 1;
}
.brand-mark .mark-acc {
  color: var(--yellow);
}
.brand-sub {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ink-soft);
}
.site-nav {
  margin-left: auto;
}
.site-nav ul {
  display: flex;
  gap: 1.9rem;
  align-items: center;
}
.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.site-nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--yellow);
}
.site-nav a.is-active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}
.header-cta {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
  color: #1a1406;
  background: var(--yellow);
  border-radius: 4px;
  padding: 0.5rem 1.15rem;
  align-items: center;
  flex: none;
  transition: background 0.18s ease, transform 0.18s ease;
}
.header-cta:hover {
  background: var(--yellow-deep);
  transform: translateY(-1px);
}
.cta-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(26, 20, 6, 0.72);
}
.cta-num {
  font-weight: 700;
  font-size: 1.05rem;
  color: #1a1406;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 5.5rem 1.5rem 6rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(55% 90% at 88% 8%, rgba(232, 178, 10, 0.09), transparent 60%),
    var(--bg);
}
.hero-inner {
  max-width: 1160px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.hero-media img {
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.hero-media figcaption {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--ink-faint);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yellow);
  margin-bottom: 1.6rem;
}
.hero-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--yellow);
}
.hero-h {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.4vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--cream);
  max-width: 16ch;
  margin-bottom: 1.6rem;
}
.hero-h em {
  font-style: italic;
  color: var(--yellow);
}
.hero-sub {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 40rem;
  margin-bottom: 2.4rem;
}
.hero-cta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.hero-meta b {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--cream);
  line-height: 1.1;
}
.hero-meta b .acc {
  color: var(--yellow);
}
.hero-meta span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 4.5rem 1.5rem 4rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(55% 90% at 88% 8%, rgba(232, 178, 10, 0.09), transparent 60%),
    var(--bg);
}
.page-hero-inner {
  max-width: 1160px;
  margin-inline: auto;
}
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yellow);
  margin-bottom: 1.2rem;
}
.page-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--yellow);
}
.page-h {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--cream);
  max-width: 20ch;
  margin-bottom: 1.3rem;
}
.page-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 40rem;
}
.page-crumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-bottom: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.page-crumb a {
  color: var(--ink-soft);
  text-decoration: none;
}
.page-crumb a:hover {
  color: var(--yellow);
}
.page-crumb span {
  color: var(--yellow);
}

/* interior page body sections */
.prose {
  max-width: 46rem;
}
.prose p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.prose strong {
  color: var(--ink);
}
.prose h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--cream);
  margin: 2rem 0 0.7rem;
}
.prose ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.4rem;
}
.prose ul li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--ink-soft);
}
.prose ul li::before {
  content: "–";
  color: var(--yellow);
  font-weight: 700;
  flex: none;
}
.prose-note {
  font-size: 0.88rem;
  color: var(--ink-faint);
  margin-top: 0.6rem;
}

/* interior page: detail blocks (verbatim old-site content) */
.detail-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--line);
}
.detail-section:last-child {
  border-bottom: none;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.detail-h {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 1.1rem;
}
.detail-p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-bottom: 1rem;
  max-width: 40rem;
}
.detail-p strong {
  color: var(--ink);
}
.detail-list {
  display: grid;
  gap: 0.6rem;
}
.detail-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.detail-list li::before {
  content: "–";
  color: var(--yellow);
  font-weight: 700;
  flex: none;
}
.brand-list {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink);
}
.brand-list strong {
  color: var(--yellow);
}
.panel {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.panel h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.15rem;
}
.panel .panel-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.15rem;
}
.panel p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.panel ul {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.3rem;
}
.panel ul li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.panel ul li::before {
  content: "–";
  color: var(--yellow);
  font-weight: 700;
  flex: none;
}
.panel strong {
  color: var(--ink);
}
.panel-note {
  font-size: 0.86rem;
  color: var(--ink-faint);
}
.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  align-items: stretch;
}
.panel-grid .panel {
  height: 100%;
}
.panel-grid .panel--full {
  grid-column: 1 / -1;
}

/* yellow callout — same base as .panel, tinted for emphasis */
.warn {
  background: var(--yellow-soft);
  border: 1px solid rgba(232, 178, 10, 0.4);
  border-left: 4px solid var(--yellow);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
}
.warn p {
  color: var(--ink);
  font-size: 0.95rem;
}
.warn strong {
  color: var(--yellow);
}
.spec-table {
  display: grid;
  gap: 0;
  margin: 1rem 0;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.spec-row b {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}
.spec-row--yellow b {
  color: var(--yellow);
}
@media (max-width: 960px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .panel-grid {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ---------- Section heads ---------- */
.section {
  padding: 5.5rem 0;
}
.section--soft {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}
.sec-eyebrow {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yellow);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.sec-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--yellow);
}
.sec-head {
  max-width: 46rem;
  margin-bottom: 3.2rem;
}
.sec-head--center {
  margin-inline: auto;
  text-align: center;
}
.sec-head--center .sec-eyebrow {
  justify-content: center;
}
.sec-h {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.sec-sub {
  color: var(--ink-soft);
  margin-top: 0.9rem;
  font-size: 1.12rem;
}

/* ---------- Product categories ---------- */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.prod-card {
  position: relative;
  background: var(--bg-raise);
  border: 1px solid var(--line);
  padding: 1.8rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.prod-card:hover {
  transform: translateY(-3px);
  border-color: var(--yellow);
}
.prod-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--yellow);
  margin-bottom: 1.3rem;
}
.prod-card--img {
  overflow: hidden;
  padding: 0;
  background: var(--bg-raise);
}
.prod-card--img .prod-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  display: block;
  border-bottom: 1px solid var(--line);
}
.prod-card--img .prod-body {
  padding: 1.4rem 1.5rem 1.6rem;
}
.prod-card--img .prod-num {
  margin-bottom: 0.6rem;
}
.prod-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--cream);
}
.prod-tag {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

/* ---------- Services / pricing (editorial rows) ---------- */
.services {
  padding: 5.5rem 0;
}
.service-row {
  display: grid;
  grid-template-columns: 1.4fr 2fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}
.service-row:first-child {
  border-top: 1px solid var(--line);
}
.service-row--featured {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  padding: 2.2rem;
  margin-bottom: 0;
  border-left: 4px solid var(--yellow);
  display: grid;
  grid-template-columns: 1.4fr 1.4fr auto;
  grid-column: 1 / -1;
}
.service-name h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--cream);
}
.service-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  border: 1px solid var(--yellow);
  padding: 0.2rem 0.6rem;
  margin-top: 0.5rem;
}
.service-desc {
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.service-desc ul {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.4rem;
}
.service-desc li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.service-desc li::before {
  content: "–";
  color: var(--yellow);
  font-weight: 700;
}
.service-price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--yellow);
  white-space: nowrap;
  text-align: right;
}
.service-price small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--ink-soft);
  white-space: normal;
}

/* ---------- Win11 / upgrade ---------- */
.win {
  padding: 5.5rem 0;
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}
.win-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: start;
}
.win-h {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.win-p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  max-width: 40rem;
}
.win-callout {
  background: var(--yellow-soft);
  border: 1px solid rgba(232, 178, 10, 0.4);
  border-left: 4px solid var(--yellow);
  padding: 1.2rem 1.4rem;
  color: var(--ink);
  margin-top: 1.4rem;
}
.win-callout strong {
  color: var(--yellow);
}
.win-steps {
  display: grid;
  gap: 0.65rem;
}
.win-step {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: 0.8rem 0;
  border-bottom: 1px dashed var(--line);
}
.win-step-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--yellow);
  flex: none;
  width: 1.8rem;
}
.win-step p {
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.win-step strong {
  color: var(--ink);
}

/* ---------- About / trust ---------- */
.about {
  padding: 5.5rem 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.about-h {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.about-p {
  color: var(--ink-soft);
  font-size: 1.06rem;
  margin-bottom: 1.1rem;
  max-width: 36rem;
}
.about-facts {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.about-fact {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  background: var(--bg-raise);
  border: 1px solid var(--line);
  padding: 0.9rem 1.1rem;
}
.about-fact .fi {
  color: var(--yellow);
  flex: none;
  width: 22px;
}
.about-fact .fi svg {
  width: 22px;
  height: 22px;
}
.about-fact p {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.97rem;
}
.about-meta {
  margin-top: 1.6rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.about-meta a {
  color: var(--yellow);
  text-decoration: underline;
}
.about-media img {
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.about-media figcaption {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--ink-faint);
}
.about-card {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  padding: 2.2rem;
}
.about-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.about-card p {
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
}
.about-card .contact-tel {
  font-size: 1.7rem;
}
.about-card .contact-mail {
  color: var(--ink-soft);
}

/* ---------- Visits / guarantee ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

/* clickable service teaser card (home page) */
.service-card-link {
  display: flex;
  flex-direction: column;
  background: var(--bg-raise);
  border: 1px solid var(--line);
  padding: 2rem;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.service-card-link:hover {
  transform: translateY(-3px);
  border-color: var(--yellow);
}
.service-card-link h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.service-card-link p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin-bottom: 1.2rem;
  flex: 1;
}
.service-card-link .service-price {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.inline-link {
  color: var(--yellow);
  text-decoration: underline;
}
.inline-link:hover {
  color: var(--cream);
}
.visit-card {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  padding: 2rem;
}
.visit-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 0.7rem;
}
.visit-p {
  color: var(--ink-soft);
  font-size: 0.99rem;
}
.visit-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.1rem;
}
.visit-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.visit-list li::before {
  content: "–";
  color: var(--yellow);
  font-weight: 700;
  flex: none;
}

/* ---------- Testimonials ---------- */
.testi {
  padding: 5.5rem 0;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.testi-card {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.testi-quote {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.4rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
}
.testi-quote::before {
  content: "”";
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 0.5;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.testi-author {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.testi-more {
  margin-top: 2rem;
  text-align: center;
}
.testi-more a {
  color: var(--yellow);
  text-decoration: underline;
}

/* ---------- Contact ---------- */
.contact {
  padding: 0 0 5.5rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
}
.contact-card {
  background:
    radial-gradient(70% 120% at 100% 0%, rgba(232, 178, 10, 0.08), transparent 55%),
    var(--bg-raise);
  border: 1px solid var(--line);
  padding: 2.8rem;
}
.contact-h {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 0.9rem;
}
.contact-p {
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  max-width: 30rem;
}
.contact-tel {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.2rem;
  color: var(--yellow);
  text-decoration: none;
  margin-bottom: 0.4rem;
}
.contact-tel:hover {
  color: var(--cream);
}
.contact-mail {
  color: var(--ink-soft);
  text-decoration: underline;
  font-size: 1.05rem;
}
.contact-mail:hover {
  color: var(--yellow);
}
.contact-hours {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  display: grid;
  gap: 0.4rem;
}
.hour-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.hour-row b {
  color: var(--ink);
  font-weight: 600;
}
.contact-info {
  display: grid;
  gap: 1.4rem;
  align-content: start;
}
.ci {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 1.5rem;
}
.ci-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--yellow);
  margin-bottom: 0.6rem;
}
.ci p {
  color: var(--ink-soft);
  line-height: 1.5;
}
.ci a {
  color: var(--ink);
  text-decoration: underline;
}
.ci a:hover {
  color: var(--yellow);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #070504;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding: 3.5rem 1.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1240px;
  margin-inline: auto;
}
.footer-brand .brand-mark {
  font-size: 1.5rem;
}
.footer-tagline {
  color: var(--ink-soft);
  max-width: 24rem;
  margin-top: 1rem;
}
.footer-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 0.9rem;
}
.footer-col p {
  line-height: 1.7;
}
.footer-col a {
  color: var(--ink-soft);
  text-decoration: underline;
}
.footer-col a:hover {
  color: var(--yellow);
}
.footer-social {
  display: flex;
  gap: 0.9rem;
  margin-top: 0.9rem;
}
.footer-social a {
  text-decoration: none;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  padding: 0.4rem 0.7rem;
  font-size: 0.85rem;
}
.footer-social a:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}
.footer-bottom {
  max-width: 1240px;
  margin-inline: auto;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.footer-org {
  font-size: 0.85rem;
  color: var(--ink-faint);
}

/* ---------- 404 ---------- */
.nfp {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.nfp-inner {
  text-align: center;
}
.nfp-code {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 6rem;
  line-height: 1;
  color: var(--yellow);
}
.nfp-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--cream);
  margin: 0.5rem 0;
}
.nfp-p {
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-row--featured {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-price {
    text-align: left;
  }
  .win-grid,
  .about-grid,
  .contact-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .about-facts {
    grid-template-columns: 1fr !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-nav {
    display: none;
  }
  .site-nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.5rem;
  }
  .site-nav.is-open ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
  .site-nav.is-open a {
    display: block;
    padding: 0.6rem 0;
    width: 100%;
    font-size: 1.05rem;
  }
  .nav-toggle {
    display: flex;
  }
  .header-cta {
    margin-right: auto;
  }
}

@media (max-width: 560px) {
  .header-inner {
    gap: 1rem;
    padding-inline: 1rem;
  }
  .brand-mark {
    font-size: 1.35rem;
  }
  .brand-sub {
    display: none;
  }
  .cta-label {
    display: none;
  }
  .cta-num {
    font-size: 0.95rem;
  }
  .prod-grid {
    grid-template-columns: 1fr;
  }
  .hero-meta {
    gap: 1.5rem;
  }
  .contact-card {
    padding: 2rem;
  }
  .contact-tel {
    font-size: 1.8rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-h {
    font-size: clamp(2.1rem, 8.5vw, 2.8rem);
  }
}

/* Very narrow phones: keep brand + phone + menu on one row without overflow */
@media (max-width: 430px) {
  .header-inner {
    gap: 0.6rem;
    padding-inline: 0.75rem;
  }
  .brand-mark {
    font-size: 1.2rem;
  }
  .header-cta {
    padding: 0.45rem 0.7rem;
  }
  .cta-num {
    font-size: 0.82rem;
  }
  .nav-toggle {
    padding: 6px;
    gap: 4px;
  }
  .nav-toggle span {
    width: 22px;
  }
}
