:root {
  color-scheme: dark;
  --navy: #0d141d;
  --green: #c98a54;
  --blue: #c98a54;
  --cream: #eef1f3;
  --paper: #0d141d;
  --ink: #f8fafb;
  --muted: #b9c2cb;
  --line: rgba(238, 241, 243, .18);
  --gold: #aeb8c2;
  --rust: #9b5f38;
  --surface: #141d27;
  --surface-2: #1a2530;
  --surface-soft: #22303d;
  --tag-bg: rgba(201, 138, 84, .14);
  --header-bg: rgba(13, 20, 29, .94);
  --field-bg: #111a24;
  --field-border: rgba(238, 241, 243, .28);
  --wash-rgb: 13, 20, 29;
  --hero-gradient: linear-gradient(90deg, rgba(13, 20, 29, .99) 0%, rgba(13, 20, 29, .9) 45%, rgba(13, 20, 29, .54) 100%);
  --hero-gradient-mobile: linear-gradient(180deg, rgba(13, 20, 29, .99) 0%, rgba(13, 20, 29, .9) 58%, rgba(13, 20, 29, .58) 100%);
  --kicker-bg: rgba(201, 138, 84, .94);
  --shadow: 0 22px 70px rgba(0, 0, 0, .38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  transition: background .24s ease, color .24s ease;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: auto;
  min-width: 260px;
}

.brand img {
  display: block;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  background: var(--surface);
}

.brand-name {
  display: grid;
  gap: 0;
  line-height: .95;
}

.brand-name strong,
.brand-name em {
  font-style: normal;
  letter-spacing: 0;
}

.brand-name strong {
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
}

.brand-name em {
  color: var(--green);
  font-size: 21px;
  font-weight: 900;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

nav a,
.header-action,
.button {
  text-decoration: none;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 10px 16px;
  font-weight: 800;
  cursor: pointer;
}

.header-action:not(.secondary-action),
.button.primary {
  color: var(--cream);
  background: var(--green);
}

.secondary-action {
  color: var(--cream);
  border-color: var(--line);
  background: rgba(238, 241, 243, .08);
}

.button.secondary {
  color: var(--navy);
  background: var(--surface);
  border-color: rgba(255, 255, 255, .72);
}

.whatsapp-link {
  border-color: rgba(37, 211, 102, .42);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(340px, .64fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    var(--hero-gradient),
    url("assets/product-photos/modern-appliance-package.jpg") center / cover no-repeat;
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  padding: 86px clamp(18px, 6vw, 80px) 78px;
  color: var(--cream);
}

.hero-showcase {
  position: relative;
  align-self: center;
  width: min(500px, calc(100% - 28px));
  margin: 96px clamp(18px, 5vw, 64px) 78px 0;
}

.showcase-main,
.showcase-row img {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.showcase-main {
  aspect-ratio: 4 / 5;
}

.showcase-row {
  position: absolute;
  right: 22px;
  bottom: -34px;
  left: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.showcase-row img {
  aspect-ratio: 4 / 3;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 700px;
  font-size: clamp(46px, 7.2vw, 86px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(18px, 1.7vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.status-strip div {
  min-height: 96px;
  padding: 22px clamp(18px, 3vw, 38px);
  border-right: 1px solid var(--line);
}

.status-strip div:last-child {
  border-right: 0;
}

.status-strip strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.status-strip span {
  color: var(--muted);
}

section {
  padding: 84px clamp(18px, 5vw, 64px);
}

.homepage-summary,
.detail-links,
.positioning,
.trust,
.quality,
.refurbished,
.operations,
.portfolio-system {
  display: grid;
  grid-template-columns: minmax(220px, 420px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.positioning {
  background: var(--surface);
}

.impact-panel {
  display: grid;
  gap: 14px;
}

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

.assurance div {
  min-height: 220px;
  padding: 28px clamp(18px, 4vw, 44px);
  background: var(--surface);
}

.assurance span,
.package-label,
.portfolio-flow span {
  display: inline-flex;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--green);
  background: var(--tag-bg);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.assurance strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.15;
}

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

.impact-panel div,
.trust-grid article,
.tier-grid article,
.ops-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.impact-panel span,
.trust-grid span,
.tier-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--green);
  background: var(--tag-bg);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.impact-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
}

.impact-panel p,
.trust-grid p,
.tier-grid p,
.ops-grid p,
.refurbished p,
.proof-list {
  color: var(--muted);
}

.items,
.quote-section,
.prices,
.service {
  display: grid;
  grid-template-columns: minmax(220px, 420px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

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

.section-heading .eyebrow {
  margin-bottom: 14px;
}

.section-copy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.homepage-summary {
  background: var(--surface);
}

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

.summary-grid a {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  color: inherit;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.summary-grid span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--green);
  background: var(--tag-bg);
  font-size: 12px;
  font-weight: 900;
}

.summary-grid strong {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.15;
}

.summary-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.detail-links {
  background: var(--cream);
}

.detail-links .button {
  margin-top: 24px;
}

.detail-accordion {
  display: grid;
  gap: 14px;
}

.detail-accordion details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.detail-accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.detail-accordion summary::-webkit-details-marker {
  display: none;
}

.detail-accordion summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-weight: 900;
}

.detail-accordion details[open] summary::after {
  content: "-";
}

.detail-accordion details > p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.compact-price-table {
  margin: 0 22px 22px;
}

.items {
  position: relative;
  background:
    linear-gradient(90deg, rgba(var(--wash-rgb), .97) 0%, rgba(var(--wash-rgb), .91) 42%, rgba(var(--wash-rgb), .76) 100%),
    url("assets/product-photos/modern-appliance-package.jpg") center / cover no-repeat;
  background-attachment: fixed;
}

.packages {
  display: grid;
  grid-template-columns: minmax(220px, 420px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: var(--surface);
}

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

.package-card {
  display: flex;
  min-height: 450px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.package-card.featured {
  border-color: rgba(10, 132, 224, .5);
  background: var(--surface-2);
}

.package-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.12;
}

.package-price {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 28px;
  line-height: 1;
}

.package-card p,
.package-card li,
.portfolio-flow p {
  color: var(--muted);
}

.package-card ul {
  margin: auto 0 0;
  padding-left: 18px;
}

.package-card li {
  margin-bottom: 9px;
}

.package-scope {
  margin: 4px 0 18px;
  border-left: 3px solid var(--green);
  padding: 12px 14px;
  background: rgba(201, 138, 84, .1);
}

.package-scope strong,
.package-scope span {
  display: block;
}

.package-scope strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

.package-scope span {
  color: var(--muted);
  font-size: 14px;
}

.package-clarity {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.package-clarity article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--surface);
}

.package-clarity h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.package-clarity p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

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

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

.tier-grid article {
  min-height: 250px;
}

.tier-grid h3,
.ops-grid h3 {
  color: var(--navy);
  font-size: 22px;
}

.refurbished {
  align-items: center;
  background: var(--surface-2);
}

.portfolio-system {
  background: var(--surface);
}

.trust {
  background: var(--surface-2);
}

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

.trust-grid article {
  min-height: 250px;
}

.trust-grid h3 {
  color: var(--ink);
  font-size: 22px;
}

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

.portfolio-flow article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.portfolio-flow h3 {
  color: var(--navy);
  font-size: 22px;
}

.refurbished-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.refurbished-visual img {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.proof-list {
  margin: 22px 0 0;
  padding-left: 20px;
}

.proof-list li {
  margin-bottom: 10px;
}

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

.item-card {
  display: grid;
  grid-template-rows: auto auto auto minmax(76px, 1fr) auto;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.item-card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: 0 22px 58px rgba(12, 30, 58, .18);
}

.item-card.wide {
  grid-column: span 3;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1fr);
  grid-template-rows: auto auto minmax(72px, 1fr) auto;
  align-items: center;
  min-height: 250px;
}

.item-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--cream);
}

.item-card > img {
  filter: saturate(1.04) contrast(1.02);
}

.item-card > img[src*="inspection-"],
.range-card img[src*="inspection-"],
.showcase-row img[src*="inspection-"],
.category-hero > img[src*="inspection-"] {
  object-fit: cover;
  background: var(--surface-2);
}

.item-card > img[src*="stock-"],
.range-card img[src*="stock-"],
.showcase-row img[src*="stock-"],
.category-hero > img[src*="stock-"] {
  padding: 10px;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 22%, rgba(238, 241, 243, .12), rgba(13, 20, 29, .2) 46%, rgba(13, 20, 29, .54) 100%),
    var(--surface-2);
  filter: saturate(.98) contrast(1.05) brightness(.98);
}

.item-card > img[src*="washing-machine.jpg"],
.item-card > img[src*="dryer.jpg"],
.item-card > img[src*="dishwasher.jpg"],
.item-card > img[src*="microwave.jpg"],
.range-card img[src*="washing-machine.jpg"],
.range-card img[src*="dryer.jpg"],
.range-card img[src*="dishwasher.jpg"],
.range-card img[src*="microwave.jpg"],
.category-hero > img[src*="washing-machine.jpg"],
.category-hero > img[src*="dryer.jpg"],
.category-hero > img[src*="dishwasher.jpg"],
.category-hero > img[src*="microwave.jpg"] {
  padding: 10px;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 22%, rgba(238, 241, 243, .14), rgba(13, 20, 29, .24) 46%, rgba(13, 20, 29, .58) 100%),
    var(--surface-2);
  filter: saturate(1) contrast(1.05) brightness(.98);
}

.item-card.wide img {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}

.item-card.wide .item-collage {
  grid-row: 1 / span 4;
}

.brand-tag {
  width: max-content;
  max-width: calc(100% - 40px);
  margin: 18px 20px 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--green);
  background: var(--tag-bg);
  font-size: 12px;
  font-weight: 900;
}

.item-grid h3 {
  margin: 0;
  padding: 12px 20px 8px;
  color: var(--navy);
  font-size: 22px;
}

.item-grid p {
  margin: 0;
  padding: 0 20px 12px;
  color: var(--muted);
}

.learn-more {
  align-self: end;
  padding: 0 20px 22px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.item-collage {
  grid-row: 1 / 4;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 100%;
  min-height: 260px;
  background: var(--cream);
}

.item-collage img {
  height: 100%;
  min-height: 130px;
  aspect-ratio: auto;
  border-right: 1px solid var(--surface);
  border-bottom: 1px solid var(--surface);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-intro {
  position: sticky;
  top: 104px;
}

.brief-preview {
  margin-top: 22px;
  border: 1px solid rgba(201, 138, 84, .32);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(201, 138, 84, .12), rgba(238, 241, 243, .035)),
    var(--surface);
  box-shadow: var(--shadow);
}

.brief-preview strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 16px;
}

.brief-preview p {
  margin-bottom: 0;
  color: var(--muted);
  white-space: pre-line;
}

.brief-preview small,
.field-note span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.field-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(238, 241, 243, .04);
}

.field-note strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.quote-extra {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(238, 241, 243, .035);
}

.quote-extra summary {
  cursor: pointer;
  list-style: none;
  padding: 16px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.quote-extra summary::-webkit-details-marker {
  display: none;
}

.quote-extra summary::after {
  content: "+";
  float: right;
  color: var(--green);
}

.quote-extra[open] summary::after {
  content: "-";
}

.quote-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 16px;
}

label,
legend {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #b9c2cc;
  border-radius: 6px;
  padding: 12px;
  color: var(--ink);
  background: var(--surface);
  font: inherit;
}

textarea {
  resize: vertical;
}

fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  grid-column: 1 / -1;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.check input {
  width: 18px;
  height: 18px;
  margin: 0;
}

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

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--cream);
  background: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
}

td {
  font-size: 15px;
}

td:nth-child(2) {
  color: var(--navy);
  font-weight: 800;
}

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

.operations {
  background: var(--surface);
}

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

.service-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.service-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.service-grid h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 22px;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 64px);
  color: var(--cream);
  background: var(--navy);
}

footer span {
  color: rgba(255, 255, 255, .84);
}

footer small {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

footer small a {
  color: var(--cream);
  font-weight: 800;
}

.credits-page {
  display: grid;
  grid-template-columns: minmax(220px, 440px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
}

.credit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.credit-list li {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.credit-list li:last-child {
  border-bottom: 0;
}

.credit-list a {
  color: var(--navy);
  font-weight: 900;
}

.category-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: 560px;
  overflow: hidden;
  color: var(--cream);
  background:
    var(--hero-gradient),
    url("assets/product-photos/modern-appliance-package.jpg") center / cover no-repeat;
}

.category-hero > * {
  position: relative;
  z-index: 1;
}

.category-hero img {
  width: 100%;
  max-height: 470px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.category-hero .item-collage {
  width: 100%;
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.turnover-showcase {
  display: grid;
  gap: 14px;
}

.turnover-showcase img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  object-fit: cover;
  background: var(--surface-2);
  box-shadow: var(--shadow);
}

.category-hero .item-collage img {
  max-height: none;
  border: 0;
  border-right: 1px solid var(--surface);
  border-bottom: 1px solid var(--surface);
  border-radius: 0;
  box-shadow: none;
}

.category-kicker {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--cream);
  background: var(--kicker-bg);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-hero h1 {
  color: var(--cream);
  font-size: clamp(38px, 6vw, 70px);
}

.category-hero p {
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
}

.category-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.category-meta span {
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--cream);
  background: rgba(255, 255, 255, .15);
  font-size: 13px;
  font-weight: 900;
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
}

.product-range {
  position: relative;
  background:
    linear-gradient(90deg, rgba(var(--wash-rgb), .97) 0%, rgba(var(--wash-rgb), .9) 48%, rgba(var(--wash-rgb), .75) 100%),
    url("assets/product-photos/modern-appliance-package.jpg") center / cover no-repeat;
  background-attachment: fixed;
}

.range-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.range-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.range-card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: 0 22px 58px rgba(12, 30, 58, .18);
}

.range-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef3f7;
  filter: saturate(1.04) contrast(1.02);
}

.range-card h3 {
  padding: 18px 18px 0;
  color: var(--navy);
  font-size: 20px;
}

.range-card p {
  padding: 8px 18px 20px;
  color: var(--muted);
  font-size: 15px;
}

.range-note {
  margin-top: 18px;
  border-left: 4px solid var(--blue);
  padding: 14px 16px;
  color: var(--muted);
  background: var(--surface-2);
  font-weight: 800;
}

.warning-note {
  border-left-color: #b94722;
  background: rgba(201, 138, 84, .16);
  color: #6f2d16;
}

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

.detail-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.detail-card h3 {
  color: var(--navy);
  font-size: 20px;
}

.detail-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.detail-card li {
  margin-bottom: 8px;
}

.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--navy);
  background: var(--tag-bg);
  font-weight: 900;
}

.refurb-table {
  width: 100%;
  min-width: 0;
}

.category-cta {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 20px;
  align-items: center;
  background: var(--navy);
}

.category-cta h2,
.category-cta p {
  color: var(--cream);
}

.category-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .75);
}

.button.secondary,
.homepage-summary,
.detail-links,
.positioning,
.packages,
.operations,
.portfolio-system,
.summary-grid a,
.detail-accordion details,
.quote-extra,
.assurance div,
.impact-panel div,
.tier-grid article,
.ops-grid article,
.package-card,
.refurbished-visual,
.item-card,
.quote-form,
.price-table-wrap,
.service-grid article,
.credit-list,
.range-card,
.detail-card {
  background: var(--surface);
}

.package-card.featured,
.refurbished,
.range-note {
  background: var(--surface-2);
}

.assurance span,
.summary-grid span,
.package-label,
.portfolio-flow span,
.impact-panel span,
.tier-grid span,
.brand-tag,
.brand-list span {
  background: var(--tag-bg);
}

.portfolio-flow article {
  background: var(--surface);
}

input,
select,
textarea {
  border-color: var(--field-border);
  background: var(--field-bg);
}

.showcase-main,
.showcase-row img,
.category-hero img,
.category-hero .item-collage {
  border-color: rgba(255, 255, 255, .32);
}

.item-collage img,
.category-hero .item-collage img {
  border-right-color: var(--surface);
  border-bottom-color: var(--surface);
}

.site-header,
footer,
.category-cta {
  background: var(--navy);
}

.site-header {
  border-bottom-color: rgba(238, 241, 243, .16);
}

.brand img {
  border-color: rgba(201, 138, 84, .44);
  background: #eef1f3;
}

.brand-name strong,
.brand-name em,
h2,
h3,
.summary-grid strong,
.detail-accordion summary,
.quote-extra summary,
label,
legend,
td:nth-child(2),
.status-strip strong,
.assurance strong,
.impact-panel strong,
.credit-list a,
.brand-list span {
  color: var(--ink);
}

nav,
.section-copy,
.status-strip span,
.summary-grid p,
.detail-accordion details > p,
.assurance p,
.impact-panel p,
.tier-grid p,
.ops-grid p,
.refurbished p,
.proof-list,
.item-grid p,
.package-card p,
.package-card li,
.portfolio-flow p,
.range-card p,
.detail-card ul,
.credit-list li,
td,
.service-grid p {
  color: var(--muted);
}

.button.primary,
.header-action:not(.secondary-action) {
  color: #0d141d;
  background: linear-gradient(135deg, #d7a06a 0%, #c98a54 52%, #9b5f38 100%);
  box-shadow: 0 14px 34px rgba(201, 138, 84, .26);
}

.button.secondary,
.secondary-action {
  color: var(--cream);
  background: rgba(238, 241, 243, .08);
  border-color: rgba(238, 241, 243, .28);
}

.whatsapp-link,
.secondary-action {
  border-color: rgba(37, 211, 102, .38);
}

.hero {
  min-height: 680px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--navy);
}

.hero-content {
  padding-top: 112px;
  padding-bottom: 112px;
}

.hero-showcase {
  margin-top: 112px;
  margin-bottom: 112px;
}

.showcase-main,
.showcase-row img,
.category-hero img,
.category-hero .item-collage,
.turnover-showcase img {
  border-color: rgba(238, 241, 243, .24);
  background: var(--surface-2);
}

.status-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #101923;
}

.positioning,
.homepage-summary,
.detail-links,
.packages,
.trust,
.operations,
.portfolio-system,
.quote-section,
.prices,
.service,
.quality,
.refurbished,
.items,
.product-range,
.detail-section,
.credits-page {
  background:
    linear-gradient(180deg, rgba(238, 241, 243, .035), rgba(238, 241, 243, 0)),
    var(--navy);
}

.items,
.product-range {
  background:
    linear-gradient(90deg, rgba(13, 20, 29, .97) 0%, rgba(13, 20, 29, .9) 42%, rgba(13, 20, 29, .72) 100%),
    url("assets/product-photos/modern-appliance-package.jpg") center / cover no-repeat;
}

.assurance {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.button.secondary,
.summary-grid a,
.detail-accordion details,
.quote-extra,
.assurance div,
.impact-panel div,
.trust-grid article,
.tier-grid article,
.ops-grid article,
.package-card,
.package-clarity article,
.portfolio-flow article,
.refurbished-visual,
.item-card,
.quote-form,
.price-table-wrap,
.service-grid article,
.credit-list,
.range-card,
.detail-card {
  border-color: rgba(238, 241, 243, .16);
  background:
    linear-gradient(180deg, rgba(238, 241, 243, .06), rgba(238, 241, 243, .02)),
    var(--surface);
  box-shadow: var(--shadow);
}

.package-card.featured,
.refurbished,
.range-note {
  border-color: rgba(201, 138, 84, .36);
  background:
    linear-gradient(180deg, rgba(201, 138, 84, .12), rgba(238, 241, 243, .04)),
    var(--surface-2);
}

.assurance span,
.summary-grid span,
.package-label,
.portfolio-flow span,
.impact-panel span,
.trust-grid span,
.tier-grid span,
.brand-tag,
.brand-list span {
  border-color: rgba(201, 138, 84, .34);
  color: #d7a06a;
  background: var(--tag-bg);
}

input,
select,
textarea {
  color: var(--cream);
  border-color: var(--field-border);
  background: var(--field-bg);
}

input::placeholder,
textarea::placeholder {
  color: rgba(238, 241, 243, .46);
}

th {
  color: var(--cream);
  background: #091019;
}

td {
  background: rgba(238, 241, 243, .015);
}

.range-note {
  color: var(--cream);
}

.warning-note {
  border-left-color: #d7a06a;
  background: rgba(201, 138, 84, .16);
  color: #f0cda7;
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 0 6px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a {
    flex: 0 0 auto;
    scroll-snap-align: start;
    border: 1px solid rgba(238, 241, 243, .14);
    border-radius: 999px;
    padding: 8px 11px;
    background: rgba(238, 241, 243, .06);
    font-size: 13px;
  }

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

  .hero-media {
    background:
      var(--hero-gradient-mobile),
      url("assets/product-photos/modern-appliance-package.jpg") center / cover no-repeat;
  }

  .hero-showcase {
    width: min(560px, calc(100% - 36px));
    margin: 0 auto 68px;
  }

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

  .trust-grid article,
  .tier-grid article,
  .service-grid article,
  .portfolio-flow article {
    min-height: auto;
  }

  .status-strip,
  .assurance,
  .homepage-summary,
  .detail-links,
  .positioning,
  .trust,
  .items,
  .packages,
  .quality,
  .refurbished,
  .operations,
  .portfolio-system,
  .category-hero,
  .detail-section,
  .product-range,
  .category-cta,
  .quote-section,
  .prices,
  .service,
  .credits-page,
  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .detail-grid,
  .summary-grid,
  .trust-grid,
  .tier-grid,
  .ops-grid,
  .package-grid,
  .package-clarity,
  .portfolio-flow {
    grid-template-columns: 1fr;
  }

  .package-clarity {
    grid-column: auto;
  }

  .quote-intro {
    position: static;
  }

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

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

  .items {
    background-attachment: scroll;
  }

  .status-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-range {
    background-attachment: scroll;
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .status-strip,
  .assurance,
  .summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .status-strip div:nth-child(2),
  .assurance div:nth-child(2) {
    border-right: 0;
  }

  .assurance div {
    min-height: 190px;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    min-height: 0;
    padding-top: 10px;
    padding-bottom: 8px;
  }

  .header-actions {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-name strong {
    font-size: 20px;
  }

  .brand-name em {
    font-size: 18px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 52px);
  }

  h2 {
    font-size: clamp(26px, 9vw, 34px);
  }

  .hero-content {
    padding-top: 68px;
    padding-bottom: 34px;
  }

  .hero-showcase {
    margin-bottom: 62px;
  }

  .showcase-row {
    right: 14px;
    bottom: -28px;
    left: 14px;
    gap: 10px;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 14px;
  }

  .quote-extra-grid {
    grid-template-columns: 1fr;
  }

  .brief-preview {
    margin-top: 18px;
    padding: 15px;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .item-grid,
  .range-grid,
  .trust-grid,
  .tier-grid,
  .ops-grid,
  .package-grid,
  .package-clarity,
  .portfolio-flow,
  .item-card.wide,
  .category-cta {
    grid-template-columns: 1fr;
  }

  .item-card.wide {
    grid-column: span 1;
  }

  .item-card.wide .item-collage {
    grid-row: auto;
  }

  .item-card.wide img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .item-collage {
    grid-row: auto;
  }

  section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

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