:root {
  --color-surface: #f7f3ee;
  --color-surface-clean: #fffdf9;
  --color-carbon: #121010;
  --color-carbon-deep: #070606;
  --color-graphite: #242020;
  --color-flame: #b5121b;
  --color-flame-dark: #6e070d;
  --color-silver: #c8c4ba;
  --color-muted: #5f5b56;
  --color-line: rgba(36, 32, 32, 0.16);
  --color-line-dark: rgba(247, 243, 238, 0.16);
  --font-heading: "Barlow Condensed", Impact, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --text-xs: 0.8rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.563rem;
  --text-2xl: 1.953rem;
  --text-3xl: 2.441rem;
  --text-4xl: 3.052rem;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --radius-sm: 2px;
  --radius-md: 4px;
  --shadow-tight: 0 2px 8px rgba(18, 16, 16, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-surface);
  color: var(--color-carbon);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: var(--space-md);
  top: -100px;
  z-index: 1000;
  background: var(--color-surface-clean);
  color: var(--color-carbon);
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--color-flame);
}

.skip-link:focus {
  top: var(--space-md);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 6, 6, 0.94);
  border-bottom: 1px solid var(--color-line-dark);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-xl);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 144px;
  height: 76px;
}

.brand-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-footer img {
  width: 100%;
  height: auto;
}

.site-menu {
  display: flex;
  justify-content: center;
  gap: clamp(var(--space-md), 3vw, var(--space-xl));
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-menu a,
.nav-action {
  color: var(--color-surface);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-menu a {
  position: relative;
  padding: var(--space-md) 0;
}

.site-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 10px;
  height: 2px;
  background: var(--color-flame);
  transition: right 220ms ease-out;
}

.site-menu a:hover::after,
.site-menu a:focus-visible::after {
  right: 0;
}

.nav-action {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 var(--space-md);
  border: 1px solid var(--color-flame);
  color: var(--color-surface-clean);
  background: rgba(181, 18, 27, 0.2);
}

.nav-action:hover,
.nav-action:focus-visible {
  background: var(--color-flame);
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(var(--space-xl), 5vw, var(--space-4xl));
  align-items: center;
  padding: clamp(var(--space-2xl), 6vw, 5.5rem) max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(7, 6, 6, 0.96), rgba(18, 16, 16, 0.88) 56%, rgba(36, 32, 32, 0.7)),
    var(--color-carbon);
  color: var(--color-surface-clean);
  overflow: hidden;
}

.hero-copy {
  max-width: 620px;
}

.hero-media {
  grid-row: span 2;
}

.hero-logo {
  width: min(280px, 64vw);
  margin-bottom: var(--space-lg);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.05;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  max-width: 620px;
  text-transform: uppercase;
}

.hero-copy > p {
  max-width: 56ch;
  margin: var(--space-lg) 0 0;
  color: rgba(255, 253, 249, 0.84);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.hero-actions,
.button {
  display: flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.button {
  justify-content: center;
  min-height: 48px;
  padding: 0.86rem 1.2rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    background 220ms ease-out,
    color 220ms ease-out,
    border-color 220ms ease-out,
    transform 220ms ease-out;
}

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

.button-primary {
  background: var(--color-flame);
  color: var(--color-surface-clean);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d01722;
}

.button-secondary {
  border-color: rgba(255, 253, 249, 0.42);
  color: var(--color-surface-clean);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--color-surface-clean);
  background: rgba(255, 253, 249, 0.08);
}

.button-dark {
  width: fit-content;
  background: var(--color-carbon);
  color: var(--color-surface-clean);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--color-flame);
}

.hero-proof {
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 520px;
  margin: var(--space-xl) 0 0;
  background: var(--color-line-dark);
  border: 1px solid var(--color-line-dark);
}

.hero-proof div {
  padding: var(--space-md);
  background: rgba(255, 253, 249, 0.055);
}

.hero-proof dt {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  line-height: 1;
}

.hero-proof dd {
  margin: 0.2rem 0 0;
  color: var(--color-silver);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
}

.hero-media {
  min-width: 0;
}

.hero-showcase {
  display: grid;
  gap: var(--space-md);
}

.hero-showcase-main,
.hero-detail-strip figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 249, 0.18);
  background: var(--color-graphite);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
}

.hero-showcase-main {
  aspect-ratio: 1.42;
}

.hero-showcase-main img,
.hero-detail-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-detail-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.hero-detail-strip figure {
  aspect-ratio: 1.28;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(18, 16, 16, 0.16);
  border-top: 1px solid rgba(18, 16, 16, 0.16);
  border-bottom: 1px solid rgba(18, 16, 16, 0.16);
}

.proof-strip div {
  padding: var(--space-lg) max(24px, calc((100vw - 1180px) / 2));
  background: var(--color-surface-clean);
}

.proof-strip strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  line-height: 1;
  text-transform: uppercase;
}

.proof-strip span {
  display: block;
  margin-top: 0.35rem;
  color: var(--color-muted);
  font-weight: 600;
}

.section {
  padding: var(--space-4xl) max(24px, calc((100vw - 1180px) / 2));
  scroll-margin-top: 76px;
}

.section-heading {
  display: flex;
  max-width: 860px;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.section-heading p:not(.section-label) {
  max-width: 58ch;
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-lg);
}

.section-label {
  margin: 0 0 var(--space-sm);
  color: var(--color-flame);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 13.8ch;
}

h2 {
  font-size: clamp(2.45rem, 5vw, 4.35rem);
  max-width: 11.6ch;
  text-transform: uppercase;
}

h3 {
  font-size: var(--text-2xl);
  text-transform: uppercase;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--color-line);
  background: var(--color-line);
  gap: 1px;
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: var(--space-xl);
  background: var(--color-surface-clean);
}

.package-card-featured {
  background: var(--color-carbon);
  color: var(--color-surface-clean);
}

.package-card-featured li,
.package-card-featured .package-topline p {
  color: rgba(255, 253, 249, 0.78);
}

.package-topline {
  min-height: 130px;
  border-bottom: 1px solid currentColor;
}

.package-topline p {
  margin: var(--space-sm) 0 0;
  color: var(--color-flame);
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  line-height: 1;
}

.package-card ul,
.plan-row ul {
  list-style: none;
  padding: 0;
}

.package-card ul {
  display: grid;
  gap: var(--space-sm);
  margin: var(--space-lg) 0 0;
}

.package-card li,
.plan-row li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--color-muted);
  font-weight: 600;
}

.package-card li::before,
.plan-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  background: var(--color-flame);
}

.image-proof-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(var(--space-2xl), 6vw, var(--space-4xl));
  align-items: start;
  background: var(--color-surface-clean);
}

.proof-copy p:not(.section-label) {
  max-width: 44ch;
  margin: var(--space-lg) 0 var(--space-xl);
  color: var(--color-muted);
  font-size: var(--text-lg);
}

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
}

.proof-gallery figure,
.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--color-carbon);
}

.proof-gallery figure {
  display: flex;
  min-height: 0;
  flex-direction: column;
  border: 1px solid var(--color-line);
}

.proof-gallery img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.proof-gallery img {
  height: auto;
  object-fit: contain;
  background: var(--color-carbon);
  transition: none;
}

.proof-card-wide {
  grid-column: 1 / -1;
}

.proof-card-wide img {
  aspect-ratio: 2.24;
}

.proof-card-square img {
  aspect-ratio: 1;
}

.proof-gallery figcaption {
  position: static;
  padding: var(--space-sm) var(--space-md);
  border-top: 1px solid rgba(255, 253, 249, 0.16);
  background: var(--color-carbon);
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

figcaption {
  position: absolute;
  left: var(--space-md);
  bottom: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  background: rgba(7, 6, 6, 0.76);
  color: var(--color-surface-clean);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.plans-section {
  background:
    linear-gradient(135deg, rgba(181, 18, 27, 0.24), rgba(7, 6, 6, 0) 42%),
    var(--color-carbon);
  color: var(--color-surface-clean);
}

.section-heading-light p:not(.section-label) {
  color: var(--color-silver);
}

.plans-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--color-line-dark);
  background: var(--color-line-dark);
}

.plan-row {
  display: grid;
  grid-template-columns: minmax(260px, 280px) minmax(0, 1fr) minmax(230px, 230px);
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-lg);
  background: rgba(255, 253, 249, 0.055);
}

.plan-row h3 {
  font-size: var(--text-xl);
}

.plan-row p {
  margin: var(--space-xs) 0 0;
  color: var(--color-silver);
  font-weight: 700;
}

.plan-row ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--space-lg);
  row-gap: var(--space-sm);
  margin: 0;
}

.plan-row li {
  color: rgba(255, 253, 249, 0.82);
}

.plan-row strong {
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

.coatings-section {
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(320px, 0.46fr);
  gap: clamp(var(--space-2xl), 6vw, var(--space-4xl));
  align-items: center;
  background: var(--color-surface);
}

.coatings-media {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--color-line);
}

.coatings-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coatings-copy p:not(.section-label) {
  margin: var(--space-lg) 0;
  color: var(--color-muted);
  font-size: var(--text-lg);
}

.coating-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: var(--space-xl) 0;
  border: 1px solid var(--color-line);
  background: var(--color-line);
}

.coating-options article {
  padding: var(--space-lg);
  background: var(--color-surface-clean);
}

.coating-options h3 {
  color: var(--color-flame);
}

.coating-options p {
  margin: var(--space-xs) 0 0;
  color: var(--color-muted);
  font-weight: 700;
}

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

.gallery-heading {
  display: flex;
  justify-content: space-between;
  gap: var(--space-xl);
  align-items: end;
  margin-bottom: var(--space-2xl);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: var(--space-md);
}

.gallery-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(var(--space-2xl), 6vw, var(--space-4xl));
  background: var(--color-carbon);
  color: var(--color-surface-clean);
}

.contact-copy p:not(.section-label) {
  max-width: 48ch;
  margin: var(--space-lg) 0;
  color: var(--color-silver);
  font-size: var(--text-lg);
}

.contact-copy,
.booking-form {
  min-width: 0;
}

address {
  display: grid;
  gap: var(--space-sm);
  font-style: normal;
}

address a,
address span {
  color: var(--color-surface-clean);
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

address a:hover,
address a:focus-visible {
  color: #ff3844;
}

.booking-form {
  display: grid;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: rgba(255, 253, 249, 0.06);
  border: 1px solid var(--color-line-dark);
}

.form-row {
  display: grid;
  gap: var(--space-xs);
}

label {
  color: var(--color-silver);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.76rem 0.86rem;
  border: 1px solid rgba(255, 253, 249, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(7, 6, 6, 0.5);
  color: var(--color-surface-clean);
}

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

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
.nav-action:focus-visible,
.site-menu a:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid #ff3844;
  outline-offset: 3px;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--color-silver);
  font-weight: 700;
}

.site-footer {
  background: var(--color-carbon-deep);
  color: var(--color-silver);
  border-top: 1px solid var(--color-line-dark);
}

.footer-main,
.footer-bottom {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 0.95fr) minmax(360px, 1.25fr) minmax(260px, 0.9fr);
  gap: clamp(var(--space-xl), 4vw, var(--space-3xl));
  align-items: start;
  padding: var(--space-xl) 0;
}

.footer-brand,
.footer-contact,
.footer-nav div {
  display: grid;
  align-content: start;
  gap: var(--space-sm);
}

.footer-brand {
  grid-template-columns: 154px minmax(0, 1fr);
  align-items: center;
  column-gap: var(--space-md);
}

.footer-brand img {
  grid-row: 1 / 3;
  width: 154px;
  margin-bottom: 0;
}

.footer-brand p,
.footer-bottom p {
  margin: 0;
}

.footer-brand p {
  max-width: none;
  font-size: 0.95rem;
  line-height: 1.45;
}

.footer-phone {
  width: fit-content;
  margin-top: 0;
  color: var(--color-surface-clean);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xl);
}

.footer-title {
  margin: 0 0 var(--space-xs);
  color: var(--color-flame);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  color: rgba(255, 253, 249, 0.84);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.footer-nav a {
  width: fit-content;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #ff3844;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: var(--space-sm);
  padding: 0 var(--space-md);
  border: 1px solid var(--color-flame);
  background: rgba(181, 18, 27, 0.22);
  color: var(--color-surface-clean);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--space-xl);
  padding: 0.8rem 0;
  border-top: 1px solid var(--color-line-dark);
  color: rgba(255, 253, 249, 0.62);
  font-size: var(--text-sm);
  line-height: 1.3;
}

.footer-bottom a {
  color: var(--color-surface-clean);
  font-weight: 800;
}

@media (max-width: 1040px) {
  .nav-shell {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-line-dark);
    background: transparent;
    color: var(--color-surface-clean);
  }

  .menu-toggle span:not(.visually-hidden) {
    width: 22px;
    height: 2px;
    background: currentColor;
  }

  .site-menu {
    position: fixed;
    inset: 77px 0 auto;
    display: none;
    min-height: calc(100vh - 77px);
    padding: var(--space-2xl) 24px;
    flex-direction: column;
    justify-content: start;
    background: rgba(7, 6, 6, 0.98);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    font-size: var(--text-2xl);
  }

  .nav-action {
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media,
  .hero-proof {
    grid-row: auto;
    grid-column: auto;
  }

  .hero-copy {
    max-width: 760px;
  }

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

  .image-proof-section,
  .coatings-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

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

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

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

  .plan-row strong {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    width: calc(100% - 24px);
    min-height: 68px;
    grid-template-columns: auto auto;
    gap: var(--space-md);
  }

  .brand-link {
    width: 118px;
    height: 68px;
  }

  .nav-action {
    display: none;
  }

  .site-menu {
    inset: 69px 0 auto;
    min-height: calc(100vh - 69px);
    padding: var(--space-xl) 20px;
  }

  .hero {
    padding: 1.75rem 20px var(--space-3xl);
  }

  .hero-logo {
    display: none;
  }

  h1 {
    font-size: clamp(2.35rem, 10.8vw, 2.85rem);
    max-width: 100%;
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    margin-top: var(--space-lg);
  }

  .proof-strip div {
    padding: var(--space-lg) 20px;
  }

  .section {
    padding: 3.25rem 20px;
  }

  .section-heading {
    margin-bottom: var(--space-xl);
  }

  h2 {
    max-width: 12ch;
  }

  .package-grid,
  .coating-options {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: auto;
  }

  .package-topline {
    min-height: auto;
    padding-bottom: var(--space-lg);
  }

  .proof-gallery {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .proof-gallery figure {
    min-height: 0;
  }

  .gallery-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .coatings-media {
    height: auto;
  }

  .site-footer {
    padding: 0;
  }
}

@media (max-width: 420px) {
  .hero-detail-strip {
    grid-template-columns: 1fr;
  }

  .button {
    font-size: var(--text-base);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.site-menu a[aria-current="page"]::after {
  right: 0;
}

.nav-action[aria-current="page"] {
  background: var(--color-flame);
}

.page-hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 0.76fr);
  gap: clamp(var(--space-xl), 5vw, var(--space-4xl));
  align-items: center;
  padding: clamp(var(--space-2xl), 6vw, 5rem) max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(120deg, rgba(7, 6, 6, 0.97), rgba(18, 16, 16, 0.9) 56%, rgba(181, 18, 27, 0.28)),
    var(--color-carbon);
  color: var(--color-surface-clean);
  overflow: hidden;
}

.page-hero-copy {
  max-width: 720px;
}

.page-hero h1 {
  max-width: 13.8ch;
  font-size: clamp(3rem, 5vw, 4.65rem);
}

.page-hero-copy > p {
  max-width: 58ch;
  margin: var(--space-lg) 0 0;
  color: rgba(255, 253, 249, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.page-hero-media {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 249, 0.18);
  background: var(--color-graphite);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compact-heading h2 {
  max-width: 13.5ch;
}

.add-ons-section,
.about-story-section,
.gallery-page-section,
.shop-section {
  background: var(--color-surface-clean);
}

.addon-grid,
.reputation-grid,
.about-values,
.shop-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--color-line);
  background: var(--color-line);
}

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

.addon-grid article,
.reputation-grid article,
.about-values article,
.product-card {
  background: var(--color-surface-clean);
}

.addon-grid article {
  min-height: 240px;
  padding: var(--space-lg);
}

.addon-grid h3 {
  font-size: var(--text-xl);
}

.addon-grid p,
.product-card span {
  margin: var(--space-sm) 0;
  color: var(--color-flame);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.addon-grid span,
.about-values p,
.product-card p,
.contact-note p,
.shop-intro p {
  color: var(--color-muted);
  font-weight: 600;
}

.mini-price-list {
  display: grid;
  gap: var(--space-sm);
  margin: 0 0 var(--space-xl);
}

.mini-price-list span {
  padding-left: 1rem;
  border-left: 4px solid var(--color-flame);
  color: var(--color-muted);
  font-weight: 700;
}

.booking-feature-section,
.contact-page-section,
.about-story-section,
.review-proof-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(var(--space-2xl), 6vw, var(--space-4xl));
  align-items: start;
}

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

.booking-intro p:not(.section-label),
.review-proof-copy p:not(.section-label),
.about-story-copy p,
.contact-details .contact-note {
  max-width: 48ch;
  color: var(--color-muted);
  font-size: var(--text-lg);
}

.booking-contact-block,
.contact-note {
  display: grid;
  gap: var(--space-xs);
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  border-left: 5px solid var(--color-flame);
  background: var(--color-surface-clean);
}

.booking-contact-block strong,
.contact-note strong {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  line-height: 1;
  text-transform: uppercase;
}

.booking-contact-block a {
  color: var(--color-carbon);
  font-weight: 800;
  text-decoration: none;
}

.booking-workspace {
  display: grid;
  gap: var(--space-lg);
}

.service-picker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--color-line);
  background: var(--color-line);
}

.service-choice {
  min-height: 118px;
  padding: var(--space-md);
  border: 0;
  border-radius: 0;
  background: var(--color-surface-clean);
  color: var(--color-carbon);
  text-align: left;
  cursor: pointer;
}

.service-choice span,
.service-choice strong {
  display: block;
}

.service-choice span {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.service-choice strong {
  margin-top: var(--space-sm);
  color: var(--color-flame);
}

.service-choice.is-selected,
.service-choice:hover,
.service-choice:focus-visible {
  background: var(--color-carbon);
  color: var(--color-surface-clean);
}

.service-choice.is-selected strong,
.service-choice:hover strong,
.service-choice:focus-visible strong {
  color: #ff3844;
}

.booking-page-form,
.contact-page-form,
.merch-form {
  background: var(--color-carbon);
  color: var(--color-surface-clean);
}

.form-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: var(--space-md);
}

.gallery-page-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--color-carbon);
}

.gallery-page-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-page-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-tall {
  grid-row: span 2;
}

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

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

.reputation-grid article {
  min-height: 220px;
  padding: var(--space-xl);
}

.reputation-grid strong {
  display: block;
  color: var(--color-flame);
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
}

.reputation-grid span {
  display: block;
  margin-top: var(--space-md);
  color: var(--color-muted);
  font-weight: 800;
  text-transform: uppercase;
}

.review-proof-section {
  background: var(--color-surface-clean);
  align-items: center;
}

.about-story-section {
  align-items: stretch;
}

.about-values {
  grid-template-columns: 1fr;
}

.about-values article {
  padding: var(--space-xl);
}

.service-area-section {
  background:
    linear-gradient(135deg, rgba(181, 18, 27, 0.22), rgba(7, 6, 6, 0) 42%),
    var(--color-carbon);
  color: var(--color-surface-clean);
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.service-area-list span {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-line-dark);
  background: rgba(255, 253, 249, 0.06);
  color: var(--color-surface-clean);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.shop-hero {
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.58fr);
}

.shop-hero-lockup {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: var(--space-xl);
  border: 1px solid rgba(255, 253, 249, 0.18);
  background:
    linear-gradient(135deg, rgba(181, 18, 27, 0.24), rgba(7, 6, 6, 0.6)),
    var(--color-carbon-deep);
}

.shop-hero-lockup img {
  width: min(430px, 100%);
}

.shop-intro {
  max-width: 780px;
  margin-bottom: var(--space-2xl);
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(320px, 0.32fr);
  gap: var(--space-xl);
  align-items: start;
}

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

.product-card {
  display: grid;
  gap: var(--space-md);
  min-height: 430px;
  padding: var(--space-lg);
}

.product-mark {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: var(--space-md);
  border: 1px solid var(--color-line);
  background: var(--color-surface);
}

.product-mark-dark {
  background: var(--color-carbon);
}

.product-mark-red {
  background:
    linear-gradient(135deg, rgba(181, 18, 27, 0.86), rgba(7, 6, 6, 0.94)),
    var(--color-flame-dark);
}

.product-mark img {
  max-height: 150px;
  object-fit: contain;
}

.product-card .button {
  align-self: end;
  width: 100%;
}

.cart-panel {
  position: sticky;
  top: 100px;
  padding: var(--space-xl);
  background: var(--color-carbon);
  color: var(--color-surface-clean);
}

.cart-panel h2 {
  max-width: none;
  font-size: var(--text-3xl);
}

.cart-items {
  display: grid;
  gap: var(--space-sm);
  min-height: 62px;
  margin: var(--space-lg) 0;
  padding: 0;
  list-style: none;
}

.cart-items li {
  padding: var(--space-sm);
  border: 1px solid var(--color-line-dark);
  color: var(--color-silver);
  font-weight: 700;
}

.contact-page-section {
  background: var(--color-carbon);
  color: var(--color-surface-clean);
}

.contact-details address {
  margin-top: var(--space-xl);
}

.contact-details .contact-note {
  background: rgba(255, 253, 249, 0.06);
  color: var(--color-surface-clean);
}

.contact-details .contact-note p {
  color: var(--color-silver);
}

@media (max-width: 1120px) {
  .addon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-hero,
  .shop-hero,
  .booking-feature-section,
  .contact-page-section,
  .about-story-section,
  .review-proof-section,
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    position: static;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
    grid-template-columns: 154px minmax(0, 1fr) auto;
    align-items: center;
  }

  .footer-brand img {
    margin-bottom: 0;
  }
}

@media (max-width: 860px) {
  .service-picker,
  .reputation-grid,
  .gallery-page-grid,
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-page-grid {
    grid-auto-rows: 240px;
  }

  .gallery-wide,
  .gallery-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 720px) {
  .page-hero {
    min-height: auto;
    padding: 1.75rem 20px 3.25rem;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10.8vw, 2.85rem);
  }

  .page-hero-media,
  .shop-hero-lockup {
    min-height: 260px;
  }

  .page-hero-copy > p {
    font-size: 1rem;
  }

  .form-grid-two,
  .addon-grid,
  .service-picker,
  .reputation-grid,
  .gallery-page-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .addon-grid article,
  .reputation-grid article,
  .product-card {
    min-height: auto;
  }

  .booking-form,
  .cart-panel {
    padding: var(--space-lg);
  }

  .service-choice {
    min-height: 88px;
  }

  .product-mark {
    min-height: 140px;
  }

  .footer-main,
  .footer-bottom {
    width: calc(100% - 40px);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
  }

  .footer-brand {
    grid-column: auto;
    grid-template-columns: 132px minmax(0, 1fr);
    align-items: center;
    gap: var(--space-md);
  }

  .footer-brand img {
    width: 132px;
    margin-bottom: 0;
  }

  .footer-brand p {
    grid-column: 1 / -1;
    max-width: none;
  }

  .footer-phone {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-nav {
    gap: var(--space-md);
  }

  .footer-nav a,
  .footer-contact a,
  .footer-contact span {
    min-height: 30px;
  }

  .footer-bottom {
    display: grid;
    gap: var(--space-xs);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
