@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #0d1412;
  --bg-alt: #151e1b;
  --panel: #17201d;
  --panel-strong: #0f1715;
  --surface: #f3f1eb;
  --surface-alt: #e5ebe7;
  --surface-strong: #ffffff;
  --text: #121816;
  --text-soft: #5f6d67;
  --white: #ffffff;
  --accent: #abc978;
  --accent-strong: #92b35d;
  --accent-soft: rgba(171, 201, 120, 0.14);
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(18, 24, 22, 0.1);
  --shadow-soft: 0 28px 70px rgba(4, 10, 8, 0.14);
  --shadow-strong: 0 42px 120px rgba(4, 10, 8, 0.28);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 32px));
  --font-body: "Plus Jakarta Sans", sans-serif;
  --font-display: "Barlow Condensed", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}

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

figure,
p,
ul,
ol,
dl,
dd {
  margin: 0;
}

ul {
  padding: 0;
}

a {
  color: inherit;
}

h1,
h2,
h3,
summary {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--text);
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  transform: translateY(-200%);
  transition: transform 0.2s ease;
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  background: #09100e;
  color: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
}

.topbar-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 10px 0;
}

.topbar a,
.topbar p {
  text-decoration: none;
}

.topbar a:hover,
.topbar a:focus-visible {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(9, 15, 13, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.nav-bar {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 240px;
  height: auto;
  display: block;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--white);
}

.nav-call {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
}

.button,
.button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent);
  color: #0b120f;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: var(--accent-strong);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.button-block {
  width: 100%;
}

.button-secondary,
.button-secondary:visited {
  background: transparent;
  border-color: rgba(18, 24, 22, 0.16);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(18, 24, 22, 0.04);
}

.button-on-dark,
.button-on-dark:visited {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.button-on-dark:hover,
.button-on-dark:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.button-dark,
.button-dark:visited {
  background: var(--panel-strong);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #060b09;
}

.button-light,
.button-light:visited {
  background: var(--white);
  color: var(--text);
}

.button-light:hover,
.button-light:focus-visible {
  background: #f3f6f4;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
}

.link-arrow::after {
  content: "->";
}

.link-arrow:hover,
.link-arrow:focus-visible {
  text-decoration: underline;
}

.section {
  padding: clamp(56px, 8vw, 104px) 0;
}

.section-surface {
  background: var(--surface);
}

.section-muted {
  background: var(--surface-alt);
}

.section-dark {
  background: var(--bg);
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
  display: grid;
  gap: 14px;
}

.section-heading p:not(.eyebrow) {
  color: var(--text-soft);
}

.section-dark .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow,
.card-kicker,
.panel-label,
.breadcrumb {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow,
.card-kicker,
.panel-label {
  color: var(--accent);
}

.breadcrumb-shell {
  margin-bottom: 18px;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.68);
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--white);
}

.hero-support,
.lead,
.section-heading p,
.service-card p,
.detail-panel p,
.action-panel p,
.form-panel p,
.contact-panel p,
.review-panel p,
.location-panel p,
.faq-item p,
.cta-banner p,
.site-footer p {
  text-wrap: pretty;
}

.lead {
  max-width: 60ch;
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
}

.immersive-hero {
  position: relative;
  overflow: clip;
  background: var(--bg);
  color: var(--white);
}

.immersive-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 10, 0.92) 0%, rgba(7, 11, 10, 0.84) 38%, rgba(7, 11, 10, 0.48) 66%, rgba(7, 11, 10, 0.78) 100%),
    linear-gradient(180deg, rgba(7, 11, 10, 0.1) 0%, rgba(7, 11, 10, 0.22) 100%);
  z-index: 1;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 390px);
  align-items: end;
  gap: 34px;
  min-height: calc(100svh - 134px);
  padding: clamp(56px, 8vw, 120px) 0 clamp(44px, 6vw, 72px);
}

.service-hero .hero-layout {
  min-height: min(78svh, 780px);
}

.hero-content {
  display: grid;
  gap: 18px;
}

.hero-content h1,
.section-heading h2,
.form-panel h2,
.contact-panel h2,
.review-panel h2,
.location-panel h2,
.detail-panel h2,
.action-panel h2,
.cta-banner h2,
.hero-side h2,
.site-footer h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 10ch;
  font-size: clamp(3.5rem, 10vw, 7.6rem);
}

.service-hero .hero-content h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 8vw, 5.8rem);
}

.hero-content .lead {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4px;
}

.hero-actions,
.action-cluster,
.panel-actions,
.stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-support {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.96rem;
}

.hero-side {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(10, 16, 14, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
  display: grid;
  gap: 16px;
}

.hero-side h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
}

.hero-side p {
  color: rgba(255, 255, 255, 0.74);
}

.inline-info,
.service-list,
.detail-list,
.footer-links {
  list-style: none;
}

.inline-info,
.detail-list {
  display: grid;
  gap: 12px;
}

.inline-info li,
.detail-list li {
  position: relative;
  padding-left: 18px;
}

.inline-info li::before,
.detail-list li::before,
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.trust-strip {
  background: #101715;
  color: var(--white);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0 26px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.93rem;
  font-weight: 700;
}

.service-grid,
.proof-grid,
.location-grid,
.form-shell,
.footer-grid,
.service-detail-grid {
  display: grid;
  gap: 22px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #18211d 0%, #111715 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 14px;
  align-content: start;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  text-transform: uppercase;
}

.service-card p {
  color: rgba(255, 255, 255, 0.74);
}

.service-list {
  display: grid;
  gap: 10px;
}

.service-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.conversion-strip {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #18211d 0%, #101715 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.conversion-strip h2,
.form-panel h2,
.contact-panel h2,
.review-panel h2,
.location-panel h2,
.detail-panel h2,
.action-panel h2,
.cta-banner h2,
.section-heading h2 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

.conversion-strip p,
.cta-banner p {
  color: rgba(255, 255, 255, 0.72);
}

.form-shell,
.proof-grid,
.location-grid,
.footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-panel,
.review-panel,
.location-panel,
.detail-panel,
.faq-item {
  padding: clamp(24px, 4vw, 36px);
  background: var(--surface-strong);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.form-panel,
.contact-panel,
.review-panel,
.location-panel,
.detail-panel,
.action-panel {
  display: grid;
  gap: 16px;
}

.form-panel p,
.detail-panel p,
.location-panel p {
  color: var(--text-soft);
}

.contact-panel,
.action-panel,
.cta-banner {
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #17201d 0%, #0f1715 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.contact-panel p,
.action-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-panel .detail-list li,
.action-panel .detail-list li {
  color: rgba(255, 255, 255, 0.88);
}

.quote-form {
  display: grid;
  gap: 14px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-span {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
}

.field-block {
  display: grid;
  gap: 8px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(18, 24, 22, 0.14);
  border-radius: var(--radius-md);
  background: #f8f7f3;
  padding: 14px 16px;
  min-height: 54px;
  font: inherit;
  color: var(--text);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.rego-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.rego-row .button {
  align-self: stretch;
}

.form-feedback {
  min-height: 24px;
  font-size: 0.94rem;
  color: var(--text-soft);
}

.form-feedback.status-success {
  color: #2f6f38;
}

.form-feedback.status-warning {
  color: #8a5a00;
}

.form-feedback.status-error {
  color: #a33a34;
}

.form-note {
  font-size: 0.92rem;
  color: var(--text-soft);
}

.form-status {
  min-height: 22px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-soft);
}

.form-status.status-success {
  color: #2f6f38;
}

.form-status.status-warning {
  color: #8a5a00;
}

.form-status.status-error {
  color: #a33a34;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

button:disabled,
.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.workshop-media {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  min-height: 100%;
}

.workshop-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 38%;
}

.location-panel .detail-list strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.contact-panel .detail-list strong,
.action-panel .detail-list strong {
  color: rgba(255, 255, 255, 0.62);
}

.map-shell {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.map-frame {
  width: 100%;
  min-height: 460px;
  border: 0;
  display: block;
}

.service-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  font-size: 1.12rem;
  font-weight: 800;
  padding-right: 28px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--accent-strong);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin-top: 12px;
  color: var(--text-soft);
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.site-footer {
  padding: 52px 0 24px;
  background: #0a100e;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer h2 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.site-footer a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.mobile-cta-bar {
  display: none;
}

body.home-page {
  background: #ede8dd;
  color: #121816;
}

.home-page .topbar {
  background: #0b120f;
}

.home-page .home-hero-compact {
  position: relative;
  overflow: clip;
  background: #0d1412;
  color: var(--white);
}

.home-page .home-hero-compact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(92deg, rgba(6, 10, 9, 0.92) 0%, rgba(6, 10, 9, 0.82) 42%, rgba(6, 10, 9, 0.58) 68%, rgba(6, 10, 9, 0.84) 100%),
    linear-gradient(180deg, rgba(6, 10, 9, 0.08) 0%, rgba(6, 10, 9, 0.18) 100%);
  z-index: 1;
}

.home-page .hero-backdrop img {
  object-position: center 42%;
}

.home-page .home-hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(36px, 6vw, 60px) 0 82px;
}

.home-page .home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 372px);
  gap: 24px;
  align-items: center;
  min-height: min(68svh, 620px);
}

.home-page .home-hero-copy {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.home-page .home-hero-copy h1,
.home-page .home-section-heading h2,
.home-page .home-trust-panel h2,
.home-page .home-quote-card h2,
.home-page .home-contact-panel h2,
.home-page .home-review-card h3,
.home-page .home-final-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.94;
}

.home-page .home-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.1rem, 7vw, 5.3rem);
}

.home-page .home-hero-copy .lead {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.home-page .home-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.home-page .home-trust-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 700;
}

.home-page .home-quote-card {
  padding: 22px;
  border-radius: 26px;
  background: rgba(13, 20, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 90px rgba(2, 8, 6, 0.32);
  backdrop-filter: blur(16px);
  display: grid;
  gap: 14px;
}

.home-page .home-quote-card h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.home-page .quote-form-compact {
  gap: 12px;
}

.home-page .compact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-page .home-quote-card label {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}

.home-page .home-quote-card input,
.home-page .home-quote-card select,
.home-page .home-quote-card textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.home-page .home-quote-card select option {
  background: var(--white);
  color: var(--text);
}

.home-page .home-quote-card input::placeholder,
.home-page .home-quote-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.home-page .field-optional {
  color: rgba(255, 255, 255, 0.54);
  font-weight: 600;
}

.home-page .form-feedback-compact {
  min-height: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.64);
}

.home-page .home-quote-card .form-status {
  color: rgba(255, 255, 255, 0.72);
}

.home-page .home-quote-card .form-status.status-success {
  color: #bce58b;
}

.home-page .home-quote-card .form-status.status-warning {
  color: #ffd77a;
}

.home-page .home-quote-card .form-status.status-error {
  color: #ffaaa5;
}

.home-page .booking-more {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 10px;
}

.home-page .booking-more summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--accent);
  padding-right: 18px;
}

.home-page .booking-more summary::-webkit-details-marker {
  display: none;
}

.home-page .booking-more summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
}

.home-page .booking-more[open] summary::after {
  content: "-";
}

.home-page .booking-more-body {
  display: grid;
  gap: 12px;
  padding-top: 10px;
}

.home-page .home-action-strip-wrap {
  position: relative;
  z-index: 5;
  margin-top: -42px;
}

.home-page .home-action-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border-radius: 24px;
  background: linear-gradient(180deg, #18211d 0%, #101715 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 72px rgba(4, 10, 8, 0.22);
}

.home-page .home-action-link {
  min-height: 78px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  display: grid;
  align-content: center;
  gap: 4px;
}

.home-page .home-action-link strong {
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.home-page .home-action-link span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.home-page .home-action-link.is-primary {
  background: var(--accent);
}

.home-page .home-action-link.is-primary strong,
.home-page .home-action-link.is-primary span {
  color: #0b120f;
}

.home-page .home-section {
  padding: 34px 0 42px;
}

.home-page .home-section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.home-page .home-section-heading-tight {
  margin-bottom: 0;
}

.home-page .home-section-heading h2,
.home-page .home-trust-panel h2,
.home-page .home-contact-panel h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.home-page .home-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-page .home-service-card,
.home-page .home-review-card,
.home-page .home-contact-panel {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 24, 22, 0.08);
  box-shadow: 0 20px 48px rgba(8, 15, 12, 0.08);
  backdrop-filter: blur(8px);
}

.home-page .home-service-card {
  display: grid;
  gap: 12px;
}

.home-page .home-service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  text-transform: uppercase;
}

.home-page .home-service-card p,
.home-page .home-review-card p,
.home-page .home-contact-panel p {
  color: var(--text-soft);
}

.home-page .home-trust-section {
  padding-top: 8px;
}

.home-page .home-trust-grid,
.home-page .home-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 340px);
  gap: 18px;
}

.home-page .home-trust-panel,
.home-page .home-final-card {
  padding: 24px;
  border-radius: 26px;
}

.home-page .home-trust-panel {
  background: linear-gradient(180deg, #18211d 0%, #101715 100%);
  color: var(--white);
  display: grid;
  gap: 18px;
  box-shadow: 0 30px 90px rgba(3, 8, 6, 0.22);
}

.home-page .home-trust-grid-compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-page .home-trust-grid-compact article {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-page .home-trust-grid-compact strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.home-page .home-trust-grid-compact p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.home-page .home-review-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.home-page .home-review-card h3,
.home-page .home-final-card h3 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.home-page .home-contact-section {
  padding-bottom: 56px;
}

.home-page .home-contact-panel {
  display: grid;
  gap: 14px;
}

.home-page .home-contact-panel .detail-list {
  gap: 10px;
}

.home-page .home-contact-panel .detail-list strong {
  display: inline;
  margin-right: 6px;
  font-size: inherit;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text);
}

.home-page .home-final-card {
  background: linear-gradient(180deg, #17201d 0%, #0f1715 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(3, 8, 6, 0.22);
  display: grid;
  gap: 14px;
}

.home-page .home-final-card p {
  color: rgba(255, 255, 255, 0.72);
}

.tyre-finder-hero .hero-layout {
  min-height: min(68svh, 640px);
}

.tyre-search-panel {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(13, 20, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
  display: grid;
  gap: 16px;
}

.tyre-search-panel h2,
.tyre-search-results h2,
.tyre-result-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
}

.tyre-search-panel h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.tyre-search-panel label {
  color: rgba(255, 255, 255, 0.92);
}

.tyre-search-panel input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.tyre-search-panel input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.field-optional {
  color: var(--text-soft);
  font-weight: 600;
}

.tyre-search-panel .field-optional {
  color: rgba(255, 255, 255, 0.54);
}

.tyre-size-guide {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.74);
}

.tyre-size-guide summary {
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: normal;
  line-height: 1.2;
}

.tyre-size-guide p {
  margin-top: 10px;
  font-size: 0.9rem;
}

.tyre-size-guide strong {
  color: var(--accent);
}

.tyre-size-parts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tyre-size-parts span {
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(171, 201, 120, 0.12);
  border: 1px solid rgba(171, 201, 120, 0.22);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
}

.tyre-results-shell {
  padding: 28px 0 34px;
  background:
    radial-gradient(circle at 20% 0%, rgba(171, 201, 120, 0.12), transparent 34%),
    linear-gradient(180deg, #0d1412 0%, #121a17 100%);
}

.tyre-search-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tyre-search-results h2 {
  grid-column: 1 / -1;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.tyre-search-results > p,
.tyre-results-intro {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.74);
}

.tyre-result-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.tyre-result-media {
  display: grid;
  place-items: center;
  min-height: 154px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(243, 241, 235, 0.98), rgba(220, 226, 219, 0.94)),
    var(--surface);
}

.tyre-result-media img {
  width: 100%;
  max-height: 132px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.18));
}

.tyre-result-media.is-fallback {
  background:
    radial-gradient(circle, rgba(171, 201, 120, 0.18), transparent 64%),
    linear-gradient(135deg, #17201d, #0b1210);
}

.tyre-result-media.is-fallback span {
  display: inline-flex;
  position: relative;
  width: 86px;
  height: 86px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 13px solid rgba(171, 201, 120, 0.5);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 0 22%, transparent 23%),
    radial-gradient(circle, transparent 0 48%, rgba(255, 255, 255, 0.08) 49% 53%, transparent 54%);
  box-shadow:
    inset 0 0 0 10px rgba(7, 12, 10, 0.92),
    inset 0 0 0 22px rgba(171, 201, 120, 0.14),
    0 20px 34px rgba(0, 0, 0, 0.26);
}

.tyre-result-media.is-fallback span::before,
.tyre-result-media.is-fallback span::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.tyre-result-media.is-fallback span::before {
  inset: 16px;
  border: 4px solid rgba(255, 255, 255, 0.14);
}

.tyre-result-media.is-fallback span::after {
  inset: 32px;
  background: rgba(171, 201, 120, 0.72);
}

.tyre-result-body {
  display: grid;
  gap: 8px;
  padding: 16px 16px 14px;
}

.tyre-result-card h3 {
  color: var(--white);
  font-size: 1.45rem;
}

.tyre-result-size {
  color: var(--accent);
  font-weight: 800;
}

.tyre-result-price {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
}

.tyre-result-meta,
.tyre-result-availability,
.tyre-result-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.tyre-result-availability {
  font-weight: 800;
}

.tyre-warehouse-list {
  display: grid;
  gap: 8px;
  padding: 0 16px 16px;
}

.tyre-warehouse-label {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tyre-warehouse-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tyre-warehouse-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 800;
}

.tyre-warehouse-chip strong {
  color: var(--white);
}

.tyre-warehouse-chip.is-local {
  background: rgba(171, 201, 120, 0.18);
  border-color: rgba(171, 201, 120, 0.34);
  color: var(--accent);
}

.tyre-result-action {
  width: 100%;
  margin-top: 4px;
  padding: 11px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.tyre-result-action:hover,
.tyre-result-action:focus-visible {
  background: var(--accent);
  transform: translateY(-1px);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.button:focus-visible,
.nav-links a:focus-visible,
.nav-toggle:focus-visible,
.topbar a:focus-visible,
.link-arrow:focus-visible {
  outline: 3px solid rgba(171, 201, 120, 0.32);
  outline-offset: 2px;
}

@media (max-width: 1100px) {
  .hero-layout,
  .conversion-strip,
  .form-shell,
  .proof-grid,
  .location-grid,
  .footer-grid,
  .service-detail-grid,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tyre-search-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-call {
    display: none;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    background: rgba(9, 15, 13, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-strong);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
  }

  .hero-layout {
    min-height: auto;
    align-items: start;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 52px 0;
  }

  .topbar-inner {
    justify-content: flex-start;
  }

  .brand img {
    width: 210px;
  }

  .service-grid,
  .field-grid,
  .tyre-search-results {
    grid-template-columns: 1fr;
  }

  .tyre-finder-hero .hero-layout {
    min-height: auto;
  }

  .tyre-search-panel {
    padding: 18px;
  }

  .tyre-results-shell {
    padding: 22px 0 28px;
  }

  .tyre-result-card {
    grid-template-columns: 112px 1fr;
    grid-template-rows: auto auto;
  }

  .tyre-result-media {
    min-height: 100%;
    padding: 12px;
  }

  .tyre-result-media img {
    max-height: 104px;
  }

  .tyre-result-body {
    padding: 14px;
  }

  .tyre-warehouse-list {
    grid-column: 1 / -1;
    padding: 0 14px 14px;
  }

  .hero-actions,
  .panel-actions,
  .stack-actions,
  .action-cluster {
    flex-direction: column;
  }

  .hero-content h1,
  .service-hero .hero-content h1 {
    max-width: none;
  }

  .hero-side,
  .service-card,
  .form-panel,
  .contact-panel,
  .review-panel,
  .location-panel,
  .detail-panel,
  .action-panel,
  .faq-item,
  .cta-banner,
  .conversion-strip {
    padding: 22px;
  }

  .rego-row {
    grid-template-columns: 1fr;
  }

  body {
    padding-bottom: 88px;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
    background: rgba(9, 15, 13, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(14px);
  }

  .mobile-cta-bar a {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.92rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .mobile-cta-bar a.mobile-cta-primary {
    background: var(--accent);
    color: #0b120f;
  }
}

@media (max-width: 1100px) {
  .home-page .home-hero-grid,
  .home-page .home-trust-grid,
  .home-page .home-contact-grid {
    grid-template-columns: 1fr;
  }

  .home-page .home-action-strip,
  .home-page .home-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .home-hero-inner {
    padding-bottom: 70px;
  }
}

@media (max-width: 720px) {
  .home-page .home-hero-inner {
    padding: 26px 0 60px;
  }

  .home-page .home-hero-grid,
  .home-page .compact-field-grid,
  .home-page .home-action-strip,
  .home-page .home-service-grid,
  .home-page .home-trust-grid-compact {
    grid-template-columns: 1fr;
  }

  .home-page .home-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.6rem, 11vw, 4.1rem);
  }

  .home-page .home-quote-card,
  .home-page .home-service-card,
  .home-page .home-trust-panel,
  .home-page .home-review-card,
  .home-page .home-contact-panel,
  .home-page .home-final-card {
    padding: 20px;
  }

  .home-page .hero-actions,
  .home-page .stack-actions {
    flex-direction: column;
  }

  .home-page .home-action-strip-wrap {
    margin-top: -28px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
