:root {
  --brand: #04595b;
  --brand-dark: #033f41;
  --brand-light: #d8efe8;
  --accent: #e13b3f;
  --brand-mid: #73bca2;
  --text: #142526;
  --muted: #4a5c5d;
  --surface: #eef6f4;
  --surface-2: #ffffff;
  --line: rgba(4, 89, 91, 0.16);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", sans-serif;
  --max: 1120px;
}

@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=Barlow:wght@400;600;700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.marketing {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(1100px 520px at 8% -8%, color-mix(in srgb, var(--brand-mid) 35%, transparent), transparent 55%),
    radial-gradient(900px 480px at 92% 0%, color-mix(in srgb, var(--brand) 18%, transparent), transparent 50%),
    linear-gradient(180deg, var(--surface) 0%, #dceee8 100%);
  min-height: 100vh;
}

.mkt-wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.mkt-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border-bottom: 1px solid var(--line);
}

.mkt-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.mkt-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  font-weight: 700;
  color: var(--brand-dark);
  text-decoration: none;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.mkt-brand img {
  height: 2.75rem;
  width: auto;
  display: block;
}

.mkt-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  align-items: center;
}

.mkt-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.mkt-nav a:hover {
  color: var(--brand-dark);
}

.mkt-nav-shop {
  color: var(--surface-2) !important;
  background: var(--brand);
  padding: 0.45rem 0.85rem;
  border-radius: 4px;
}

.mkt-nav-shop:hover {
  background: var(--brand-dark);
  color: var(--surface-2) !important;
}

.mkt-hero {
  position: relative;
  min-height: calc(100vh - 4.5rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 89, 91, 0.32) 0%, rgba(3, 40, 42, 0.72) 58%, rgba(2, 28, 29, 0.92) 100%),
    url("/marketing/hero-refinishing.jpg") center 42% / cover no-repeat;
  color: #fff;
}

.mkt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 22%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 36%);
  pointer-events: none;
  animation: mktFade 1.2s ease both;
}

.mkt-hero-inner {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4rem);
  animation: mktRise 0.8s ease both;
}

.mkt-hero .mkt-brand-hero {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: 0.95;
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.mkt-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 600;
  margin: 0 0 0.85rem;
  max-width: 22ch;
  letter-spacing: 0.01em;
}

.mkt-hero p {
  margin: 0 0 1.5rem;
  max-width: 42ch;
  font-size: 1.08rem;
  opacity: 0.92;
}

.mkt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.mkt-btn:hover {
  transform: translateY(-2px);
}

.mkt-btn-primary {
  background: #fff;
  color: var(--brand-dark);
}

.mkt-btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.mkt-btn-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.mkt-section {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  animation: mktFade 0.9s ease both;
}

.mkt-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  margin: 0 0 0.6rem;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mkt-section > .mkt-wrap > p.lead,
.mkt-section .lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  max-width: 58ch;
  font-size: 1.05rem;
}

.mkt-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  max-width: 40rem;
}

.mkt-feature-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text);
  font-weight: 600;
}

.mkt-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 1px;
  background: var(--accent);
}

.mkt-product-grid {
  display: grid;
  gap: 1.25rem 2rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.mkt-product-grid h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.55rem;
  color: var(--brand);
  text-transform: uppercase;
}

.mkt-product-grid ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.55;
}

.mkt-colour-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.mkt-colour-table th,
.mkt-colour-table td {
  text-align: left;
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.mkt-colour-table th {
  background: color-mix(in srgb, var(--brand) 12%, #fff);
  color: var(--brand-dark);
  font-weight: 700;
}

.mkt-form {
  display: grid;
  gap: 0.85rem;
  max-width: 34rem;
  background: var(--surface-2);
  padding: 1.25rem;
  border: 1px solid var(--line);
}

.mkt-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.mkt-form input,
.mkt-form textarea {
  font: inherit;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  background: #fff;
}

.mkt-form button {
  justify-self: start;
  font: inherit;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1.15rem;
  border-radius: 4px;
}

.mkt-form .status,
.mkt-form-status {
  min-height: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.mkt-form-status.ok {
  color: var(--brand);
}

.mkt-form-status.err {
  color: var(--accent);
}

.mkt-footer {
  border-top: 1px solid var(--line);
  padding: 1.75rem 0 2.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.mkt-footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.mkt-footer a {
  color: var(--brand-dark);
}

.mkt-error {
  min-height: 60vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 2rem;
}

@keyframes mktRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes mktFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 720px) {
  .mkt-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .mkt-hero {
    background-position: 62% 42%;
  }
}
