:root {
  --navy: #183244;
  --ink: #253844;
  --slate: #71818a;
  --gold: #c58d22;
  --cream: #f6f1e8;
  --white: #ffffff;
  --teal: #2d6d70;
  --berry: #9c3348;
  --line: rgba(37, 56, 68, 0.14);
  --shadow: 0 22px 70px rgba(24, 50, 68, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 135px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
}

.subpage {
  padding-top: 150px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  background: #3b4a4f;
  border-bottom: 1px solid rgba(212, 204, 113, 0.28);
  box-shadow: 0 10px 34px rgba(24, 50, 68, 0.2);
  display: flex;
  gap: clamp(22px, 5vw, 70px);
  justify-content: space-between;
  left: 0;
  min-height: 115px;
  padding: 12px clamp(18px, 4vw, 58px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
}

.brand img {
  height: 124px;
  object-fit: contain;
  width: auto;
}

.nav {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  gap: clamp(18px, 2.4vw, 34px);
  justify-content: flex-end;
}

.nav a {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.button {
  align-items: center;
  border-radius: 7px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
}

.hero {
  align-items: center;
  background: var(--navy);
  color: var(--white);
  display: flex;
  min-height: 87vh;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 86px) 72px;
  position: relative;
}

.hero::before {
  background: url("assets/hero-chair-clean.jpg") center 42% / cover no-repeat;
  content: "";
  inset: 0;
  position: absolute;
  transform: scale(1.33);
  transform-origin: center;
  z-index: 0;
}

.hero::after {
  background: rgba(24, 50, 68, 0.62);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-copy-panel {
  max-width: 650px;
  padding: 0;
  position: relative;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.hero-copy-panel h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 4.2vw, 4.4rem);
  margin-bottom: 18px;
  max-width: 10em;
}

.hero-question {
  color: var(--gold) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.34em;
  line-height: 1.2;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.vale-chairs-title {
  color: var(--gold);
  font-size: 18px !important;
}

.hero-copy-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.7;
}

.hero-copy-panel p:last-child {
  margin-bottom: 0;
}

.patriot-badges {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.made-badge {
  border: 1px solid rgba(212, 204, 113, 0.78);
  color: var(--gold);
  display: inline-flex;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0.12em;
  padding: 10px 14px;
  text-transform: uppercase;
}

.patriot-badges img {
  height: 48px;
  object-fit: cover;
  width: 72px;
}

.inline-badges {
  margin-top: 24px;
}

.inline-badges .made-badge {
  border-color: rgba(197, 141, 34, 0.46);
}

.beds-page {
  padding-top: 0;
}

.buxton-page {
  padding-top: 0;
}

.buxton-page .section-pad {
  padding-bottom: clamp(36px, 5vw, 58px);
  padding-top: clamp(36px, 5vw, 58px);
}

.buxton-hero {
  align-items: end;
  background:
    linear-gradient(rgba(24, 50, 68, 0.62), rgba(24, 50, 68, 0.62)),
    var(--navy) url("assets/buxton-hero-clean.jpg") 68% 48% / cover no-repeat;
  color: var(--white);
  display: flex;
  min-height: min(58vh, 560px);
  padding: 150px clamp(20px, 6vw, 86px) 46px;
  position: relative;
}

.stock-detail-hero {
  background-position: 78% 48%;
}

.hawksworth-hero {
  background-image:
    linear-gradient(rgba(24, 50, 68, 0.52), rgba(24, 50, 68, 0.7)),
    url("assets/hawksworth-stock-cropped.jpg");
}

.harby-hero {
  background-image:
    linear-gradient(rgba(24, 50, 68, 0.52), rgba(24, 50, 68, 0.7)),
    url("assets/harby-stock-cropped.jpg");
}

.buxton-hero-copy {
  max-width: 690px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.buxton-hero-copy .eyebrow {
  font-size: 18px;
}

.buxton-hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  margin-bottom: 12px;
}

.buxton-hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.5;
}

.buxton-page h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  margin-bottom: 14px;
}

.beds-hero {
  align-items: end;
  background:
    linear-gradient(rgba(24, 50, 68, 0.6), rgba(24, 50, 68, 0.6)),
    var(--navy) url("assets/beds-hero.jpg") 18% 50% / cover no-repeat;
  color: var(--white);
  display: flex;
  min-height: 72vh;
  padding: 180px clamp(20px, 6vw, 86px) 70px;
}

.beds-hero-copy {
  max-width: 680px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.beds-hero-copy .eyebrow {
  font-size: 18px;
}

.bed .eyebrow {
  color: var(--gold);
  font-size: 18px;
}

.mattress .eyebrow {
  color: var(--gold);
  font-size: 18px;
}

.mattress strong {
  color: var(--gold);
}

.beds-hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 5.3rem);
  margin-bottom: 18px;
}

.beds-hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.6;
}

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

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.04;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  margin-bottom: 24px;
  max-width: 9.5em;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  margin-bottom: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-copy {
  color: var(--ink);
  font-size: clamp(1.04rem, 1.6vw, 1.32rem);
  line-height: 1.65;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

.button.secondary {
  border: 1px solid rgba(24, 50, 68, 0.26);
  color: var(--navy);
}

.hero-badges {
  align-items: end;
  bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: absolute;
  right: clamp(20px, 6vw, 86px);
  z-index: 1;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 7px;
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 850;
  padding: 11px 14px;
}

.section-pad {
  padding: clamp(48px, 7vw, 92px) clamp(20px, 6vw, 86px);
}

.section-heading {
  max-width: 820px;
}

.intro {
  align-items: end;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
}

.intro-copy {
  color: var(--slate);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.proof-grid article {
  border-right: 1px solid var(--white);
  height: clamp(352px, 27.5vw, 411px);
  overflow: hidden;
  position: relative;
}

.proof-grid img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.proof-grid .guarantee-image {
  background: #324144;
}

.proof-grid .guarantee-image img {
  box-sizing: border-box;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  padding: 46px 0 0;
  transform: none;
}

.proof-grid h3 {
  background: var(--gold);
  color: var(--white);
  left: 0;
  margin: 0;
  padding: 13px 18px;
  position: absolute;
  right: 0;
  top: 0;
}

.guarantee-tile {
  align-items: center;
  background: var(--teal);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 28px 28px;
  text-align: center;
}

.guarantee-tile h3 {
  background: var(--gold);
  color: var(--white);
  left: 0;
  margin: 0;
  padding: 13px 18px;
  position: absolute;
  right: 0;
  top: 0;
}

.guarantee-number {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.5rem;
  font-weight: 800;
  line-height: 0.9;
}

.range {
  background: var(--cream);
}

.range-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
}

.product {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.product-image {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  margin-bottom: 22px;
  object-fit: contain;
  width: 100%;
}

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

.stock-chair-grid .product-image {
  height: 220px;
  margin: 0 auto 18px;
  max-width: 220px;
  width: min(100%, 220px);
}

.product-tag {
  color: var(--berry);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.product p,
.product li {
  color: var(--slate);
  line-height: 1.6;
}

.product ul {
  margin: 22px 0 0;
  padding-left: 18px;
}

.bullet-made-badge {
  font-size: 0.7rem;
  padding: 7px 10px;
}

.product-link {
  display: block;
}

.origin-image {
  display: block;
  margin: 0 auto 18px;
  position: relative;
}

.product-britain-image {
  height: 220px;
  max-width: 220px;
  width: min(100%, 220px);
}

.product-britain-image .product-image {
  height: 100%;
  margin-bottom: 0;
  width: 100%;
}

.eu-image {
  display: block;
  margin: 0;
  position: relative;
}

.eu-image > img:not(.eu-logo-badge) {
  display: block;
}

.product-eu-image {
  height: 220px;
  margin-bottom: 18px;
  margin-left: auto;
  margin-right: auto;
  max-width: 220px;
  width: min(100%, 220px);
}

.product-eu-image .product-image {
  border-radius: 0;
  box-shadow: none;
  height: 100%;
  margin-bottom: 0;
  width: 100%;
}

.eu-logo-badge {
  border-radius: 50%;
  height: 64px;
  object-fit: cover;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 64px;
  z-index: 3;
}

.hero-eu-logo {
  height: 76px;
  right: clamp(20px, 6vw, 86px);
  top: 160px;
  width: 76px;
}

.wide-image {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 36px 0 0;
  overflow: hidden;
}

.wide-image img {
  margin: auto;
  width: min(100%, 1100px);
}

.made {
  background: var(--white);
}

.made-page-section {
  padding: 0 0 clamp(48px, 7vw, 92px);
}

.made-order-banner {
  align-items: center;
  background:
    linear-gradient(rgba(24, 50, 68, 0.62), rgba(24, 50, 68, 0.62)),
    var(--navy) url("assets/hero-chair-clean.jpg") center 42% / cover no-repeat;
  color: var(--white);
  display: flex;
  min-height: clamp(300px, 38vw, 520px);
  overflow: hidden;
  padding: clamp(34px, 6vw, 72px);
  width: 100%;
}

.made-order-banner-copy {
  max-width: 700px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.made-order-banner h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 4.2vw, 4.4rem);
  margin-bottom: 18px;
  max-width: 10em;
}

.made-order-origin-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.made-order-origin {
  margin: 0;
}

.made-order-origin-row img {
  height: 48px;
  object-fit: cover;
  width: 72px;
}

.made-page-content {
  margin-left: clamp(20px, 6vw, 86px);
  margin-right: clamp(20px, 6vw, 86px);
}

.steps {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.steps article {
  border-top: 5px solid var(--gold);
  padding: 24px 22px 20px;
}

.steps span {
  align-items: center;
  background: var(--navy);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  margin-bottom: 18px;
  width: 34px;
}

.steps p,
.matching p,
.bed p,
.mattress li,
.dealer p,
.size-band p {
  color: var(--slate);
  line-height: 1.65;
}

.made-page-title,
.sizing-title,
.matching-title-label {
  color: var(--gold);
  font-size: 18px !important;
}

.size-band .sizing-title,
.matching .matching-title-label {
  color: var(--gold);
  font-size: 18px !important;
}

.option-gallery {
  display: grid;
  align-items: start;
  gap: 28px 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
}

.option-gallery figure {
  display: grid;
  gap: 10px;
  grid-template-rows: minmax(220px, 1fr) auto;
  margin: 0;
  overflow: visible;
}

.option-gallery img {
  align-self: center;
  aspect-ratio: 4 / 3;
  height: auto;
  justify-self: center;
  max-height: 240px;
  object-fit: contain;
  width: 100%;
}

.option-gallery .mechanism-choice {
  grid-column: 1 / -1;
  margin: 0 auto 6px;
  max-width: 980px;
  width: 100%;
}

.option-gallery .mechanism-choice img {
  aspect-ratio: 3.85 / 1;
  max-height: none;
}

.option-gallery figcaption {
  background: var(--gold);
  color: var(--white);
  font-weight: 850;
  min-height: 48px;
  padding: 12px 14px;
  text-align: center;
}

.size-band {
  align-items: center;
  background: var(--navy);
  color: var(--white);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1.2fr);
  padding: clamp(54px, 8vw, 86px) clamp(20px, 6vw, 86px);
}

.size-band h2 {
  color: var(--white);
}

.made-choice-band {
  background: #f4f0e6;
  border-bottom: 1px solid rgba(59, 74, 79, 0.12);
  color: var(--slate);
}

.made-choice-band h2 {
  color: var(--navy);
}

.made-choice-band p:not(.eyebrow) {
  color: var(--slate);
}

.size-band.choice-band-alt {
  background: #e7eeee;
}

.made-choice-visual {
  padding: 0;
}

.made-choice-visual img {
  display: block;
  margin: auto;
  max-height: 360px;
  object-fit: contain;
  width: 100%;
}

.mechanism-visual img {
  max-width: 80%;
}

.fabric-banner-visual {
  align-self: center;
  border-radius: 8px;
  min-height: 330px;
  overflow: hidden;
  position: relative;
}

.fabric-banner-visual img {
  height: 330px;
  max-height: none;
  object-fit: contain;
  object-position: center;
  transform: scale(1.5);
  width: auto;
}

.fabric-banner-visual::after {
  background:
    linear-gradient(90deg, #e7eeee 0%, rgba(231, 238, 238, 0) 16%, rgba(231, 238, 238, 0) 84%, #e7eeee 100%),
    linear-gradient(180deg, #e7eeee 0%, rgba(231, 238, 238, 0) 18%, rgba(231, 238, 238, 0) 82%, #e7eeee 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.extras-visuals {
  align-items: end;
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
}

.extras-visuals figure {
  display: flex;
  align-items: end;
  justify-content: center;
  margin: 0;
  min-height: 310px;
  width: 200px;
}

.extras-visuals img {
  max-height: 320px;
  width: auto;
}

.size-table {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.size-table div {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.1fr 0.7fr repeat(3, 1fr);
  padding: 17px 20px;
}

.size-table div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.size-guide {
  min-width: 0;
}

.size-band .custom-size-note {
  color: var(--gold);
  font-size: 18px;
  font-weight: 850;
  margin: 18px 0 0;
}

.matching,
.bed,
.mattress,
.dealer,
.buxton-overview,
.buxton-mechanism,
.buxton-options {
  align-items: center;
  display: grid;
  gap: clamp(30px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1fr);
}

.buxton-overview,
.buxton-mechanism,
.buxton-options {
  gap: clamp(24px, 3vw, 42px);
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
}

.matching img,
.bed img,
.mattress img,
.buxton-overview .eu-image > img:not(.eu-logo-badge),
.buxton-mechanism .eu-image > img:not(.eu-logo-badge),
.buxton-options .eu-image > img:not(.eu-logo-badge) {
  width: 100%;
}

.matching img,
.bed img,
.mattress img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.beds-page .bed img,
.beds-page .mattress img {
  justify-self: center;
  width: 80%;
}

.buxton-overview .eu-image,
.buxton-mechanism .eu-image,
.buxton-options .eu-image {
  justify-self: center;
  max-width: 360px;
  width: 52%;
}

.buxton-mechanism .buxton-mechanism-image {
  max-width: 460px;
  width: 70%;
}

.buxton-overview .eyebrow,
.buxton-mechanism .eyebrow,
.buxton-options .eyebrow {
  color: var(--gold);
  font-size: 18px;
}

.buxton-overview p,
.buxton-mechanism p,
.buxton-options p,
.buxton-feature-list li,
.buxton-colour-list li {
  color: var(--slate);
  line-height: 1.55;
}

.buxton-feature-list,
.buxton-colour-list {
  margin: 18px 0 0;
  padding-left: 20px;
}

.buxton-origin-badge {
  align-items: center;
  border: 1px solid rgba(197, 141, 34, 0.34);
  border-radius: 8px;
  display: inline-flex;
  gap: 12px;
  margin-top: 16px;
  padding: 10px 14px;
}

.buxton-origin-badge img {
  display: block;
  height: 58px;
  width: 58px;
}

.buxton-origin-badge span {
  color: var(--gold);
  font-size: 18px;
  font-weight: 850;
  text-transform: uppercase;
}

.buxton-feature-list li {
  color: var(--gold);
  font-size: 18px;
  font-weight: 850;
  text-transform: uppercase;
}

.buxton-feature-list li + li,
.buxton-colour-list li + li {
  margin-top: 7px;
}

.buxton-mechanism {
  background: var(--cream);
}

.buxton-note {
  color: var(--gold) !important;
  font-size: 18px;
  font-weight: 850;
}

.buxton-size-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 18px;
  overflow: hidden;
}

.buxton-size-table div {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr repeat(3, 0.8fr);
  padding: 12px 16px;
}

.buxton-size-table div + div {
  border-top: 1px solid var(--line);
}

.buxton-size-table strong,
.buxton-colour-list li,
.buxton-gallery figcaption {
  color: var(--gold);
  font-size: 18px;
  font-weight: 850;
}

.buxton-colours {
  object-fit: contain;
}

.buxton-gallery {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 0;
}

.buxton-gallery .eu-image > img:not(.eu-logo-badge) {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.buxton-gallery .eu-image {
  justify-self: center;
  max-width: 920px;
  text-align: center;
  width: 100%;
}

.buxton-gallery figcaption {
  margin-top: 10px;
}

.buxton-page .eu-image > img:not(.eu-logo-badge) {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.bed {
  background: var(--cream);
}

.bed-sizes {
  margin: 26px 0 0;
  padding-left: 20px;
}

.bed-sizes li {
  color: var(--gold);
  font-size: 18px;
  font-weight: 850;
}

.bed-sizes li + li {
  margin-top: 10px;
}

.mattress {
  padding: clamp(48px, 7vw, 82px) clamp(20px, 6vw, 86px);
}

.mattress ul {
  margin: 24px 0 0;
  padding-left: 20px;
}

.mattress li + li {
  margin-top: 10px;
}

.dealer {
  background:
    linear-gradient(135deg, rgba(24, 50, 68, 0.96), rgba(45, 109, 112, 0.9)),
    var(--navy);
  color: var(--white);
}

.dealer h2,
.dealer p {
  color: var(--white);
}

.dealer .eyebrow {
  color: var(--gold);
  font-size: 18px;
}

.coming-soon {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 55vh;
  text-align: center;
}

.coming-soon .eyebrow {
  color: var(--gold);
  font-size: 18px;
}

.info-page {
  background: var(--white);
}

.info-hero {
  background:
    linear-gradient(rgba(24, 50, 68, 0.7), rgba(24, 50, 68, 0.7)),
    var(--navy) url("assets/hero-chair-clean.jpg") center 42% / cover no-repeat;
  color: var(--white);
  min-height: 380px;
  padding-top: 210px;
}

.info-hero .eyebrow {
  color: var(--gold);
  font-size: 18px;
}

.info-hero h1 {
  color: var(--white);
  max-width: 780px;
}

.info-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  max-width: 760px;
}

.info-content {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.faq-section {
  display: grid;
  gap: 12px;
}

.faq-section details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

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

.faq-section summary {
  color: var(--gold);
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
  list-style: none;
  position: relative;
  text-transform: uppercase;
}

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

.faq-section summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
}

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

.faq-section p,
.faq-section ul {
  color: var(--slate);
  line-height: 1.65;
  max-width: 980px;
}

.faq-section p {
  margin-top: 14px;
}

.faq-section ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.faq-section li + li {
  margin-top: 8px;
}

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

.info-content article {
  border-top: 5px solid var(--gold);
  padding-top: 20px;
}

.info-content h2 {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.info-content h3 {
  color: var(--gold);
  font-size: 18px;
  margin: 22px 0 10px;
}

.info-content p {
  color: var(--slate);
  line-height: 1.65;
}

.info-content a {
  color: var(--navy);
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-content ul {
  color: var(--slate);
  line-height: 1.65;
  margin: 14px 0 0;
  padding-left: 20px;
}

.info-content li + li {
  margin-top: 8px;
}

.faq-wide {
  grid-column: 1 / -1;
}

.contact-panel {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.contact-panel a {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 850;
  padding: 22px;
}

.stockist-access {
  align-items: center;
  background: var(--cream);
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
}

.stockist-access h2,
.stockist-login-hero h1,
.download-section h2 {
  color: var(--navy);
}

.stockist-access p,
.stockist-login-hero p,
.download-section p {
  color: var(--slate);
  line-height: 1.65;
}

.stockist-access-title {
  color: var(--gold) !important;
  font-size: 18px !important;
}

.stockist-access-panel,
.login-card {
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--white);
  padding: clamp(22px, 4vw, 34px);
}

.stockist-access-panel h3,
.login-card h2 {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 10px;
}

.stockist-access-panel p,
.login-card p {
  color: rgba(255, 255, 255, 0.82);
}

.stockist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.stockist-login-hero {
  align-items: center;
  background: var(--cream);
  display: grid;
  gap: clamp(30px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
}

.login-card {
  display: grid;
  gap: 12px;
}

.login-card label {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.login-card input {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  color: var(--navy);
  font: inherit;
  padding: 12px 14px;
  width: 100%;
}

.login-status {
  font-size: 0.94rem;
  margin: 4px 0;
}

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

.download-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.download-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: block;
  min-height: 210px;
  padding: 20px;
}

.download-card span {
  align-items: center;
  background: var(--gold);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  margin-bottom: 18px;
  width: 54px;
}

.download-card h3 {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 10px;
}

.store-locator,
.dealer-request {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  grid-column: 1 / -1;
  margin-top: 28px;
  padding: 24px;
}

.store-locator {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
}

.store-locator h3,
.dealer-request h3 {
  color: var(--white);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  margin-bottom: 10px;
}

.store-locator .eyebrow,
.dealer-request .eyebrow {
  color: var(--gold);
  font-size: 18px;
}

.locator-intro {
  min-width: 0;
}

.locator-search-label {
  color: var(--gold);
  display: block;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 18px 0 8px;
  text-transform: uppercase;
}

.locator-search {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  color: var(--navy);
  font: inherit;
  padding: 12px 14px;
  width: 100%;
}

.locator-count {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.95rem;
  margin-top: 10px;
}

.locator-status {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.92rem;
  margin-top: 6px;
}

.locator-map-panel iframe {
  border: 0;
  border-radius: 8px;
  display: block;
  height: 380px;
  width: 100%;
}

.locator-list {
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-height: 520px;
  overflow: auto;
  padding-right: 6px;
}

.locator-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 16px;
}

.locator-card.is-selected {
  border-color: rgba(197, 141, 34, 0.84);
  box-shadow: inset 0 0 0 1px rgba(197, 141, 34, 0.36);
}

.locator-list h4 {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 8px;
}

.locator-list p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.locator-list .locator-distance {
  color: var(--gold);
  font-weight: 850;
}

.locator-list a {
  color: var(--white);
  display: inline-block;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.locator-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 10px;
}

.map-button {
  background: var(--gold);
  border: 0;
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  margin-top: 12px;
  padding: 10px 12px;
  width: 100%;
}

.map-button:hover {
  background: #d19a33;
}

.store-locator .button,
.dealer-request .button {
  margin-top: 10px;
}

.contact-panel a:hover,
.nav a:hover,
.footer a:hover {
  color: #d4cc71;
}

.footer {
  background: #3b4a4f;
  border-top: 1px solid rgba(212, 204, 113, 0.28);
  color: var(--white);
  padding: 30px clamp(20px, 6vw, 86px) 18px;
}

.footer-main {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(150px, 0.8fr));
}

.footer-brand img {
  display: block;
  height: auto;
  max-width: 190px;
  width: 100%;
}

.footer-column {
  display: grid;
  gap: 8px;
}

.footer-column h2 {
  color: var(--gold);
  font-size: 16px;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.footer a {
  color: var(--white);
  font-weight: 400;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(212, 204, 113, 0.24);
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 22px;
  padding-top: 14px;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    justify-content: start;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    width: 100%;
  }

  .hero {
    min-height: 840px;
  }

  .intro,
  .size-band,
  .matching,
  .bed,
  .mattress,
  .dealer,
  .stockist-access,
  .stockist-login-hero,
  .info-content,
  .buxton-overview,
  .buxton-mechanism,
  .buxton-options {
    grid-template-columns: 1fr;
  }

  .store-locator {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

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

  .proof-grid,
  .range-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

@media (max-width: 640px) {
  .locator-list,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .locator-map-panel iframe {
    height: 300px;
  }

  .subpage {
    padding-top: 170px;
  }

  .beds-page {
    padding-top: 0;
  }

  .beds-hero {
    background-position: 14% 50%;
    background-size: cover;
    min-height: 680px;
    padding: 170px 18px 44px;
  }

  .info-hero {
    min-height: 360px;
    padding-top: 180px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    height: 90px;
  }

  .nav {
    gap: 18px;
  }

  .nav a {
    flex: 0 0 auto;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .hero {
    min-height: 780px;
    padding: 150px 18px 40px;
  }

  .hero::before {
    background-position: 68% center;
  }

  .hero-copy-panel {
    padding: 0;
  }

  .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.2em;
  }

  h1 {
    font-size: clamp(2.65rem, 16vw, 4.6rem);
  }

  .hero-badges {
    bottom: auto;
    left: auto;
    margin-top: 26px;
    position: relative;
    right: auto;
  }

  .hero-badges span {
    flex: 1 1 150px;
    text-align: center;
  }

  .proof-grid,
  .range-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .stock-chair-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article {
    height: 260px;
  }

  .size-table {
    overflow-x: auto;
  }

  .size-table div {
    min-width: 560px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand img {
    max-width: 190px;
  }

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

  .footer-bottom div {
    justify-content: flex-start;
  }
}
