:root {
  --black: #111111;
  --deep-black: #080808;
  --yellow: #f5c400;
  --yellow-hover: #dcaa00;
  --warm: #f5f2ea;
  --white: #ffffff;
  --text: #272727;
  --muted: #68645d;
  --border: #ddd7ca;
  --success: #166534;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
  --shadow: 0 18px 55px rgba(17, 17, 17, 0.12);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  margin-bottom: var(--space-sm);
  color: var(--black);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.6rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

h3 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}

p {
  max-width: 65ch;
  margin-bottom: var(--space-sm);
  text-wrap: pretty;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

section {
  padding-block: var(--space-xl);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.text-center {
  text-align: center;
}

.text-center p,
.text-center h1,
.text-center h2,
.text-center h3 {
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: var(--space-sm);
  left: var(--space-sm);
  z-index: 1000;
  padding: var(--space-xs) var(--space-sm);
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  transform: translateY(-200%);
}

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

.eyebrow,
.mini-label {
  margin-bottom: var(--space-xs);
  color: var(--yellow-hover);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xs) var(--space-sm);
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.primary-nav a:focus-visible,
.menu-toggle:focus-visible,
.cookie-notice button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.button-primary {
  background: var(--yellow);
  color: var(--black);
}

.button-primary:hover {
  background: var(--yellow-hover);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.button-dark:hover {
  background: var(--deep-black);
}

.button-light {
  border-color: var(--white);
  color: var(--white);
}

.button-light:hover {
  background: var(--white);
  color: var(--black);
}

.button-full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--deep-black);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.25);
}

.nav-shell {
  width: 100%;
  max-width: 1100px;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--white);
  text-decoration: none;
}

.brand-crop {
  position: relative;
  width: 158px;
  height: 48px;
  display: block;
  overflow: hidden;
  background: var(--black);
}

.brand-crop img {
  position: absolute;
  inset: -6% -3%;
  width: 106%;
  height: 114%;
  object-fit: cover;
}

.brand-location {
  display: none;
  color: #b9b9b9;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.primary-nav a {
  color: #dedede;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:hover {
  color: var(--white);
}

.primary-nav .nav-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-inline: var(--space-sm);
  border-radius: 5px;
  background: var(--yellow);
  color: var(--black);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 25px;
  height: 2px;
  display: block;
  background: var(--white);
}

.hero {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: var(--space-lg);
}

.hero h1 {
  color: var(--white);
}

.hero h1 span {
  display: block;
  color: var(--yellow);
}

.hero-lede {
  color: #d4d4d4;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-media {
  position: relative;
  min-height: 600px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: var(--space-md) calc(var(--space-md) * -1) calc(var(--space-md) * -1) var(--space-md);
  z-index: 0;
  border: 2px solid var(--yellow);
}

.hero-media img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.hero-stamp {
  position: absolute;
  right: calc(var(--space-md) * -1);
  bottom: calc(var(--space-md) * -1);
  z-index: 2;
  width: 148px;
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: var(--space-sm);
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  transform: rotate(-2deg);
}

.hero-stamp strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}

.hero-stamp span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  margin: var(--space-md) 0 0;
  padding: 0;
  color: #d8d8d8;
  font-size: 0.84rem;
  font-weight: 700;
  list-style: none;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: var(--space-xs);
  background: var(--yellow);
}

.trust-bar {
  background: var(--yellow);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-right: 1px solid rgba(17, 17, 17, 0.24);
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid span {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.trust-grid strong {
  max-width: 16ch;
  font-size: 0.95rem;
  line-height: 1.35;
}

.estimate-section {
  background: var(--warm);
}

.section-heading {
  max-width: 720px;
  margin-bottom: var(--space-lg);
}

.section-heading.text-center {
  margin-inline: auto;
}

.estimate-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  gap: var(--space-md);
  align-items: start;
}

.calculator-card,
.quote-card {
  padding: var(--space-md);
  border: 1px solid var(--border);
  border-top: 5px solid var(--yellow);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.card-heading {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.calculator-card .card-heading,
.quote-card .card-heading {
  justify-content: center;
  text-align: center;
}

.card-heading h3,
.card-heading p {
  margin-bottom: 0;
}

.card-number {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  background: var(--black);
  color: var(--yellow);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
}

.field-group {
  margin-bottom: var(--space-sm);
}

.field-group label {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--black);
  font-size: 0.88rem;
  font-weight: 800;
}

.field-group label span {
  color: var(--muted);
  font-weight: 500;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 48px;
  padding: var(--space-xs) var(--space-sm);
  border: 1.5px solid #bdb7aa;
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
}

.field-group select {
  width: 100%;
  min-height: 48px;
  padding: var(--space-xs) var(--space-sm);
  border: 1.5px solid #bdb7aa;
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
}

.field-group textarea {
  resize: vertical;
}

.estimate-result {
  min-height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-block: var(--space-md);
  padding: var(--space-md);
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.result-label,
.result-note {
  color: #cfcfcf;
  font-size: 0.78rem;
  font-weight: 700;
}

.estimate-result strong {
  display: block;
  margin-block: var(--space-xs);
  color: var(--yellow);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1;
}

.estimate-includes {
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  background: var(--warm);
}

.estimate-includes ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xs) var(--space-sm);
  margin: 0;
  padding: 0;
  list-style: none;
}

.estimate-includes li {
  font-size: 0.84rem;
  font-weight: 700;
}

.estimate-includes li::before {
  content: "✓";
  margin-right: var(--space-xs);
  color: var(--success);
}

.other-options {
  border-top: 1px solid var(--border);
  padding-top: var(--space-sm);
}

.other-options summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: 800;
  text-align: center;
  cursor: pointer;
}

.other-options p {
  margin-inline: auto;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-note,
.estimate-disclaimer {
  color: var(--muted);
  font-size: 0.78rem;
}

.form-note {
  margin: var(--space-sm) auto 0;
  text-align: center;
}

.form-note a {
  font-weight: 800;
}

.estimate-disclaimer {
  margin: var(--space-md) auto 0;
}

.services-section {
  background: var(--white);
}

.faq-section {
  background: var(--black);
  color: var(--white);
}

.faq-section h2 {
  color: var(--white);
}

.faq-section .section-heading > p:last-child {
  color: #cfcfcf;
}

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

.faq-item {
  padding: var(--space-sm);
  border: 1px solid #343434;
  border-top: 4px solid var(--yellow);
  background: #181818;
}

.faq-item summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--white);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
}

.faq-item p {
  margin: var(--space-sm) 0 0;
  color: #cfcfcf;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

.service-card {
  min-height: 290px;
  padding: var(--space-md);
  border-top: 4px solid var(--yellow);
  background: var(--black);
  color: #d6d6d6;
}

.service-card span {
  color: var(--yellow);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.service-card h3 {
  margin-top: var(--space-lg);
  color: var(--white);
}

.transformation-section {
  overflow: hidden;
  background: var(--black);
  color: #d6d6d6;
}

.transformation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: var(--space-lg);
}

.transformation-section h2 {
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
  color: var(--yellow);
  font-weight: 800;
  text-decoration: none;
}

.comparison {
  min-width: 0;
}

.comparison-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 4px solid var(--white);
  background: #333;
  box-shadow: var(--shadow);
}

.comparison-frame > img,
.comparison-after,
.comparison-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.comparison-after {
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison-after img {
  width: 100%;
}

.comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 3px;
  background: var(--yellow);
  transform: translateX(-50%);
}

.comparison-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--black);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.comparison-label {
  position: absolute;
  top: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  background: rgba(8, 8, 8, 0.84);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.label-before {
  right: var(--space-sm);
}

.label-after {
  left: var(--space-sm);
}

.comparison-range {
  width: 100%;
  height: 44px;
  margin-top: var(--space-sm);
  accent-color: var(--yellow);
  cursor: ew-resize;
}

.project-pairs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.project-pair {
  margin-block: 0;
  background: #171717;
}

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

.pair-images > div {
  position: relative;
  min-width: 0;
}

.pair-images img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pair-images > div:first-child img {
  object-position: center 58%;
}

.pair-images > div:last-child img {
  object-position: center 50%;
}

.pair-images span {
  position: absolute;
  top: var(--space-xs);
  left: var(--space-xs);
  z-index: 1;
  padding: var(--space-xs);
  background: rgba(8, 8, 8, 0.86);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.project-pair figcaption {
  padding: var(--space-sm);
  color: var(--white);
  font-weight: 800;
}

.process-section {
  background: var(--warm);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: var(--space-lg);
}

.process-image {
  position: relative;
}

.process-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 54% center;
}

.process-image span {
  position: absolute;
  right: calc(var(--space-sm) * -1);
  bottom: calc(var(--space-sm) * -1);
  max-width: 220px;
  padding: var(--space-sm);
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  line-height: 1.35;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: var(--space-sm);
  padding-block: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.process-list li:first-child {
  padding-top: 0;
}

.process-list li > span {
  color: var(--yellow-hover);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: var(--space-xs);
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-section {
  background: var(--white);
}

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

.gallery-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery-main img {
  object-position: center 47%;
}

.gallery-secondary img {
  object-position: 54% center;
}

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

.gallery-grid figcaption {
  position: absolute;
  right: var(--space-sm);
  bottom: var(--space-sm);
  left: var(--space-sm);
  padding: var(--space-sm);
  background: rgba(8, 8, 8, 0.82);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-section {
  background: var(--yellow);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  align-items: center;
  gap: var(--space-lg);
}

.about-portrait {
  padding: var(--space-sm);
  background: var(--black);
  transform: rotate(-1.25deg);
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
}

.about-copy .eyebrow {
  color: var(--black);
}

.about-copy p {
  color: #2e2a20;
}

.testimonial-section {
  background: var(--warm);
}

.testimonial-section .section-heading {
  margin-inline: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: var(--space-md);
}

.testimonial-shell {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  padding: var(--space-lg);
  border-left: 8px solid var(--yellow);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-mark {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-md);
  color: var(--yellow);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
}

.testimonial-shell blockquote {
  width: 100%;
  min-width: 0;
  margin: 0;
}

.testimonial-shell blockquote > p {
  max-width: 22ch;
  margin-bottom: var(--space-md);
  color: var(--black);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
}

.testimonial-shell footer {
  display: flex;
  flex-direction: column;
}

.testimonial-shell footer span {
  color: var(--muted);
  font-size: 0.82rem;
}

.review-proof {
  min-width: 0;
  margin: 0;
  padding: var(--space-xs);
  background: var(--white);
  box-shadow: var(--shadow);
}

.review-proof img {
  width: 100%;
  height: auto;
}

.review-proof figcaption {
  padding: var(--space-xs) var(--space-xs) 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.review-actions {
  display: flex;
  justify-content: center;
  margin-top: var(--space-md);
}

.final-cta {
  background: var(--black);
  color: #d3d3d3;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: center;
  gap: var(--space-lg);
}

.final-cta h2 {
  color: var(--white);
}

.final-cta .button-row {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  padding-block: var(--space-lg) var(--space-md);
  background: var(--deep-black);
  color: #aaa;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.75fr;
  gap: var(--space-lg);
}

.footer-logo {
  margin-bottom: var(--space-sm);
}

.footer-grid h2 {
  margin-bottom: var(--space-sm);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  min-height: 32px;
  color: #cfcfcf;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid #292929;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.78rem;
}

.cookie-notice {
  position: fixed;
  right: var(--space-sm);
  bottom: var(--space-sm);
  left: var(--space-sm);
  z-index: 200;
  max-width: 760px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-inline: auto;
  padding: var(--space-sm);
  border: 1px solid #3a3a3a;
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice p {
  margin-bottom: 0;
  font-size: 0.78rem;
}

.cookie-notice a {
  color: var(--yellow);
}

.cookie-notice button {
  min-width: 74px;
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.legal-page {
  background: var(--warm);
}

.legal-header {
  padding-block: var(--space-md);
  background: var(--deep-black);
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.legal-header a {
  color: var(--white);
  font-weight: 800;
}

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  font-size: clamp(3rem, 7vw, 5rem);
}

.legal-content h2 {
  margin-top: var(--space-md);
  font-size: 2rem;
}

.legal-content li,
.legal-content p {
  max-width: 70ch;
}

.thank-you {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: var(--space-md);
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.thank-you-card {
  max-width: 680px;
  padding: var(--space-lg);
  border-top: 7px solid var(--yellow);
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow);
}

.thank-you-card p {
  margin-inline: auto;
}

.thank-you-card .button-row {
  justify-content: center;
}

@media (min-width: 1000px) {
  .brand-location {
    display: inline;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: var(--space-md);
    background: var(--deep-black);
  }

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

  .primary-nav a {
    min-height: 56px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #292929;
    font-size: 1rem;
  }

  .primary-nav .nav-call {
    justify-content: center;
    margin-top: var(--space-sm);
    border-bottom: 0;
  }

  .hero-grid,
  .transformation-grid,
  .process-grid,
  .about-grid,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 480px;
  }

  .hero-copy .button-row {
    justify-content: center;
  }

  .estimate-grid {
    grid-template-columns: 1fr;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
    min-height: auto;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .project-pairs {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    min-height: 420px;
  }

  .about-portrait {
    max-width: 540px;
    margin-inline: auto;
  }

  .final-cta .button-row {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  h2 {
    font-size: 2.5rem;
  }

  .container,
  .nav-shell {
    padding-inline: var(--space-sm);
  }

  section {
    padding-block: var(--space-lg);
  }

  .brand-crop {
    width: 138px;
    height: 42px;
  }

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

  .hero-media {
    min-height: 390px;
    margin-right: var(--space-sm);
  }

  .hero-media::before {
    inset: var(--space-sm) calc(var(--space-sm) * -1) calc(var(--space-sm) * -1) var(--space-sm);
  }

  .hero-stamp {
    right: calc(var(--space-sm) * -1);
    bottom: calc(var(--space-sm) * -1);
    width: 122px;
    min-height: 92px;
  }

  .hero-stamp strong {
    font-size: 2rem;
  }

  .hero-points {
    flex-direction: column;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .section-heading,
  .hero-copy,
  .transformation-copy,
  .about-copy,
  .final-cta-grid > div:first-child {
    text-align: center;
  }

  .section-heading p,
  .section-heading h2,
  .hero-copy p,
  .hero-copy h1,
  .transformation-copy p,
  .transformation-copy h2,
  .about-copy p,
  .about-copy h2,
  .final-cta-grid p,
  .final-cta-grid h2 {
    margin-inline: auto;
  }

  .final-cta .button-row {
    justify-content: center;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div {
    min-height: 76px;
    padding: var(--space-sm);
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.24);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .calculator-card,
  .quote-card {
    padding: var(--space-sm);
  }

  .calculator-card .field-group {
    text-align: center;
  }

  .calculator-card .field-group input {
    text-align: center;
  }

  .field-row,
  .faq-grid,
  .services-grid,
  .estimate-includes ul,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:last-child {
    min-height: 245px;
    grid-column: auto;
  }

  .comparison-frame {
    aspect-ratio: 4 / 3;
  }

  .process-image span {
    right: var(--space-xs);
    bottom: var(--space-xs);
  }

  .gallery-grid img {
    min-height: 340px;
  }

  .about-portrait {
    transform: none;
  }

  .testimonial-shell {
    padding: var(--space-md);
  }

  .testimonial-shell blockquote > p {
    max-width: none;
    font-size: 2.25rem;
    overflow-wrap: anywhere;
    text-align: center;
  }

  .testimonial-shell footer {
    text-align: center;
  }

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

  .quote-mark {
    display: none;
  }

  .footer-bottom,
  .cookie-notice {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-notice button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
