:root {
  --ink: #20211d;
  --muted: #716b60;
  --paper: #f4efe6;
  --paper-2: #fffaf1;
  --charcoal: #1c2119;
  --charcoal-2: #111711;
  --green: #4d604a;
  --green-2: #d4dccb;
  --timber: #bd8451;
  --timber-dark: #795134;
  --line: rgba(32, 33, 29, 0.14);
  --line-dark: rgba(255, 250, 241, 0.14);
  --shadow: 0 24px 80px rgba(28, 33, 25, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(121, 81, 52, 0.026) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(0deg, rgba(28, 33, 25, 0.024) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(105deg, transparent 0 18%, rgba(189, 132, 81, 0.08) 18% 19%, transparent 19% 55%, rgba(77, 96, 74, 0.06) 55% 56%, transparent 56%),
    repeating-linear-gradient(96deg, rgba(28, 33, 25, 0.03) 0 1px, transparent 1px 22px);
}

body.is-loaded .site-shell {
  opacity: 1;
  transform: none;
}

.site-shell {
  min-height: 100vh;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  padding: 10px 14px;
  color: var(--paper-2);
  background: var(--charcoal);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(47, 51, 43, 0.12);
  background: rgba(244, 239, 230, 0.88);
  box-shadow: 0 12px 36px rgba(28, 33, 25, 0.06);
  backdrop-filter: blur(18px) saturate(120%);
}

.nav-wrap,
.container,
.footer-inner {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

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

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(28, 33, 25, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.12rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  padding: 10px 11px;
  border-radius: 8px;
  color: rgba(34, 35, 31, 0.76);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a::after {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 2px;
  content: "";
  background: var(--timber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
  background: rgba(255, 250, 243, 0.65);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
}

.nav-toggle .nav-line,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: var(--ink);
  overflow: hidden;
  font-size: 0;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-line {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: min(calc(100vh - 82px), 860px);
  display: grid;
  align-items: end;
  color: var(--paper-2);
  background: var(--charcoal);
}

.hero::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(17, 23, 17, 0.88), rgba(17, 23, 17, 0.48) 48%, rgba(17, 23, 17, 0.16)),
    linear-gradient(0deg, rgba(17, 23, 17, 0.46), transparent 42%);
}

.hero img,
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04) translateY(var(--parallax-y, 0px));
  transition: transform 120ms linear;
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.hero-content {
  padding: 112px 0 70px;
}

.page-hero {
  min-height: 430px;
  color: var(--paper-2);
  background: var(--charcoal);
}

.page-hero-content {
  padding: 150px 0 68px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 38px;
  height: 2px;
  content: "";
  background: currentColor;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.4vw, 6.2rem);
  line-height: 0.98;
  font-weight: 500;
  overflow-wrap: break-word;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.8rem);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  max-width: 1040px;
  font-size: clamp(2rem, 3.55vw, 3.55rem);
  line-height: 1.04;
  font-weight: 500;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.25;
}

.lead {
  max-width: 720px;
  color: rgba(255, 250, 243, 0.86);
  font-size: 1.14rem;
}

.section-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.button-primary {
  color: var(--charcoal);
  background: var(--paper-2);
}

.button-dark {
  color: var(--paper-2);
  background: var(--charcoal);
}

.button-outline {
  color: var(--paper-2);
  border-color: rgba(255, 250, 243, 0.55);
  background: rgba(255, 250, 243, 0.08);
}

.button-muted {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper-2);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(34, 35, 31, 0.16);
}

.text-link {
  min-height: auto;
  padding: 0 0 3px;
  border-bottom: 2px solid var(--timber);
  border-radius: 0;
  color: var(--timber-dark);
}

main section {
  padding: 96px 0;
}

.section-tight {
  padding: 56px 0;
}

.intro-grid,
.split-grid,
.delivery-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  gap: 48px;
  align-items: center;
}

.delivery-section {
  grid-template-columns: minmax(0, 0.84fr) minmax(500px, 1.16fr);
  gap: 68px;
}

.restoration-section {
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  gap: 68px;
}

.reverse-grid {
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1fr);
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 16px 48px rgba(28, 33, 25, 0.08);
}

.panel-pad {
  padding: 28px;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.media-caption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: min(320px, calc(100% - 32px));
  padding: 14px 16px;
  border: 1px solid rgba(255, 250, 243, 0.25);
  border-radius: 8px;
  color: var(--paper-2);
  background: rgba(47, 51, 43, 0.72);
  backdrop-filter: blur(12px);
}

.service-grid,
.card-grid,
.product-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

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

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

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

.service-card,
.content-card,
.product-card,
.process-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.86);
  box-shadow: 0 14px 38px rgba(28, 33, 25, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.content-card,
.product-card {
  display: flex;
  flex-direction: column;
}

.service-card {
  padding: 28px;
}

.service-card::before,
.content-card::before,
.product-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(185, 120, 67, 0.22), transparent 34%);
  transition: opacity 180ms ease;
}

.service-card:hover,
.content-card:hover,
.product-card:hover {
  border-color: rgba(185, 120, 67, 0.36);
  box-shadow: 0 24px 52px rgba(28, 33, 25, 0.16);
  transform: translateY(-4px);
}

.service-card:hover::before,
.content-card:hover::before,
.product-card:hover::before {
  opacity: 1;
}

.icon {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: var(--timber);
}

.icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.content-card img,
.product-card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

.card-body {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(238, 231, 220, 0.96));
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tag-row li,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 250, 243, 0.7);
  font-size: 0.8rem;
}

.band {
  color: var(--paper-2);
  background:
    radial-gradient(circle at 18% 8%, rgba(189, 132, 81, 0.12), transparent 28%),
    linear-gradient(120deg, rgba(17, 23, 17, 0.98), rgba(29, 36, 28, 0.98)),
    var(--charcoal);
}

.band .section-lead,
.band p {
  color: rgba(255, 250, 241, 0.76);
}

.band .panel {
  color: var(--ink);
}

.band .panel:not(.process-card) h3 {
  color: var(--ink);
}

.band .panel:not(.process-card) p,
.band .panel:not(.process-card) a {
  color: var(--muted);
}

.band .panel:not(.process-card) .button-dark {
  color: var(--paper-2);
}

.band .service-card,
.band .process-card {
  border-color: var(--line-dark);
  color: var(--paper-2);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.105), rgba(255, 250, 241, 0.055)),
    linear-gradient(135deg, rgba(189, 132, 81, 0.09), transparent 44%);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.22);
}

.band .service-card h3,
.band .process-card h3 {
  color: var(--paper-2);
}

.band .service-card p,
.band .process-card p {
  color: rgba(255, 250, 241, 0.72);
}

.band .service-card .text-link {
  color: #d5a06c;
  border-color: #d5a06c;
}

.band .content-card,
.band .product-card {
  border-color: rgba(255, 250, 241, 0.16);
  color: var(--ink);
  background: var(--paper-2);
}

.band .content-card h3,
.band .product-card h3 {
  color: var(--ink);
}

.band .content-card p,
.band .product-card p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
}

.feature-list li::before {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border: 2px solid var(--timber);
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, transparent 45%, var(--timber) 45% 56%, transparent 56%);
}

.work-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.work-strip .media-frame:first-child {
  min-height: 520px;
}

.work-strip .media-frame:not(:first-child) {
  min-height: 250px;
}

.work-stack {
  display: grid;
  gap: 18px;
}

.quote-panel {
  position: relative;
  padding: 38px 42px;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-left: 5px solid var(--timber);
  border-radius: var(--radius);
  color: var(--paper-2);
  background:
    linear-gradient(135deg, rgba(28, 33, 25, 0.96), rgba(17, 23, 17, 0.92)),
    var(--charcoal);
  box-shadow: var(--shadow);
}

.quote-panel p {
  color: var(--paper-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.22;
}

.configurator {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 52px;
  align-items: center;
}

.config-options {
  display: grid;
  gap: 18px;
}

.option-group {
  display: grid;
  gap: 8px;
}

.option-group strong {
  display: block;
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.segmented button,
.filter-button {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.88);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.segmented button.is-selected,
.filter-button.is-selected {
  color: var(--paper-2);
  border-color: var(--charcoal);
  background: var(--charcoal);
}

.pallet-preview {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 18%, rgba(189, 132, 81, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(235, 226, 213, 0.92));
  box-shadow: var(--shadow);
}

.pallet-preview::before,
.pallet-preview::after {
  position: absolute;
  content: "";
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 3px, transparent 3px 22px),
    var(--preview-colour, #b97843);
  box-shadow: inset 0 -14px 0 rgba(47, 51, 43, 0.12);
}

.pallet-preview::before {
  left: 13%;
  right: 13%;
  bottom: 212px;
  height: 74px;
  border-radius: 8px;
  transform: skewX(-7deg);
}

.pallet-preview::after {
  left: 22%;
  right: 22%;
  bottom: 160px;
  height: 58px;
  border-radius: 6px;
}

.preview-cushion {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 290px;
  height: 42px;
  border-radius: 8px;
  background: var(--preview-fabric, #e8dfd1);
  box-shadow: 0 14px 30px rgba(47, 51, 43, 0.18);
}

.preview-note {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.94);
  box-shadow: 0 12px 34px rgba(28, 33, 25, 0.08);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 0;
  border-radius: var(--radius);
  background: var(--charcoal);
  cursor: zoom-in;
}

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-item span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--paper-2);
  background: rgba(47, 51, 43, 0.72);
  backdrop-filter: blur(10px);
  font-weight: 700;
  text-align: left;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 0;
  background: rgba(22, 24, 20, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-inner {
  width: min(100%, 980px);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  border-radius: 8px;
  object-fit: contain;
  background: var(--charcoal);
}

.lightbox button {
  float: right;
  margin-bottom: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 250, 243, 0.3);
  border-radius: 8px;
  color: var(--paper-2);
  background: rgba(255, 250, 243, 0.12);
  cursor: pointer;
}

.split-slider {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(32, 33, 29, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(234, 225, 212, 0.9)),
    var(--paper-2);
  box-shadow: var(--shadow);
  --reveal: 50%;
}

.split-stage {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 7px;
  background: var(--charcoal);
}

.split-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-layer {
  filter: grayscale(0.72) saturate(0.64) contrast(0.9) brightness(0.74);
  transform: scale(1.02);
}

.after-layer {
  position: absolute;
  inset: 0;
  filter: saturate(1.1) contrast(1.06) brightness(1.03) sepia(0.08);
  clip-path: inset(0 0 0 var(--reveal));
}

.split-slider input {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 5;
  width: calc(100% - 52px);
  height: 24px;
  margin: 0;
  accent-color: var(--timber);
  cursor: ew-resize;
  background: transparent;
}

.split-slider input::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 250, 241, 0.94), rgba(255, 250, 241, 0.58));
  box-shadow: 0 0 0 1px rgba(17, 23, 17, 0.22);
}

.split-slider input::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  margin-top: -9px;
  border: 3px solid var(--paper-2);
  border-radius: 50%;
  background: var(--timber);
  box-shadow: 0 10px 24px rgba(17, 23, 17, 0.34);
  appearance: none;
}

.split-slider input::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.82);
}

.split-slider input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 3px solid var(--paper-2);
  border-radius: 50%;
  background: var(--timber);
}

.split-label {
  position: absolute;
  top: 18px;
  z-index: 4;
  max-width: calc(50% - 28px);
  padding: 8px 12px;
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 999px;
  color: var(--paper-2);
  background: rgba(17, 23, 17, 0.72);
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.split-label.before {
  left: 18px;
}

.split-label.after {
  right: 18px;
}

.split-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--reveal);
  z-index: 3;
  width: 2px;
  background: rgba(255, 250, 241, 0.88);
  box-shadow: 0 0 0 1px rgba(17, 23, 17, 0.16), 0 0 30px rgba(255, 250, 241, 0.38);
}

.split-divider::after {
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 38px;
  height: 38px;
  border: 2px solid rgba(255, 250, 241, 0.82);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 0 43%, var(--paper-2) 43% 57%, transparent 57%),
    rgba(17, 23, 17, 0.78);
  box-shadow: 0 14px 34px rgba(17, 23, 17, 0.36);
  content: "";
  transform: translateX(-50%);
}

.split-caption {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 4px 2px;
  color: var(--muted);
  font-size: 0.92rem;
}

.split-caption strong {
  flex: 0 0 auto;
  color: var(--ink);
}

.split-caption span {
  display: block;
}

.delivery-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(32, 33, 29, 0.12);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(234, 225, 212, 0.93)),
    var(--paper-2);
  box-shadow: var(--shadow);
}

.delivery-panel img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.delivery-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0 36%, rgba(17, 23, 17, 0.28) 36% 45%, transparent 45%),
    linear-gradient(130deg, rgba(255, 250, 241, 0.2), transparent 34%);
}

.delivery-panel-body {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.panel-kicker {
  margin-bottom: 10px;
  color: var(--timber-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.delivery-panel h3 {
  max-width: 520px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.3vw, 2.35rem);
  line-height: 1.05;
  font-weight: 500;
}

.delivery-notes {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-notes li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.delivery-notes strong {
  color: var(--ink);
  font-weight: 800;
}

.delivery-notes span {
  display: block;
  color: var(--muted);
}

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

.form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper-2);
  font: inherit;
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.mailto-output {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(86, 105, 77, 0.08);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.78);
}

.faq-list summary {
  padding: 18px 20px;
  font-weight: 800;
  cursor: pointer;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  color: var(--paper-2);
  background: var(--charcoal);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 34px;
  padding: 48px 0;
}

.footer-inner p,
.footer-inner a {
  color: rgba(255, 250, 243, 0.78);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
}

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

.footer-links a:hover {
  color: var(--paper-2);
}

[data-reveal] {
  opacity: 1;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--charcoal);
    border-color: rgba(32, 33, 29, 0.28);
    box-shadow: 0 12px 26px rgba(28, 33, 25, 0.16);
  }

  .nav-toggle .nav-line,
  .nav-toggle::before,
  .nav-toggle::after {
    margin: 2.5px auto;
    background: var(--paper-2);
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 243, 0.96);
    box-shadow: var(--shadow);
  }

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

  .intro-grid,
  .split-grid,
  .delivery-grid,
  .contact-grid,
  .reverse-grid,
  .configurator,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .card-grid,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .nav-wrap,
  .container,
  .footer-inner,
  .hero-content,
  .page-hero-content {
    width: min(calc(100vw - 28px), 360px);
    margin-inline: 14px auto;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .brand strong {
    max-width: 190px;
    font-size: 1.02rem;
    line-height: 1.1;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-bottom: 52px;
  }

  .hero-actions,
  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

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

  .eyebrow {
    max-width: 32ch;
    font-size: 0.72rem;
  }

  h1 {
    width: 100%;
    max-width: 8em;
    font-size: clamp(2.3rem, 10vw, 2.85rem);
    line-height: 1;
    word-break: normal;
    overflow-wrap: normal;
  }

  .lead,
  .section-lead {
    max-width: 28ch;
    overflow-wrap: break-word;
  }

  main section {
    padding: 62px 0;
  }

  .service-grid,
  .card-grid,
  .product-grid,
  .process-grid,
  .gallery-grid,
  .work-strip {
    grid-template-columns: 1fr;
  }

  .gallery-item.is-wide,
  .gallery-item.is-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .work-strip .media-frame:first-child,
  .work-strip .media-frame:not(:first-child) {
    min-height: 320px;
  }

  .media-frame img {
    min-height: 300px;
    height: 360px;
  }

  .split-slider {
    padding: 10px;
  }

  .split-stage {
    min-height: 360px;
  }

  .split-label {
    top: 12px;
    max-width: calc(50% - 18px);
    padding: 7px 9px;
    font-size: 0.72rem;
  }

  .split-label.before {
    left: 12px;
  }

  .split-label.after {
    right: 12px;
  }

  .split-slider input {
    left: 18px;
    right: 18px;
    bottom: 20px;
    width: calc(100% - 36px);
  }

  .split-divider::after {
    bottom: 12px;
    width: 34px;
    height: 34px;
  }

  .split-caption {
    display: grid;
    gap: 5px;
    padding-top: 12px;
  }

  .panel-pad {
    padding: 22px;
  }

  .configurator {
    gap: 34px;
  }

  .segmented {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .segmented button,
  .filter-button {
    min-width: 0;
    width: 100%;
    padding: 10px 9px;
    line-height: 1.18;
    white-space: normal;
  }

  .pallet-preview {
    min-height: 430px;
  }

  .pallet-preview::before {
    left: 8%;
    right: 8%;
    bottom: 178px;
    height: 62px;
  }

  .pallet-preview::after {
    left: 16%;
    right: 16%;
    bottom: 134px;
    height: 50px;
  }

  .preview-cushion {
    left: 14%;
    right: 14%;
    bottom: 246px;
    height: 36px;
  }

  .preview-note {
    left: 14px;
    right: 14px;
    bottom: 18px;
    padding: 14px;
  }
}

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

  .hero img,
  .page-hero img {
    transform: scale(1.02);
  }
}
