/*
Theme Name: Tapijt en Gordijnenshop
Theme URI: https://tapijtengordijnshop.nl
Author: Webdesign Agency
Description: Snel en conversiegericht maatwerkthema voor Tapijt en Gordijnenshop in Emmen.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 8.0
Text Domain: tapijt-gordijnshop
*/

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --ink: #171847;
  --ink-deep: #0e0f2f;
  --indigo: #2d318b;
  --indigo-bright: #3c42a5;
  --accent: #f1c84b;
  --accent-dark: #d1a62b;
  --cream: #f6f2ea;
  --sand: #e5dac9;
  --paper: #fffdf9;
  --white: #ffffff;
  --text: #20212a;
  --muted: #696970;
  --line: #ddd7cf;
  --success: #176547;
  --error: #a12f2f;
  --shadow-sm: 0 10px 30px rgba(14, 15, 47, 0.1);
  --shadow-lg: 0 28px 80px rgba(14, 15, 47, 0.22);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Trebuchet MS", sans-serif;
  --shell: 1280px;
  --section-space: clamp(4.5rem, 8vw, 8rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open {
  overflow: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

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

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  overflow-wrap: break-word;
  word-break: normal;
}

p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
  text-wrap: balance;
}

p {
  margin: 0 0 1.25rem;
}

address {
  font-style: normal;
}

.site-shell {
  width: min(calc(100% - 2.5rem), var(--shell));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  transform: translateY(-160%);
  color: var(--white);
  background: var(--ink);
  font-weight: 700;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--indigo);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 3px;
  flex: 0 0 auto;
  background: var(--accent);
  content: "";
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.85rem 1.45rem;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button--primary {
  color: var(--ink-deep);
  background: var(--accent);
  border-color: var(--accent);
}

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

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

.button--dark:hover {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

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

.button--outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
}

.button--outline-light:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button--small {
  min-height: 46px;
  padding-inline: 1.1rem;
  font-size: 0.74rem;
}

.button--full {
  width: 100%;
}

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

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  color: var(--indigo);
  font-size: 1.35em;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link--light {
  color: var(--white);
}

.text-link--light span {
  color: var(--accent);
}

/* Header */
.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(14, 15, 47, 0.08);
  background: var(--white);
}

.utility-bar {
  color: var(--white);
  background: var(--ink-deep);
  font-size: 0.74rem;
}

.utility-bar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.utility-bar p {
  margin: 0;
}

.utility-bar p span {
  margin-left: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

.utility-bar nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.utility-bar a {
  text-decoration: none;
}

.utility-bar a:hover {
  color: var(--accent);
}

.header-main {
  min-height: 94px;
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3rem);
}

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

.brand img {
  width: 205px;
  max-height: 78px;
  object-fit: contain;
}

.primary-navigation,
.primary-navigation ul {
  min-width: 0;
}

.primary-navigation ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 2.15rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent);
  content: "";
  transition: transform 180ms ease;
}

.primary-navigation a:hover::after,
.primary-navigation .current-menu-item > a::after,
.primary-navigation .current_page_item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.phone-link {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  line-height: 1.15;
  text-align: right;
  text-decoration: none;
}

.phone-link span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-link strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.015em;
}

.menu-toggle {
  display: none;
  min-width: 68px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 0;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-toggle__icon {
  display: grid;
  width: 22px;
  gap: 4px;
}

.menu-toggle__icon span {
  height: 2px;
  background: currentColor;
}

.product-navigation {
  color: var(--white);
  background: var(--indigo);
}

.product-navigation__inner {
  min-height: 50px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: stretch;
}

.product-navigation a {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 0.7rem;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.product-navigation a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.product-navigation a:hover {
  color: var(--ink-deep);
  background: var(--accent);
}

/* Hero */
.hero {
  position: relative;
  min-height: 650px;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

.hero__image,
.hero__veil {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__veil {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(14, 15, 47, 0.97) 0%, rgba(14, 15, 47, 0.9) 38%, rgba(14, 15, 47, 0.5) 68%, rgba(14, 15, 47, 0.28) 100%),
    linear-gradient(0deg, rgba(14, 15, 47, 0.34), transparent 58%);
}

.hero__grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, 500px);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6.5rem);
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.hero__copy,
.quote-card,
.section-heading > *,
.advice-band__grid > *,
.showroom-card > *,
.faq-grid > *,
.product-detail > *,
.contact-grid > *,
.form-page-hero__grid > * {
  min-width: 0;
}

.hero__kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__kicker span {
  width: 2.5rem;
  height: 3px;
  background: var(--accent);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4.35rem, 7.2vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 0.85;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero__copy > p:not(.hero__kicker) {
  max-width: 650px;
  margin-top: 1.7rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.4rem;
  margin: 2rem 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 700;
  list-style: none;
}

.hero__checks li {
  position: relative;
  padding-left: 1.15rem;
}

.hero__checks li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

/* Forms */
.quote-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--text);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.quote-card__heading {
  margin-bottom: 1.35rem;
}

.quote-card__heading h2 {
  color: var(--ink-deep);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 0.94;
}

.quote-card__heading > p:last-child {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.field {
  min-width: 0;
}

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

.field label {
  display: inline-block;
  margin-bottom: 0.38rem;
  color: var(--ink-deep);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.35;
}

.field label > span {
  color: var(--error);
}

.field input:not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  min-height: 49px;
  padding: 0.72rem 0.8rem;
  border: 1px solid #c9c4bc;
  border-radius: 0;
  background: var(--white);
  font-size: 0.9rem;
  line-height: 1.4;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.field input:not([type="checkbox"]):focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--indigo);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(45, 49, 139, 0.15);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem;
}

.checkbox-field input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--indigo);
}

.checkbox-field label {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
}

.checkbox-field a {
  color: var(--indigo);
}

.form-assurance {
  margin: -0.35rem 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.5;
  text-align: center;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-notice {
  margin-bottom: 1.2rem;
  padding: 0.8rem 0.9rem;
  border-left: 4px solid currentColor;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-notice p {
  margin: 0;
}

.form-notice--success {
  color: var(--success);
  background: #eaf6f0;
}

.form-notice--error {
  color: var(--error);
  background: #fbeeee;
}

.quote-card--compact .quote-form {
  gap: 0.7rem 0.8rem;
}

.quote-card--compact .field input:not([type="checkbox"]),
.quote-card--compact .field select {
  min-height: 46px;
  padding-block: 0.62rem;
}

/* Trust strip */
.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

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

.trust-strip__grid > div {
  min-width: 0;
  min-height: 102px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  border-left: 1px solid var(--line);
}

.trust-strip__grid > div:last-child {
  border-right: 1px solid var(--line);
}

.trust-strip strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1;
  text-transform: uppercase;
}

.trust-strip span {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

/* Section headings and cards */
.section-heading {
  margin-bottom: clamp(2.4rem, 5vw, 4.2rem);
}

.section-heading h2 {
  color: var(--ink-deep);
  font-size: clamp(3rem, 5.4vw, 5.4rem);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.6fr);
  align-items: end;
  gap: 3rem;
}

.section-heading--split > p {
  margin: 0 0 0.25rem;
  color: var(--muted);
}

.section-heading--center {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.service-section {
  background:
    radial-gradient(circle at 92% 10%, rgba(241, 200, 75, 0.16), transparent 18rem),
    var(--paper);
}

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

.service-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}

.service-card > a {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.service-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sand);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-card:hover img {
  transform: scale(1.045);
}

.service-card__number {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 56px;
  padding: 0.7rem 0.8rem;
  color: var(--ink-deep);
  background: var(--accent);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.service-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 2.5vw, 2rem);
}

.service-card h3 {
  color: var(--ink);
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  text-transform: uppercase;
}

.service-card p {
  margin: 0.85rem 0 1.45rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.service-card__link {
  margin-top: auto;
  color: var(--indigo);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Advice band */
.advice-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%) 0 0 / 24px 24px,
    var(--ink);
}

.advice-band::after {
  position: absolute;
  top: -12rem;
  right: -10rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(241, 200, 75, 0.2);
  border-radius: 50%;
  content: "";
}

.advice-band__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.advice-band__image-wrap {
  position: relative;
}

.advice-band__image-wrap > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 20px 20px 0 var(--indigo-bright);
}

.advice-band__badge {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 150px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  color: var(--ink-deep);
  background: var(--accent);
  text-align: center;
  transform: rotate(-4deg);
}

.advice-band__badge strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.advice-band__badge span {
  margin-top: 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
}

.advice-band h2 {
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.advice-band__copy > p:not(.eyebrow) {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.76);
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.7rem 0 2rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 16px;
  height: 16px;
  border: 5px solid var(--accent);
  border-radius: 50%;
  content: "";
}

.check-list--dark li::before {
  border-color: var(--indigo);
}

/* Process */
.process-section {
  background: var(--cream);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.process-list > li {
  min-width: 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.8rem clamp(1.2rem, 2.8vw, 2.6rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-list > li:last-child {
  border-right: 1px solid var(--line);
}

.process-list > li > span {
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 0.85;
}

.process-list h3 {
  color: var(--ink);
  font-size: 1.65rem;
  text-transform: uppercase;
}

.process-list p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

/* Showroom */
.showroom-section {
  background:
    linear-gradient(90deg, transparent 50%, var(--cream) 50%),
    var(--paper);
}

.showroom-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.showroom-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2.4rem, 5vw, 5rem);
}

.showroom-card h2 {
  color: var(--ink-deep);
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.showroom-card p:not(.eyebrow) {
  margin-top: 1.2rem;
  color: var(--muted);
}

.showroom-card address {
  margin-bottom: 1.7rem;
  color: var(--ink);
}

.showroom-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
}

.showroom-card > img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
}

/* FAQ */
.faq-section {
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-intro h2 {
  color: var(--ink-deep);
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.faq-intro > p:not(.eyebrow) {
  margin-top: 1.25rem;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.5rem 3.5rem 1.5rem 0;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.1;
  list-style: none;
  text-transform: uppercase;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  color: var(--white);
  background: var(--indigo);
  content: "+";
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 400;
}

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

.faq-list details p {
  max-width: 760px;
  margin: -0.3rem 3rem 1.5rem 0;
  color: var(--muted);
}

/* Shared page heroes */
.page-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

.page-hero > img,
.page-hero__veil {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero > img {
  object-fit: cover;
}

.page-hero__veil {
  z-index: -1;
  background: linear-gradient(90deg, rgba(14, 15, 47, 0.96), rgba(14, 15, 47, 0.7) 55%, rgba(14, 15, 47, 0.26));
}

.page-hero__content {
  padding-block: 5rem;
}

.page-hero__content h1 {
  max-width: 900px;
  font-size: clamp(4.5rem, 8vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.83;
  text-transform: uppercase;
}

.page-hero__content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 1.5rem 0 2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.page-hero--store > img {
  object-position: center 58%;
}

.anchor-navigation {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.anchor-navigation .site-shell {
  display: flex;
  overflow-x: auto;
  scrollbar-width: thin;
}

.anchor-navigation a {
  min-height: 58px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.anchor-navigation a:first-child {
  border-left: 1px solid var(--line);
}

.anchor-navigation a:hover {
  background: var(--cream);
}

.product-details {
  background: var(--cream);
}

.product-details__list {
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
}

.product-detail {
  scroll-margin-top: 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.product-detail:nth-child(even) .product-detail__media {
  order: 2;
}

.product-detail__media {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: var(--sand);
}

.product-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__media > span {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 1rem 1.2rem;
  color: var(--ink-deep);
  background: var(--accent);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.product-detail__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.product-detail__content h2 {
  color: var(--ink-deep);
  font-size: clamp(3.6rem, 6vw, 6.2rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.product-detail__content > p:not(.eyebrow) {
  margin-top: 1.25rem;
  color: var(--muted);
}

/* Form page and contact */
.form-page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 0 100%, rgba(60, 66, 165, 0.9), transparent 36rem),
    var(--ink-deep);
}

.form-page-hero::after {
  position: absolute;
  top: -15rem;
  right: -12rem;
  width: 40rem;
  height: 40rem;
  border: 1px solid rgba(241, 200, 75, 0.18);
  border-radius: 50%;
  content: "";
}

.form-page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.74fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.form-page-hero__intro h1 {
  font-size: clamp(4.5rem, 7vw, 7.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.83;
  text-transform: uppercase;
}

.form-page-hero__intro > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.78);
}

.form-page-benefits {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.form-page-benefits li {
  display: grid;
  grid-template-columns: minmax(140px, 0.45fr) minmax(0, 1fr);
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.form-page-benefits strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1;
  text-transform: uppercase;
}

.form-page-benefits span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.form-page-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 1rem;
  padding: 1.1rem 1.25rem;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.form-page-callout span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.form-page-callout a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.quote-steps {
  background: var(--cream);
}

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

.quote-steps__grid > div {
  min-width: 0;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  background: var(--white);
}

.quote-steps__grid span,
.values-grid > div > span {
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
}

.quote-steps__grid h3 {
  margin-top: 1.25rem;
  color: var(--ink);
  font-size: 1.8rem;
  text-transform: uppercase;
}

.quote-steps__grid p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.simple-page-hero {
  color: var(--white);
  background:
    linear-gradient(115deg, transparent 62%, rgba(241, 200, 75, 0.18) 62%),
    var(--ink);
}

.simple-page-hero__grid {
  min-height: 370px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 4rem;
  padding-block: 4.5rem;
}

.simple-page-hero h1 {
  max-width: 850px;
  font-size: clamp(4.4rem, 8vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.83;
  text-transform: uppercase;
}

.simple-page-hero__grid > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.simple-page-hero--compact .site-shell {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-block: 4rem;
}

.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.78fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}

.contact-details {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-card,
.hours-card {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-card h2,
.hours-card h2 {
  color: var(--ink);
  font-size: clamp(2.15rem, 2.7vw, 2.65rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.contact-card address {
  margin: 1.2rem 0 1.4rem;
  color: var(--muted);
}

.contact-line {
  display: flex;
  flex-direction: column;
  padding-block: 0.9rem;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.contact-line span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-line strong {
  color: var(--indigo);
  font-size: 0.95rem;
}

.contact-card .button {
  margin-top: 1.3rem;
}

.opening-hours {
  margin: 1.3rem 0 0;
}

.opening-hours > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding-block: 0.48rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
}

.opening-hours dt {
  font-weight: 700;
}

.opening-hours dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.contact-store-image {
  width: 100%;
  grid-column: 1 / -1;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

/* Story and general content */
.story-section {
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.story-grid h2 {
  color: var(--ink-deep);
  font-size: clamp(3rem, 5vw, 5rem);
  text-transform: uppercase;
}

.values-section {
  padding-block: 0 var(--section-space);
}

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

.values-grid > div {
  min-width: 0;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  background: var(--cream);
}

.values-grid h2 {
  margin-top: 1.2rem;
  color: var(--ink);
  font-size: 2rem;
  text-transform: uppercase;
}

.values-grid p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.content-shell {
  max-width: 840px;
}

.prose {
  color: var(--text);
}

.prose > * + * {
  margin-top: 1.35rem;
}

.prose h2 {
  margin-top: 2.4rem;
  color: var(--ink);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  text-transform: uppercase;
}

.prose h3 {
  margin-top: 2rem;
  color: var(--ink);
  font-size: 2rem;
}

.prose a:not(.button) {
  color: var(--indigo);
}

.prose img,
.entry-image img {
  width: 100%;
  height: auto;
}

.prose--large {
  font-size: 1.04rem;
}

.prose .button {
  margin-top: 1rem;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.post-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.post-card > a {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.post-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream);
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__body {
  padding: 1.5rem;
}

.post-card h2 {
  color: var(--ink);
  font-size: 2rem;
  text-transform: uppercase;
}

.post-card__body > p:last-child {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.pagination {
  margin-top: 2.5rem;
}

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding-block: 6rem;
  background: var(--cream);
}

.not-found__inner {
  max-width: 920px;
  text-align: center;
}

.not-found__inner .eyebrow {
  justify-content: center;
}

.not-found h1 {
  color: var(--ink);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.84;
  text-transform: uppercase;
}

.not-found__inner > p:not(.eyebrow) {
  margin-top: 1.5rem;
  color: var(--muted);
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Footer */
.footer-cta {
  color: var(--white);
  background: var(--indigo);
}

.footer-cta__inner {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.footer-cta h2 {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.75);
  background: var(--ink-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 1fr 0.7fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: 4.5rem;
}

.footer-brand img {
  width: 190px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 330px;
  margin: 1.3rem 0 0;
  font-size: 0.82rem;
}

.footer-grid h2 {
  margin-bottom: 1.2rem;
  color: var(--white);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-grid address,
.footer-grid p,
.footer-grid a {
  font-size: 0.78rem;
}

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

.footer-grid ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li a,
.footer-privacy {
  text-decoration: none;
}

.footer-privacy {
  display: inline-block;
  margin-top: 0.6rem;
}

.opening-hours--compact {
  margin-top: 0;
}

.opening-hours--compact > div {
  border-color: rgba(255, 255, 255, 0.12);
  font-size: 0.7rem;
}

.opening-hours--compact dd {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

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

/* Motion */
@keyframes tgs-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__copy {
  animation: tgs-rise 650ms 80ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero .quote-card {
  animation: tgs-rise 650ms 220ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (max-width: 1160px) {
  .header-main {
    grid-template-columns: 220px minmax(0, 1fr) auto;
  }

  .primary-navigation {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 1.2rem;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-lg);
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-navigation ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .primary-navigation a {
    width: 100%;
    min-height: 52px;
    padding-inline: 0.5rem;
    border-bottom: 1px solid var(--line);
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    order: 2;
  }

  .header-actions {
    order: 3;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 460px);
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 7vw, 5.8rem);
  }

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

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

@media (max-width: 960px) {
  .hero,
  .hero__grid {
    min-height: auto;
  }

  .hero__grid,
  .form-page-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__grid {
    padding-block: 4.5rem;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero .quote-card {
    width: min(100%, 720px);
  }

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

  .trust-strip__grid > div:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .trust-strip__grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .section-heading--split,
  .advice-band__grid,
  .showroom-card,
  .faq-grid,
  .product-detail,
  .story-grid,
  .simple-page-hero__grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-heading--split {
    gap: 1.5rem;
  }

  .advice-band__grid {
    gap: 4.5rem;
  }

  .advice-band__image-wrap {
    max-width: 700px;
  }

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

  .process-list > li {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .process-list > li:last-child {
    border-bottom: 1px solid var(--line);
  }

  .showroom-card > img {
    min-height: 420px;
  }

  .product-detail:nth-child(even) .product-detail__media {
    order: 0;
  }

  .product-detail__media {
    min-height: 390px;
  }

  .contact-grid > .quote-card {
    width: min(100%, 720px);
  }
}

@media (max-width: 760px) {
  :root {
    --section-space: 4.5rem;
  }

  body {
    padding-bottom: 58px;
  }

  .site-shell {
    width: min(calc(100% - 1.5rem), var(--shell));
  }

  .utility-bar__inner {
    justify-content: center;
  }

  .utility-bar p span,
  .utility-bar nav {
    display: none;
  }

  .header-main {
    min-height: 78px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.5rem;
  }

  .brand img {
    width: 170px;
    max-height: 66px;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    order: initial;
  }

  .primary-navigation {
    max-height: calc(100vh - 114px);
    overflow-y: auto;
  }

  .product-navigation__inner {
    width: 100%;
    display: flex;
    overflow-x: auto;
  }

  .product-navigation a {
    min-width: 128px;
    min-height: 48px;
    flex: 0 0 auto;
    font-size: 0.9rem;
  }

  .hero__veil {
    background: linear-gradient(90deg, rgba(14, 15, 47, 0.97), rgba(14, 15, 47, 0.84));
  }

  .hero__grid {
    gap: 2.5rem;
    padding-block: 3.8rem;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 15vw, 5.2rem);
    line-height: 0.87;
  }

  .hero__copy > p:not(.hero__kicker) {
    font-size: 0.94rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button,
  .hero__actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .hero__checks {
    display: grid;
    gap: 0.55rem;
  }

  .quote-card {
    padding: 1.25rem;
  }

  .quote-form,
  .quote-card--compact .quote-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .field--full {
    grid-column: auto;
  }

  .trust-strip__grid,
  .service-grid,
  .quote-steps__grid,
  .values-grid,
  .post-grid,
  .contact-details {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-strip__grid > div {
    min-height: 88px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

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

  .section-heading h2,
  .advice-band h2,
  .showroom-card h2,
  .faq-intro h2,
  .story-grid h2 {
    font-size: clamp(2.9rem, 13vw, 4.2rem);
  }

  .service-grid {
    gap: 1rem;
  }

  .service-card__body {
    padding: 1.35rem;
  }

  .advice-band__image-wrap > img {
    box-shadow: 10px 10px 0 var(--indigo-bright);
  }

  .advice-band__badge {
    right: 0.5rem;
    bottom: -2rem;
    width: 128px;
  }

  .process-list > li {
    grid-template-columns: 48px minmax(0, 1fr);
    padding-inline: 1rem;
  }

  .showroom-section {
    background: var(--cream);
  }

  .showroom-card__content {
    padding: 2rem 1.4rem;
  }

  .showroom-card > img {
    min-height: 300px;
  }

  .showroom-card__actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .showroom-card__actions .button,
  .showroom-card__actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .faq-grid {
    gap: 2.5rem;
  }

  .faq-list summary {
    padding-right: 3rem;
    font-size: 1.35rem;
  }

  .page-hero {
    min-height: 520px;
  }

  .page-hero__content h1,
  .simple-page-hero h1,
  .form-page-hero__intro h1 {
    font-size: clamp(3.8rem, 15vw, 5.4rem);
    line-height: 0.86;
  }

  .page-hero__content > p:not(.eyebrow) {
    font-size: 0.95rem;
  }

  .anchor-navigation .site-shell {
    width: 100%;
  }

  .product-detail__media {
    min-height: 280px;
  }

  .product-detail__content {
    padding: 2rem 1.35rem;
  }

  .product-detail__content h2 {
    font-size: clamp(3.4rem, 15vw, 5rem);
  }

  .form-page-benefits li {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.35rem;
  }

  .simple-page-hero__grid {
    min-height: 330px;
    gap: 1.5rem;
    padding-block: 3.5rem;
  }

  .contact-grid {
    gap: 1.5rem;
  }

  .contact-store-image {
    aspect-ratio: 4 / 3;
  }

  .footer-cta__inner {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding-block: 3rem;
  }

  .footer-cta__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-cta__actions .button {
    width: 100%;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
    padding-block: 1rem;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    height: 58px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    box-shadow: 0 -8px 24px rgba(14, 15, 47, 0.18);
  }

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--ink);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-action-bar a:last-child {
    color: var(--ink-deep);
    background: var(--accent);
  }
}

@media (max-width: 420px) {
  .site-shell {
    width: min(calc(100% - 1.1rem), var(--shell));
  }

  .brand img {
    width: 150px;
  }

  .menu-toggle {
    min-width: 58px;
    padding-inline: 0.3rem;
  }

  .hero h1,
  .page-hero__content h1,
  .simple-page-hero h1,
  .form-page-hero__intro h1 {
    font-size: clamp(3.2rem, 15vw, 4rem);
  }

  .quote-card__heading h2 {
    font-size: 2.2rem;
  }

  .button {
    padding-inline: 1rem;
  }

  .opening-hours > div {
    gap: 0.55rem;
    font-size: 0.7rem;
  }
}

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

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