:root {
  --ink: #191715;
  --coal: #24211e;
  --iron: #343733;
  --olive: #4b553f;
  --pine: #273226;
  --copper: #d86118;
  --brass: #b78a43;
  --paper: #f4efe4;
  --paper-deep: #e6dcc9;
  --bone: #fff9ee;
  --smoke: #647071;
  --line: rgba(67, 55, 42, .22);
  --shadow: 0 22px 60px rgba(20, 18, 15, .18);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(82, 61, 37, .05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(82, 61, 37, .06) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(25, 23, 21, .91);
  border-bottom: 1px solid rgba(255, 249, 238, .12);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1200px, calc(100% - 36px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--bone);
  font-weight: 850;
  letter-spacing: .02em;
  min-width: max-content;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: var(--bone);
  border: 1px solid rgba(255, 249, 238, .28);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 249, 238, .82);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:not(.button) {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
  border-color: var(--copper);
}

.button,
button.button,
.nav-toggle {
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  background: var(--pine);
  color: var(--bone);
  font-weight: 850;
  line-height: 1.1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.button.gold {
  background: linear-gradient(135deg, var(--copper), #a83e0a);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 249, 238, .94);
  color: var(--ink);
}

.button.outline {
  background: transparent;
  color: var(--pine);
  border: 1px solid rgba(39, 50, 38, .34);
  box-shadow: none;
}

.nav-cta { min-height: 40px; padding: 10px 14px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: rgba(255, 249, 238, .08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--bone);
}

.hero {
  position: relative;
  min-height: 68svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: var(--bone);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(18, 15, 12, .92), rgba(18, 15, 12, .6) 42%, rgba(18, 15, 12, .3)),
    linear-gradient(180deg, rgba(18, 15, 12, .12), rgba(18, 15, 12, .88)),
    url("/assets/rustic-gun-shop-hero.jpg") center / cover no-repeat;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.018), rgba(255,255,255,.018) 1px, transparent 1px, transparent 5px),
    radial-gradient(circle at 20% 20%, rgba(216, 97, 24, .16), transparent 34%);
  mix-blend-mode: screen;
  opacity: .7;
}

.hero-content {
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0 46px;
  position: relative;
  z-index: 2;
}

.hero-mark {
  position: absolute;
  right: max(28px, calc((100vw - 1200px) / 2));
  bottom: 38px;
  width: clamp(150px, 23vw, 290px);
  padding: 20px;
  background: rgba(255, 249, 238, .9);
  border: 1px solid rgba(255, 249, 238, .46);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-mark img { filter: contrast(1.06); }

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: #f3c08d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.kicker { color: var(--copper); }
.kicker.copper { color: #f3a167; }

h1, h2, h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 820px;
  font-size: clamp(52px, 8vw, 104px);
  text-transform: uppercase;
}

h2 { font-size: clamp(32px, 4.6vw, 58px); max-width: 920px; }
h3 { font-size: 24px; }

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 249, 238, .88);
  font-size: clamp(18px, 2.1vw, 24px);
}

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

.trust-strip {
  background: var(--coal);
  color: var(--bone);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.trust-grid {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.trust-grid div {
  min-height: 82px;
  padding: 18px 20px;
  border-left: 1px solid rgba(255,255,255,.1);
}

.trust-grid div:last-child { border-right: 1px solid rgba(255,255,255,.1); }
.trust-grid strong { display: block; color: #fff; font-size: 19px; }
.trust-grid span { color: rgba(255, 249, 238, .68); font-size: 13px; }

.section { padding: 88px 18px; }
.section.soft { background: rgba(230, 220, 201, .78); }
.container { width: min(1200px, 100%); margin: 0 auto; }

.intro-band {
  background:
    linear-gradient(135deg, rgba(255,255,255,.45), rgba(255,255,255,0)),
    var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
  gap: 54px;
  align-items: start;
}

.section p,
.editorial p,
.catalogue-card p,
.contact-card span,
.roadmap span,
.values-grid p,
.seo-grid p {
  color: #5f5b51;
  font-size: 17px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.text-link {
  color: var(--copper);
  font-weight: 900;
  border-bottom: 2px solid rgba(216, 97, 24, .38);
  padding-bottom: 4px;
  min-width: max-content;
}

.department-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.department-card,
.catalogue-card,
.values-grid article,
.seo-grid article,
.texture-panel,
.enquiry-form,
.contact-card,
.story-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 249, 238, .82);
  box-shadow: 0 16px 40px rgba(47, 39, 30, .08);
}

.department-card { overflow: hidden; }

.department-media {
  min-height: 160px;
  background:
    linear-gradient(135deg, rgba(25,23,21,.88), rgba(39,50,38,.62)),
    url("/assets/favicon.png") center / 118px no-repeat,
    var(--coal);
  position: relative;
}

.department-media::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,249,238,.18);
  border-radius: 5px;
}

.department-media.rifle { background-color: #2d332b; }
.department-media.ammo { background-color: #3a2e24; }
.department-media.optics { background-color: #26383a; }
.department-media.accessories { background-color: #332d36; }
.department-media.safes { background-color: #353535; }
.department-media.outdoor { background-color: #3f4a32; }

.department-copy { padding: 24px; }
.department-copy span,
.catalogue-card span,
.values-grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--copper);
  font-weight: 950;
  letter-spacing: .08em;
}

.department-copy p { margin-bottom: 0; }

.dark-panel-section { padding-top: 36px; }

.dark-panel {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .74fr);
  gap: 38px;
  align-items: center;
  padding: clamp(30px, 5vw, 56px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(216,97,24,.14), transparent 42%),
    linear-gradient(180deg, #26231f, #181614);
  color: var(--bone);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.1);
}

.dark-panel p { color: rgba(255, 249, 238, .76); }
.dark-panel h2 { color: #fff; }

.roadmap {
  display: grid;
  gap: 12px;
}

.roadmap div {
  padding: 18px;
  border: 1px solid rgba(255,249,238,.16);
  border-radius: 6px;
  background: rgba(255,255,255,.06);
}

.roadmap strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.split,
.page-hero-grid,
.product-upload {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .86fr);
  gap: 48px;
  align-items: center;
}

.split.reverse { grid-template-columns: minmax(340px, .86fr) minmax(0, 1fr); }

.story-card {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.68), rgba(230,220,201,.75)),
    var(--bone);
}

.story-card img { max-height: 360px; object-fit: contain; }

.service-area {
  background:
    linear-gradient(180deg, rgba(255,249,238,.72), rgba(230,220,201,.82)),
    var(--paper-deep);
}

.seo-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.seo-grid article,
.values-grid article,
.texture-panel {
  padding: 26px;
}

.contact-band {
  padding-top: 56px;
  background: var(--pine);
  color: var(--bone);
}

.contact-cta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.contact-cta p { color: rgba(255, 249, 238, .75); }

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--bone);
  background:
    linear-gradient(90deg, rgba(25,23,21,.94), rgba(25,23,21,.72)),
    url("/assets/rustic-gun-shop-hero.jpg") center / cover no-repeat;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 96px;
  padding-bottom: 82px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 6vw, 82px);
  text-transform: none;
}

.page-hero-grid img {
  width: min(330px, 100%);
  justify-self: end;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 249, 238, .92);
}

.product-hero,
.contact-hero {
  background:
    linear-gradient(90deg, rgba(25,23,21,.94), rgba(25,23,21,.6)),
    url("/assets/rustic-gun-shop-hero.jpg") center / cover no-repeat;
}

.editorial {
  max-width: 880px;
}

.editorial p {
  font-size: 20px;
}

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

.check-list li {
  padding-left: 26px;
  position: relative;
  color: #4f4b43;
}

.check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 2px;
  top: .72em;
  background: var(--copper);
  transform: rotate(45deg);
}

.product-tools {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 30px;
}

.shop-section {
  background:
    linear-gradient(180deg, rgba(255,249,238,.76), rgba(244,239,228,.92)),
    var(--paper);
}

.shop-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: start;
}

.shop-filter-panel,
.enquiry-panel {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 249, 238, .9);
  box-shadow: 0 16px 42px rgba(47, 39, 30, .08);
  padding: 20px;
}

.shop-filter-panel h2,
.enquiry-panel h2 {
  font-size: 28px;
}

.shop-filter-panel p,
.enquiry-panel p {
  font-size: 14px;
  color: #625b50;
}

.filter-group {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.filter-group h3 {
  margin-bottom: 12px;
  font-size: 16px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

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

.filter-chip {
  min-height: 36px;
  border: 1px solid rgba(67, 55, 42, .28);
  border-radius: 6px;
  background: rgba(255,255,255,.58);
  color: #3f3a33;
  padding: 8px 10px;
  font-weight: 850;
  font-size: 12px;
}

.filter-chip.is-active {
  background: var(--pine);
  border-color: var(--pine);
  color: var(--bone);
}

.clear-shop {
  width: 100%;
  margin-top: 20px;
}

.shop-results {
  min-width: 0;
}

.shop-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(180px, 220px);
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 249, 238, .82);
}

.active-filter-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin: 18px 0;
}

.active-filter-row p {
  margin: 0;
  color: #625b50;
  font-size: 14px;
}

.active-filter-row p:first-child {
  min-width: max-content;
  color: var(--pine);
  font-weight: 900;
}

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

.shop-product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 249, 238, .9);
  box-shadow: 0 16px 40px rgba(47, 39, 30, .08);
}

.shop-product-visual {
  min-height: 170px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: var(--bone);
  background:
    linear-gradient(135deg, rgba(25,23,21,.82), rgba(39,50,38,.72)),
    url("/assets/favicon.png") center / 96px no-repeat,
    var(--coal);
}

.shop-product-visual::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,249,238,.18);
  border-radius: 5px;
}

.shop-product-visual span {
  position: relative;
  z-index: 1;
  padding: 6px 9px;
  border-radius: 5px;
  background: rgba(0,0,0,.34);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.shop-product-visual.firearms { background-color: #2d332b; }
.shop-product-visual.ammunition { background-color: #3a2e24; }
.shop-product-visual.optics { background-color: #26383a; }
.shop-product-visual.accessories { background-color: #332d36; }
.shop-product-visual.safes { background-color: #353535; }
.shop-product-visual.outdoor { background-color: #3f4a32; }

.shop-product-body {
  padding: 20px;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.product-badges span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border: 1px solid rgba(216, 97, 24, .22);
  border-radius: 5px;
  background: rgba(216, 97, 24, .09);
  color: #8d390b;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.shop-product-card h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.shop-product-card p {
  min-height: 78px;
  margin: 0;
  color: #625b50;
  font-size: 15px;
}

.spec-list {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.spec-list dt {
  color: var(--pine);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.spec-list dd {
  margin: 0;
  color: #625b50;
  font-size: 13px;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-actions .button {
  width: 100%;
  padding-inline: 12px;
  font-size: 13px;
}

.enquiry-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.enquiry-panel-head span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 5px;
  background: var(--pine);
  color: var(--bone);
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 900;
}

.enquiry-empty {
  margin-top: 16px;
  border: 1px dashed rgba(67, 55, 42, .28);
  border-radius: 6px;
  padding: 14px;
  color: #6d655a;
  font-size: 14px;
}

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

.enquiry-list li {
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,.58);
  padding: 12px;
}

.enquiry-list strong {
  color: var(--ink);
}

.enquiry-list span {
  color: #625b50;
  font-size: 12px;
}

.enquiry-list button {
  justify-self: start;
  min-height: 0;
  border: 0;
  background: transparent;
  color: var(--copper);
  padding: 0;
  font-size: 12px;
  font-weight: 900;
}

.enquiry-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

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

.product-dialog {
  width: min(620px, calc(100% - 32px));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: transparent;
}

.product-dialog::backdrop {
  background: rgba(19, 17, 15, .68);
  backdrop-filter: blur(4px);
}

.dialog-shell {
  position: relative;
  border: 1px solid rgba(255,249,238,.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(216,97,24,.08), transparent 44%),
    var(--bone);
  padding: 28px;
  box-shadow: var(--shadow);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255,255,255,.74);
  color: var(--ink);
  padding: 6px 10px;
  font-weight: 900;
}

.dialog-shell h2 {
  max-width: 520px;
  padding-right: 72px;
  font-size: 40px;
}

.dialog-shell p {
  color: #625b50;
}

.dialog-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.dialog-details div {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,.52);
  padding: 12px;
}

.dialog-details strong,
.dialog-details span {
  display: block;
}

.dialog-details strong {
  color: var(--pine);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.dialog-details span {
  color: #625b50;
  font-size: 14px;
  margin-top: 3px;
}

label {
  display: grid;
  gap: 8px;
  color: #4f493f;
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(67, 55, 42, .28);
  border-radius: 6px;
  background: rgba(255,255,255,.78);
  color: var(--ink);
  padding: 12px 13px;
}

textarea { min-height: 130px; resize: vertical; }

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.catalogue-card {
  display: grid;
  align-content: start;
  min-height: 280px;
  padding: 26px;
}

.catalogue-card h2 { font-size: 30px; }
.catalogue-card a {
  align-self: end;
  margin-top: 24px;
  color: var(--copper);
  font-weight: 900;
}

.no-results {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bone);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bone);
}

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

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

th {
  background: rgba(39,50,38,.09);
  color: var(--pine);
}

tr:last-child td { border-bottom: 0; }

.contact-card {
  padding: 28px;
  background: rgba(255, 249, 238, .92);
  color: var(--ink);
}

.contact-card h2 { font-size: 32px; margin-bottom: 18px; }
.contact-card p {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.contact-card strong { color: var(--pine); }

.enquiry-form {
  padding: 26px;
  display: grid;
  gap: 16px;
}

.form-note {
  margin: 0;
  font-size: 13px;
  color: #686257;
}

.footer {
  padding: 56px 18px 28px;
  background:
    linear-gradient(135deg, rgba(216,97,24,.1), transparent 36%),
    #181614;
  color: rgba(255,249,238,.78);
}

.footer-grid {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .7fr 1fr;
  gap: 40px;
}

.footer img { width: 74px; height: 74px; object-fit: contain; background: var(--bone); border-radius: 50%; }
.footer h2,
.footer h3 { color: var(--bone); margin-top: 14px; }
.footer a { display: block; margin: 8px 0; color: rgba(255,249,238,.78); }
.footer a:hover { color: #fff; }
.footer small {
  display: block;
  width: min(1200px, 100%);
  margin: 34px auto 0;
  color: rgba(255,249,238,.58);
}

@media (max-width: 980px) {
  .nav { flex-wrap: wrap; padding: 10px 0; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    width: 100%;
    padding: 0 0 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a:not(.button) {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255,249,238,.1);
  }
  .nav-cta { margin-top: 8px; }
  .hero { min-height: auto; }
  .hero-content { padding: 68px 0 38px; }
  .hero-mark {
    display: none;
  }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .department-grid,
  .catalogue-grid,
  .seo-grid,
  .values-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .intro-grid,
  .split,
  .split.reverse,
  .page-hero-grid,
  .product-upload,
  .dark-panel,
  .product-tools {
    grid-template-columns: 1fr;
  }
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .shop-filter-panel,
  .enquiry-panel {
    position: static;
  }
  .shop-toolbar {
    grid-template-columns: 1fr;
  }
  .active-filter-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .shop-product-grid {
    grid-template-columns: 1fr;
  }
  .page-hero-grid img { justify-self: start; }
  .section-heading,
  .contact-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section { padding: 64px 16px; }
  .nav { width: min(100% - 28px, 1200px); }
  .brand span { font-size: 15px; }
  .brand img { width: 46px; height: 46px; }
  h1 { font-size: clamp(44px, 16vw, 64px); }
  .page-hero h1 { font-size: clamp(38px, 12vw, 54px); }
  .hero-actions .button,
  .contact-cta .button {
    width: 100%;
  }
  .trust-grid div { min-height: 76px; padding: 14px; }
  .department-media { min-height: 138px; }
  .contact-card p { grid-template-columns: 1fr; gap: 2px; }
  .product-actions,
  .dialog-details {
    grid-template-columns: 1fr;
  }
  .dialog-shell {
    padding: 24px 18px;
  }
  .dialog-shell h2 {
    padding-right: 0;
    font-size: 32px;
  }
  .dialog-close {
    position: static;
    margin-bottom: 16px;
  }
}
