:root {
  --bg: #120f0c;
  --bg-2: #1b1612;
  --panel: #201914;
  --panel-2: #2b221a;
  --text: #f6f0e7;
  --muted: #d7c7b3;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #ff7a2f;
  --accent-2: #ffbf47;
  --accent-3: #8d5f3b;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  --radius: 22px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 122, 47, 0.12), transparent 26%),
    linear-gradient(180deg, #18120e 0%, #120f0c 40%, #100d0a 100%);
  color: var(--text);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(
    180deg,
    rgba(19, 12, 8, 0.95),
    rgba(10, 8, 6, 0.92)
  );
  backdrop-filter: blur(14px);
  border-bottom: 4px solid rgba(255, 122, 47, 0.88);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.34),
    inset 0 -1px 0 rgba(255, 191, 71, 0.18);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 8px;
  background: linear-gradient(
    90deg,
    rgba(255, 122, 47, 0.95),
    rgba(255, 191, 71, 0.98),
    rgba(141, 95, 59, 0.9)
  );
  box-shadow: 0 6px 18px rgba(255, 122, 47, 0.28);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(255, 122, 47, 0.22));
}
.brand-name {
  display: block;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.08rem;
}
.brand-sub {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}
.site-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.site-nav a {
  color: #edd8c0;
  font-weight: 600;
  font-size: 0.96rem;
  padding: 8px 0;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: 0.24s;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 191, 71, 0.35);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
}
.page-hero {
  padding: 72px 0 42px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 12%,
      rgba(255, 122, 47, 0.18),
      transparent 26%
    ),
    radial-gradient(
      circle at 82% 18%,
      rgba(255, 191, 71, 0.14),
      transparent 24%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.64));
  pointer-events: none;
}
.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 191, 71, 0.16);
  background: linear-gradient(
    180deg,
    rgba(50, 33, 20, 0.88),
    rgba(28, 18, 12, 0.95)
  );
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 122, 47, 0.06),
    inset 0 1px 0 rgba(255, 191, 71, 0.12);
  border-radius: calc(var(--radius) + 4px);
}
.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 191, 71, 0.28),
    rgba(255, 122, 47, 0.14),
    transparent 50%,
    rgba(255, 122, 47, 0.12)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 191, 71, 0.12);
  border: 1px solid rgba(255, 191, 71, 0.18);
  font-weight: 700;
  color: #ffdba0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}
.hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1.02;
  margin: 16px 0 18px;
  max-width: 12ch;
}
.hero-copy p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 62ch;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.22s ease;
  letter-spacing: 0.01em;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-solid {
  background: linear-gradient(
    135deg,
    var(--accent),
    #ff924f 58%,
    var(--accent-2)
  );
  color: #fff;
  box-shadow:
    0 12px 28px rgba(255, 122, 47, 0.34),
    0 0 0 1px rgba(255, 191, 71, 0.22) inset;
}
.btn-ghost {
  border: 1px solid rgba(255, 191, 71, 0.35);
  color: #ffe4b6;
  background: rgba(255, 255, 255, 0.02);
}
.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  max-height: 420px;
}
.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.badge-card {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 18px;
  color: #f8ead5;
  font-weight: 700;
  font-size: 0.95rem;
}
.section {
  padding: 34px 0;
}
.section h2 {
  font-size: clamp(1.55rem, 2vw, 2.3rem);
  margin: 0 0 18px;
}
.section-intro {
  color: var(--muted);
  max-width: 70ch;
  margin-bottom: 24px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.feature-card,
.mini-card,
.panel,
.info-box {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  border-radius: var(--radius);
}
.feature-card {
  overflow: hidden;
}
.feature-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}
.feature-copy {
  padding: 20px;
}
.feature-copy h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}
.feature-copy p {
  margin: 0 0 14px;
  color: var(--muted);
}
.text-link {
  color: #ffcc81;
  font-weight: 700;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.mini-card {
  padding: 22px;
}
.mini-card h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
}
.mini-card p {
  margin: 0;
  color: var(--muted);
}
.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}
.panel {
  padding: 24px;
}
.panel h3 {
  margin-top: 0;
}
.content-block p,
.panel p {
  color: var(--muted);
}
.tick-list {
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.tick-list li {
  position: relative;
  padding-left: 28px;
  color: #f4e7d6;
}
.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-2);
  font-weight: 900;
}
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.open-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: start;
}
.copy-stack {
  display: grid;
  gap: 16px;
}
.copy-stack p {
  margin: 0;
  color: var(--muted);
}
.plain-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.plain-points li {
  padding: 0 0 14px;
  border-bottom: 1px solid var(--line);
}
.plain-points li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.plain-points strong {
  display: block;
  margin-bottom: 6px;
  color: #fff0d4;
  font-size: 1rem;
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}
.stat {
  padding-top: 16px;
  border-top: 2px solid rgba(255, 191, 71, 0.16);
}
.stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
  color: #fff1db;
}
.stat span {
  color: var(--muted);
}
.note-band {
  padding: 24px 26px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(255, 122, 47, 0.1),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 122, 47, 0.18);
}
.note-band h2,
.note-band h3 {
  margin-top: 0;
}
.note-band p {
  margin: 0;
  color: var(--muted);
}
.step-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}
.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--line);
}
.step-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 900;
  flex: 0 0 auto;
}
.step-copy h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.step-copy p {
  margin: 0;
  color: var(--muted);
}
.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.scope-box {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}
.scope-box h3 {
  margin-top: 0;
}
.scope-box p {
  margin: 0;
  color: var(--muted);
}
.scope-box ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}
.quick-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 122, 47, 0.32);
  background: linear-gradient(
    135deg,
    rgba(255, 122, 47, 0.14),
    rgba(255, 191, 71, 0.08)
  );
  font-weight: 800;
  color: #ffe3b7;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 191, 71, 0.14);
}
.quick-link span {
  opacity: 0.86;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.02);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}
.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}
.contact-layout .panel-form {
  padding: 26px;
}
.info-stack {
  display: grid;
  gap: 14px;
}
.info-box {
  padding: 18px 20px;
}
.info-box strong {
  display: block;
  margin-bottom: 8px;
  color: #ffe0a7;
}
.info-box a,
.info-box span {
  color: var(--muted);
}
.contact-form {
  display: grid;
  gap: 12px;
}
.contact-form label {
  font-weight: 700;
  color: #f3dec0;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: #120f0c;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
}
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-form #honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.site-footer {
  padding: 28px 0 18px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 122, 47, 0.16);
  background: rgba(0, 0, 0, 0.18);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
}
.site-footer h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}
.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--muted);
}
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.footer-bottom {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #bfae99;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  color: #d6c6b1;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.trust-pill {
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  text-align: center;
  color: #ffe2b4;
  font-weight: 800;
  font-size: 0.94rem;
}
@media (max-width: 980px) {
  .hero-shell,
  .two-col,
  .open-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .card-grid,
  .mini-grid,
  .stat-strip,
  .scope-grid,
  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-copy h1 {
    max-width: none;
  }
}
@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }
  .site-nav {
    position: absolute;
    right: 16px;
    top: 78px;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(
      180deg,
      rgba(23, 16, 11, 0.98),
      rgba(11, 8, 6, 0.96)
    );
    border: 1px solid rgba(255, 181, 107, 0.18);
    width: min(320px, calc(100% - 32px));
    display: none;
    backdrop-filter: blur(18px);
    box-shadow:
      var(--shadow),
      0 0 0 1px rgba(255, 122, 47, 0.08);
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    width: 100%;
  }
  .page-hero {
    padding-top: 52px;
  }
  .hero-shell {
    padding: 22px;
  }
  .hero-badges,
  .card-grid,
  .mini-grid,
  .stat-strip,
  .scope-grid,
  .trust-row {
    grid-template-columns: 1fr;
  }
  .quick-links {
    grid-template-columns: 1fr;
  }
  .brand-sub {
    display: none;
  }
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 122, 47, 0.12);
  border: 1px solid rgba(255, 191, 71, 0.22);
  color: #ffd59b;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  margin-bottom: 12px;
}
.section-accent {
  position: relative;
  padding-left: 18px;
}
.section-accent::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 6px;
  height: 1.3em;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}
.contact-callouts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.callout-card {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 122, 47, 0.12),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 122, 47, 0.24);
  box-shadow: var(--shadow);
}
.callout-card strong {
  display: block;
  color: #fff0d5;
  font-size: 1rem;
  margin-bottom: 6px;
}
.callout-card p {
  margin: 0;
  color: var(--muted);
}
.contact-hero-panel {
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 191, 71, 0.18);
  box-shadow: var(--shadow);
}
.contact-hero-panel h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.contact-hero-panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 10px;
}
.contact-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.contact-chip {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 122, 47, 0.24);
  color: #ffe7bf;
  font-weight: 800;
  text-align: center;
}
.contact-layout {
  gap: 26px;
}
.panel-form {
  position: relative;
  overflow: hidden;
}
.panel-form::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 24px rgba(255, 122, 47, 0.24);
}
.panel-form h2,
.contact-info-col h2 {
  margin-top: 0;
}
.form-lead {
  color: var(--muted);
  margin: -4px 0 18px;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 122, 47, 0.74);
  box-shadow:
    0 0 0 3px rgba(255, 122, 47, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.info-box {
  position: relative;
  overflow: hidden;
}
.info-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}
.info-box p {
  margin: 0;
  color: var(--muted);
}
.enquiry-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.enquiry-card {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 122, 47, 0.18);
}
.enquiry-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  color: #fff1d9;
}
.enquiry-card p {
  margin: 0;
  color: var(--muted);
}
.contact-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 122, 47, 0.08);
  border: 1px solid rgba(255, 122, 47, 0.18);
  color: #ffe0b2;
}
.privacy-note {
  margin: 14px 0 0;
  color: #cdb8a3;
  font-size: 0.92rem;
  line-height: 1.7;
}
.form-status {
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 181, 107, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #fff0dc;
}
.form-status.is-success {
  border-color: rgba(47, 179, 111, 0.34);
}
.form-status.is-error {
  border-color: rgba(255, 102, 102, 0.34);
}
.contact-page .page-hero {
  min-height: auto;
  padding-top: 118px;
  padding-bottom: 36px;
}
.contact-page .contact-hero-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}
.contact-page .hero-shell {
  grid-template-columns: 1fr;
  gap: 0;
}
.contact-page .hero-shell::after {
  inset: 12px 0 0;
  clip-path: polygon(
    0 18px,
    16% 0,
    calc(100% - 28px) 0,
    100% 28px,
    100% 100%,
    0 100%
  );
}
.contact-page .hero-copy {
  max-width: 70ch;
  padding: 22px 0 16px 28px;
}
.contact-page .hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
}
.contact-page .hero-copy p {
  max-width: 58ch;
}
.contact-page .hero-actions {
  margin-top: 22px;
}
.contact-page .contact-callouts {
  max-width: 760px;
}
.contact-page .callout-card {
  padding: 16px;
}
.contact-page .contact-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  gap: 18px 22px;
  align-items: start;
  padding: 18px 22px;
}
.contact-page .contact-hero-panel h3 {
  margin: 0;
  grid-column: 1 / -1;
}
.contact-page .contact-hero-panel ul {
  padding-left: 20px;
}
.contact-page .contact-strip {
  margin-top: 0;
  grid-template-columns: repeat(3, minmax(0, 150px));
  align-content: start;
}
.contact-page .contact-chip {
  padding: 12px 14px;
}
.contact-page .page-hero + .section {
  padding-top: 52px;
}
@media (max-width: 980px) {
  .contact-hero-grid,
  .contact-strip,
  .enquiry-options {
    grid-template-columns: 1fr;
  }
  .contact-callouts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-page .contact-hero-panel {
    grid-template-columns: 1fr;
  }
  .contact-page .contact-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .contact-callouts,
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .contact-page .page-hero {
    padding-top: 100px;
    padding-bottom: 28px;
  }
  .contact-page .hero-copy {
    padding-left: 18px;
  }
  .contact-page .hero-copy h1 {
    max-width: none;
  }
}

.products-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.products-sidebar {
  position: sticky;
  top: 110px;
  padding: 22px;
}
.products-side-nav {
  display: grid;
  gap: 10px;
  margin: 18px 0 20px;
}
.products-side-nav a {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 122, 47, 0.18);
  background: rgba(255, 255, 255, 0.025);
  font-weight: 800;
  color: #ffe4ba;
  transition: 0.18s ease;
}
.products-side-nav a:hover {
  transform: translateX(4px);
  border-color: rgba(255, 122, 47, 0.42);
  background: linear-gradient(
    135deg,
    rgba(255, 122, 47, 0.12),
    rgba(255, 191, 71, 0.06)
  );
}
.sidebar-note {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 122, 47, 0.08);
  border: 1px solid rgba(255, 122, 47, 0.18);
}
.sidebar-note strong {
  display: block;
  margin-bottom: 8px;
  color: #fff0d2;
}
.sidebar-note p {
  margin: 0;
  color: var(--muted);
}
.products-main {
  display: grid;
  gap: 22px;
}
.catalogue-section {
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.015)
  );
  box-shadow: var(--shadow);
}
.catalogue-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 72ch;
}
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.catalogue-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 16px;
  align-items: stretch;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 122, 47, 0.18);
  background: linear-gradient(
    180deg,
    rgba(255, 122, 47, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  transition: 0.2s ease;
}
.catalogue-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 47, 0.4);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}
.catalogue-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}
.catalogue-copy {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.catalogue-copy h3 {
  margin: 0 0 8px;
  font-size: 1.14rem;
  color: #fff2dd;
}
.catalogue-copy p {
  margin: 0;
  color: var(--muted);
}
.catalogue-copy span {
  margin-top: 14px;
  color: #ffcf87;
  font-weight: 800;
}
.support-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 20px;
}
@media (max-width: 1100px) {
  .products-layout {
    grid-template-columns: 1fr;
  }
  .products-sidebar {
    position: static;
  }
  .support-panels {
    grid-template-columns: 1fr;
  }
  .catalogue-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .catalogue-card {
    grid-template-columns: 1fr;
  }
  .catalogue-card img {
    min-height: 210px;
  }
}

/* Products overview v4 */

.catalogue-layout {
  padding: 56px 0 88px;
  background: linear-gradient(180deg, #120f0c 0%, #17110d 100%);
}
.catalogue-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.catalogue-sticky {
  position: sticky;
  top: 110px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 149, 74, 0.18);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}
.sidebar-title {
  margin: 0 0 14px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffbf7d;
  font-weight: 800;
}
.catalogue-sidebar a {
  display: block;
  padding: 12px 14px;
  margin: 0 0 10px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff3ea;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.2s ease;
}
.catalogue-sidebar a:hover {
  background: rgba(255, 122, 47, 0.14);
  border-color: rgba(255, 149, 74, 0.34);
  transform: translateX(4px);
}
.sidebar-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 149, 74, 0.08);
  border: 1px solid rgba(255, 149, 74, 0.18);
  color: #f3ddd0;
}
.sidebar-note p {
  margin: 0.45rem 0 0;
}
.catalogue-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.catalogue-section {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 149, 74, 0.14);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}
.section-heading {
  margin-bottom: 22px;
}
.section-heading h2 {
  margin: 0.35rem 0 0.55rem;
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
}
.section-heading p {
  max-width: 760px;
  color: #d7c0b2;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  overflow: hidden;
  min-height: 190px;
}
.product-card.featured {
  grid-column: span 2;
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #221812;
}
.product-card > div {
  padding: 18px;
}
.product-kicker {
  margin: 0 0 8px;
  color: #ffbf7d;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.product-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}
.product-card p {
  margin: 0;
  color: #dbc6b8;
}
.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: #ff9b57;
  text-decoration: none;
  font-weight: 700;
}
.text-link:hover {
  color: #ffc48a;
}
.catalogue-help {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(255, 122, 47, 0.13),
    rgba(255, 193, 94, 0.08)
  );
  border: 1px solid rgba(255, 149, 74, 0.2);
}
.help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 980px) {
  .catalogue-grid {
    grid-template-columns: 1fr;
  }
  .catalogue-sticky {
    position: static;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card,
  .product-card.featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .product-card img {
    max-height: 220px;
  }
  .catalogue-help {
    flex-direction: column;
    align-items: flex-start;
  }
}

.site-nav a.active::after {
  width: 100%;
}
.detail-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.detail-card,
.process-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  border-radius: var(--radius);
  padding: 22px;
}
.detail-card h3,
.process-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}
.detail-card p,
.process-card p {
  margin: 0;
  color: var(--muted);
}
.step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 900;
  margin-bottom: 12px;
}
@media (max-width: 760px) {
  .detail-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* Visual reset v2 */

:root {
  --bg: #0d0907;
  --bg-2: #16100b;
  --panel: rgba(31, 19, 11, 0.72);
  --panel-2: rgba(52, 31, 18, 0.74);
  --text: #fbf5ee;
  --muted: #d9c7b1;
  --line: rgba(255, 181, 107, 0.18);
  --line-strong: rgba(255, 181, 107, 0.34);
  --accent: #ff7a2f;
  --accent-2: #ffbf47;
  --accent-3: #c65a1d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
  --radius: 26px;
}
html {
  scrollbar-color: rgba(255, 157, 74, 0.48) #100c09;
}
body {
  font-family:
    "Manrope",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(255, 122, 47, 0.16),
      transparent 26%
    ),
    radial-gradient(
      circle at 86% 14%,
      rgba(255, 191, 71, 0.11),
      transparent 22%
    ),
    linear-gradient(180deg, #0b0806 0%, #110c09 22%, #0b0806 60%, #090705 100%);
  position: relative;
  overflow-x: hidden;
}
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
body::before {
  opacity: 0.16;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 86%);
}
body::after {
  opacity: 0.2;
  background:
    linear-gradient(
      120deg,
      transparent 0 18%,
      rgba(255, 122, 47, 0.08) 24%,
      transparent 36%
    ),
    linear-gradient(
      180deg,
      transparent 0 40%,
      rgba(255, 191, 71, 0.04) 68%,
      transparent 100%
    );
}
.wrap {
  width: min(1280px, calc(100% - 48px));
}
.site-header .wrap {
  width: min(1480px, calc(100% - 40px));
}
.site-header {
  top: 0;
  padding-top: 14px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.site-header::after {
  display: none;
}
.header-bar {
  position: relative;
  display: grid;
  grid-template-columns: 224px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 18px;
  background: linear-gradient(
    135deg,
    rgba(32, 21, 13, 0.94),
    rgba(16, 10, 7, 0.92) 52%,
    rgba(30, 18, 11, 0.92)
  );
  border: 1px solid rgba(255, 176, 102, 0.16);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  clip-path: polygon(
    0 0,
    calc(100% - 30px) 0,
    100% 30px,
    100% 100%,
    30px 100%,
    0 calc(100% - 30px)
  );
  isolation: isolate;
}
.header-bar::before,
.header-bar::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.header-bar::before {
  inset: 0;
  opacity: 0.32;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 60px 60px;
}
.header-bar::after {
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(255, 122, 47, 0.92),
    rgba(255, 191, 71, 0.86),
    rgba(255, 122, 47, 0)
  );
  box-shadow: 0 0 24px rgba(255, 122, 47, 0.34);
}
.brand {
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(255, 181, 107, 0.12);
  clip-path: polygon(
    0 0,
    calc(100% - 18px) 0,
    100% 18px,
    100% 100%,
    18px 100%,
    0 calc(100% - 18px)
  );
}
.brand img {
  width: 60px;
  height: 60px;
  padding: 8px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 181, 107, 0.18);
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}
.brand-name,
.site-nav a,
.btn,
.text-link,
.quick-link,
.site-footer h3,
.feature-copy h3,
.mini-card h3,
.detail-card h3,
.process-card h3,
.panel h3,
.scope-box h3,
.callout-card strong,
.contact-hero-panel h3,
.enquiry-card h3,
.contact-info-col h2,
.panel-form h2,
.trust-pill,
.sidebar-title,
.product-card h3,
.catalogue-copy h3,
.product-kicker,
.page-kicker,
.step-index,
.hero-copy .eyebrow {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
}
.brand-name {
  font-size: 1.68rem;
  line-height: 0.9;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}
.brand-sub {
  margin-top: 5px;
  color: #dfcfbe;
  font-size: 0.84rem;
  line-height: 1.15;
  max-width: 12ch;
}
.site-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  overflow-x: visible;
  scrollbar-width: none;
  padding: 8px 10px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(255, 181, 107, 0.12);
  clip-path: none;
}
.site-nav::-webkit-scrollbar {
  display: none;
}
.site-nav a {
  flex: 0 0 auto;
  font-size: 0.84rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #f2e5d7;
  padding: 9px 8px 10px;
  border: 1px solid transparent;
  background: transparent;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.site-nav a::after {
  display: none;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 181, 107, 0.22);
}
.site-nav a.active {
  color: #1a1009;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: rgba(255, 191, 71, 0.5);
  box-shadow: 0 10px 24px rgba(255, 122, 47, 0.2);
}
.site-nav a.active::after {
  display: none;
}
.site-nav a:last-child {
  margin-left: 8px;
  color: #ffe2ba;
  border-color: rgba(255, 181, 107, 0.2);
  background: rgba(255, 122, 47, 0.08);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
.menu-toggle {
  border: 1px solid rgba(255, 181, 107, 0.22);
  color: #fff1dc;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.015)
  );
  padding: 11px 16px;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
main {
  position: relative;
}
.page-hero {
  padding: 110px 0 72px;
  min-height: 540px;
}
.home-page .page-hero {
  min-height: 700px;
  padding-top: 138px;
  padding-bottom: 80px;
}
.page-hero::before {
  background:
    linear-gradient(
      90deg,
      rgba(9, 7, 5, 0.82) 0%,
      rgba(9, 7, 5, 0.56) 42%,
      rgba(9, 7, 5, 0.74) 100%
    ),
    radial-gradient(
      circle at 16% 18%,
      rgba(255, 122, 47, 0.18),
      transparent 25%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.58));
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 74%);
  pointer-events: none;
}
.hero-shell {
  position: relative;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.82fr);
  gap: clamp(30px, 4vw, 64px);
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  align-items: center;
}
.hero-shell::before {
  display: none;
}
.hero-shell::after {
  content: "";
  position: absolute;
  inset: 30px 13% 30px 0;
  background: linear-gradient(
    145deg,
    rgba(74, 45, 24, 0.74),
    rgba(27, 16, 10, 0.44)
  );
  border: 1px solid rgba(255, 176, 102, 0.16);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  clip-path: polygon(
    0 28px,
    15% 0,
    calc(100% - 62px) 0,
    100% 62px,
    100% calc(100% - 36px),
    calc(100% - 84px) 100%,
    0 100%
  );
  backdrop-filter: blur(10px);
}
body:not(.home-page) .hero-shell::after {
  inset: 46px 24% 24px 0;
  background:
    linear-gradient(145deg, rgba(64, 38, 20, 0.68), rgba(24, 15, 10, 0.3)),
    radial-gradient(
      circle at top right,
      rgba(255, 122, 47, 0.12),
      transparent 42%
    );
  clip-path: polygon(
    0 22px,
    22% 0,
    100% 0,
    100% calc(100% - 48px),
    calc(100% - 58px) 100%,
    0 100%
  );
}
.hero-copy,
.hero-media,
.trust-row {
  position: relative;
  z-index: 1;
}
.hero-copy {
  padding: clamp(28px, 3vw, 44px) 0 clamp(24px, 2.6vw, 38px) 34px;
}
.hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 24px rgba(255, 122, 47, 0.28);
}
.hero-copy .eyebrow {
  padding: 10px 14px 11px;
  border-radius: 999px;
  background: rgba(255, 191, 71, 0.1);
  border: 1px solid rgba(255, 191, 71, 0.24);
  font-size: 0.92rem;
  line-height: 1;
  letter-spacing: 0.12em;
}
.hero-copy h1 {
  margin: 20px 0 16px;
  max-width: 8.8ch;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(3.2rem, 6.3vw, 5.3rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero-copy p {
  max-width: 62ch;
  font-size: clamp(1.03rem, 1.4vw, 1.16rem);
  line-height: 1.72;
  color: #e4d4c2;
}
.hero-actions {
  gap: 16px;
  margin-top: 28px;
}
.btn {
  padding: 15px 24px 16px;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  font-size: 1.05rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}
.btn:hover {
  transform: translateY(-3px) translateX(2px);
}
.btn-solid {
  background: linear-gradient(
    135deg,
    var(--accent),
    #ff944e 58%,
    var(--accent-2)
  );
  color: #180f09;
  box-shadow:
    0 18px 34px rgba(255, 122, 47, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}
.btn-ghost {
  border: 1px solid rgba(255, 181, 107, 0.24);
  color: #ffe5bf;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.015)
  );
}
.hero-media {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 181, 107, 0.15);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.015)
  );
  box-shadow: var(--shadow);
  clip-path: polygon(
    0 0,
    calc(100% - 34px) 0,
    100% 34px,
    100% 100%,
    34px 100%,
    0 calc(100% - 34px)
  );
  transform: translateY(22px);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 181, 107, 0.14);
  clip-path: inherit;
  opacity: 0.55;
}
.hero-media img {
  min-height: 320px;
  max-height: 500px;
  clip-path: polygon(
    0 0,
    calc(100% - 20px) 0,
    100% 20px,
    100% 100%,
    20px 100%,
    0 calc(100% - 20px)
  );
}

body.graphic-hero-page .page-hero {
  background-position: center center, center center !important;
  background-repeat: no-repeat, no-repeat !important;
  background-size: auto, contain !important;
}

body.graphic-hero-page .hero-media {
  align-self: center;
  max-width: min(100%, 520px);
}

body.graphic-hero-page .hero-media img {
  width: 100%;
  min-height: 0;
  max-height: min(54vh, 360px);
  object-fit: contain;
  object-position: center;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 28px;
}
.badge-card {
  position: relative;
  padding: 0 0 0 18px;
  background: none;
  border: 0;
  border-radius: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.02rem;
  line-height: 1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: #f8ebd7;
}
.badge-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transform: translateY(-50%) rotate(45deg);
  box-shadow: 0 0 14px rgba(255, 122, 47, 0.34);
}
.trust-row {
  gap: 22px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 181, 107, 0.18);
}
.trust-pill {
  padding: 0 0 0 18px;
  border-radius: 0;
  background: none;
  border: 0;
  border-left: 1px solid rgba(255, 181, 107, 0.18);
  text-align: left;
  font-size: 0.98rem;
  line-height: 1.08;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: #ecd8bf;
}
.section {
  position: relative;
  padding: 74px 0;
}
main .section + .section .wrap {
  position: relative;
  padding-top: 58px;
}
main .section + .section .wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 181, 107, 0.22) 18%,
    rgba(255, 255, 255, 0.04) 100%
  );
}
.section > .wrap > h2,
.section-heading h2 {
  margin: 0 0 18px;
  max-width: min(100%, 22ch);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2.25rem, 3.8vw, 3.9rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-wrap: balance;
}
.section-intro,
.catalogue-heading p,
.section-heading p,
.copy-stack p,
.plain-points li,
.stat span,
.note-band p,
.detail-card p,
.process-card p,
.faq-list p,
.feature-copy p,
.mini-card p,
.panel p,
.scope-box p,
.scope-box ul,
.info-box p,
.callout-card p,
.contact-hero-panel ul,
.enquiry-card p,
.product-card p,
.catalogue-copy p,
.sidebar-note,
.site-footer p,
.site-footer li,
.site-footer a {
  color: #dcc9b2;
}
.open-grid {
  gap: 46px;
}
.copy-stack {
  gap: 18px;
}
.copy-stack p {
  font-size: 1.06rem;
  line-height: 1.78;
}
.plain-points {
  gap: 20px;
}
.plain-points li {
  position: relative;
  padding: 0 0 0 24px;
  border-bottom: 0;
}
.plain-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transform: rotate(45deg);
}
.plain-points strong {
  margin-bottom: 8px;
  color: #fff1dd;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.18rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.stat-strip {
  gap: 28px;
  margin-top: 28px;
}
.stat {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 181, 107, 0.18);
}
.stat strong {
  margin-bottom: 8px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  text-transform: uppercase;
}
.note-band,
.panel,
.contact-hero-panel,
.callout-card,
.scope-box,
.catalogue-sticky,
.catalogue-section,
.catalogue-card,
.product-card,
.catalogue-help,
.info-box,
.enquiry-card,
.sidebar-note {
  border-radius: 0;
  clip-path: polygon(
    0 0,
    calc(100% - 24px) 0,
    100% 24px,
    100% 100%,
    24px 100%,
    0 calc(100% - 24px)
  );
}
.note-band,
.panel,
.contact-hero-panel,
.scope-box,
.catalogue-sticky,
.catalogue-section,
.catalogue-card,
.product-card,
.catalogue-help,
.info-box,
.enquiry-card,
.sidebar-note {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.018)
  );
  border-color: rgba(255, 181, 107, 0.14);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}
.note-band {
  padding: 28px 30px;
}
.note-band h2 {
  max-width: none;
  margin-bottom: 12px;
}
.home-page .note-band {
  position: relative;
  padding: 12px 0 0 34px;
  background: none;
  border: 0;
  box-shadow: none;
  clip-path: none;
}
.home-page .note-band::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 4px;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(255, 122, 47, 0.24);
}
.home-page .note-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 181, 107, 0.26),
    rgba(255, 255, 255, 0.04),
    transparent
  );
}
.mini-grid,
.detail-grid,
.process-grid {
  gap: 30px 24px;
}
.mini-card,
.detail-card,
.process-card {
  position: relative;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0 0 0 24px;
}
.mini-card::before,
.detail-card::before,
.process-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  bottom: 0.3rem;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), rgba(255, 191, 71, 0.1));
  box-shadow: 0 0 18px rgba(255, 122, 47, 0.24);
}
.mini-card h3,
.detail-card h3,
.process-card h3 {
  margin: 0 0 10px;
  font-size: 1.42rem;
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.step-no,
.step-index {
  width: 40px;
  height: 40px;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  font-size: 1.08rem;
}
.faq-list {
  gap: 12px;
}
.faq-list details {
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 181, 107, 0.16);
  border-radius: 0;
  background: none;
}
.faq-list summary {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.12rem;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 48px;
}
.quick-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 20px;
  border: 0;
  border-bottom: 1px solid rgba(255, 181, 107, 0.18);
  border-radius: 0;
  background: none;
  box-shadow: none;
  font-size: 1.28rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff0dd;
}
.quick-link::before {
  display: none;
  counter-increment: quicklink;
  content: "0" counter(quicklink);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  color: rgba(255, 191, 71, 0.34);
}
.home-page .quick-links {
  counter-reset: quicklink;
}
.home-page .quick-link::before {
  display: block;
}
.quick-link:hover {
  transform: translateX(8px);
}
.quick-link span {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #160e08;
  opacity: 1;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}
.home-page .quick-link {
  padding: 18px 0 18px 48px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #ffb56a;
  font-size: 1.14rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}
.text-link:hover::after {
  transform: translateX(4px);
}
.home-page .card-grid {
  align-items: start;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 38px 24px;
}
.home-page .feature-card {
  grid-column: span 4;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.home-page .feature-card:nth-child(1) {
  grid-column: span 5;
}
.home-page .feature-card:nth-child(2) {
  grid-column: span 3;
  margin-top: 72px;
}
.home-page .feature-card:nth-child(3) {
  grid-column: span 4;
  margin-top: 28px;
}
.home-page .feature-card:nth-child(4) {
  grid-column: span 4;
}
.home-page .feature-card:nth-child(5) {
  grid-column: span 5;
  margin-top: 26px;
}
.home-page .feature-card:nth-child(6) {
  grid-column: span 3;
  margin-top: 94px;
}
.home-page .feature-card > a:first-child {
  position: relative;
  display: block;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  clip-path: none;
}
.home-page .feature-card > a:first-child::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 24%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
  pointer-events: none;
  z-index: 1;
}
.home-page .feature-card img {
  display: block;
  width: 100%;
  height: clamp(240px, 28vw, 340px);
  object-fit: contain;
  object-position: center;
  background:
    radial-gradient(circle at top, rgba(255, 122, 47, 0.08), transparent 48%),
    linear-gradient(180deg, rgba(28, 21, 16, 0.96), rgba(10, 8, 6, 0.94));
  border: 1px solid rgba(255, 181, 107, 0.16);
  box-shadow: var(--shadow);
  clip-path: polygon(
    0 0,
    calc(100% - 16px) 0,
    100% 16px,
    100% 100%,
    16px 100%,
    0 calc(100% - 16px)
  );
}
.home-page .feature-card > a:first-child::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -16px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 181, 107, 0.34),
    rgba(255, 255, 255, 0.05),
    transparent
  );
}
.home-page .feature-card:hover > a:first-child {
  transform: translateY(-8px);
}
.home-page .feature-copy {
  position: relative;
  padding: 8px 6px 0 24px;
}
.home-page .feature-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(255, 191, 71, 0.1));
}
.home-page .feature-copy h3 {
  margin-bottom: 8px;
  font-size: 1.7rem;
  line-height: 0.95;
  text-transform: uppercase;
}
.home-page .feature-copy p {
  line-height: 1.75;
}
.product-detail-stack {
  display: grid;
  gap: 42px;
}
.product-section-block {
  display: grid;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 181, 107, 0.16);
}
.product-section-block:first-child {
  padding-top: 0;
  border-top: 0;
}
.product-section-block h2 {
  margin: 0;
  max-width: none;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.product-copy {
  display: grid;
  gap: 16px;
  max-width: 90ch;
}
.product-copy p {
  margin: 0;
  color: #dcc9b2;
  font-size: 1.03rem;
  line-height: 1.8;
}
.product-copy strong {
  color: #fff0dd;
}
.product-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
}
.product-points li {
  min-height: 100%;
}
.table-scroll {
  overflow-x: auto;
  border: 1px solid rgba(255, 181, 107, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.018)
  );
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
  clip-path: polygon(
    0 0,
    calc(100% - 24px) 0,
    100% 24px,
    100% 100%,
    24px 100%,
    0 calc(100% - 24px)
  );
}
.spec-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}
.spec-table th,
.spec-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 181, 107, 0.12);
  text-align: left;
  vertical-align: top;
}
.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}
.spec-table th {
  width: 18%;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff0dd;
}
.spec-table td {
  color: #dcc9b2;
  font-size: 1rem;
  line-height: 1.55;
}
.contact-layout .panel-form,
.panel-form {
  padding: 30px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  background: rgba(14, 10, 8, 0.9);
  border-color: rgba(255, 181, 107, 0.14);
}
.site-footer {
  position: relative;
  margin-top: 90px;
  padding: 88px 0 28px;
  border-top: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 7, 5, 0) 0%,
    rgba(10, 7, 5, 0.88) 16%,
    #090705 100%
  );
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 84px 84px;
}
.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}
.site-footer h3 {
  margin: 0 0 12px;
  font-size: 1.42rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.site-footer p,
.site-footer li,
.site-footer a {
  font-size: 1rem;
  line-height: 1.8;
}
.site-footer a:hover {
  color: #fff0dc;
}
.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 181, 107, 0.16);
}
.legal-page .page-hero {
  padding-bottom: 28px;
}
.legal-page .hero-shell {
  grid-template-columns: 1.1fr 0.9fr;
}
.legal-page .hero-copy h1 {
  max-width: 13ch;
}
.legal-page .hero-copy p {
  max-width: 65ch;
}
.legal-layout {
  display: grid;
  gap: 22px;
}
.legal-card {
  padding: 24px 24px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 191, 71, 0.12);
  background: linear-gradient(
    180deg,
    rgba(33, 24, 17, 0.78),
    rgba(20, 15, 11, 0.92)
  );
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 191, 71, 0.08);
}
.legal-card h2 {
  margin: 0 0 12px;
}
.legal-card h3 {
  margin: 18px 0 8px;
  font-size: 1.03rem;
}
.legal-card p + p {
  margin-top: 12px;
}
.legal-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}
.legal-card li + li {
  margin-top: 8px;
}
.legal-card strong {
  color: #ffe0a7;
}
.policy-note {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 191, 71, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}
.policy-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.policy-link-card {
  display: block;
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 191, 71, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 191, 71, 0.06);
}
.policy-link-card strong {
  display: block;
  margin-bottom: 6px;
  color: #ffe0a7;
}
.policy-link-card span {
  color: var(--muted);
}
@media (max-width: 1180px) {
  .header-bar {
    grid-template-columns: 210px minmax(0, 1fr);
  }
  .footer-grid,
  .policy-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-nav a {
    font-size: 0.84rem;
    padding-inline: 7px;
  }
  .quick-links {
    grid-template-columns: 1fr;
  }
  .home-page .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-points {
    grid-template-columns: 1fr;
  }
  .home-page .feature-card,
  .home-page .feature-card:nth-child(1),
  .home-page .feature-card:nth-child(2),
  .home-page .feature-card:nth-child(3),
  .home-page .feature-card:nth-child(4),
  .home-page .feature-card:nth-child(5),
  .home-page .feature-card:nth-child(6) {
    grid-column: span 1;
    margin-top: 0;
  }
}
@media (max-width: 980px) {
  .header-bar {
    grid-template-columns: 1fr auto;
    align-items: start;
    clip-path: none;
    overflow: visible;
  }
  .brand {
    max-width: 260px;
  }
  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    margin-top: 6px;
  }
  .site-nav {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: min(420px, calc(100vw - 48px));
    flex-direction: column;
    align-items: stretch;
    display: none;
    padding: 14px;
    clip-path: none;
    background: linear-gradient(
      180deg,
      rgba(23, 16, 11, 0.98),
      rgba(11, 8, 6, 0.96)
    );
    border: 1px solid rgba(255, 181, 107, 0.18);
    backdrop-filter: blur(18px);
    box-shadow:
      var(--shadow),
      0 0 0 1px rgba(255, 122, 47, 0.08);
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a,
  .site-nav a:last-child {
    margin-left: 0;
    width: 100%;
  }
  .hero-shell {
    grid-template-columns: 1fr;
  }
  .hero-shell::after {
    inset: 10px 0 0;
    clip-path: none;
  }
  .hero-copy {
    padding: 28px 0 0 26px;
  }
  .hero-media {
    transform: none;
  }
  .open-grid,
  .contact-hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .card-grid,
  .mini-grid,
  .detail-grid,
  .process-grid,
  .stat-strip,
  .scope-grid,
  .trust-row,
  .product-grid,
  .contact-strip,
  .enquiry-options {
    grid-template-columns: 1fr;
  }
  .home-page .card-grid,
  .quick-links {
    grid-template-columns: 1fr;
  }
  .policy-links {
    grid-template-columns: 1fr;
  }
  .table-scroll {
    clip-path: none;
  }
  .section > .wrap > h2,
  .section-heading h2 {
    max-width: none;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: min(1280px, calc(100% - 28px));
  }
  .site-header {
    padding-top: 8px;
  }
  .header-bar {
    padding: 12px;
  }
  .brand {
    gap: 12px;
    padding: 10px 12px;
  }
  .brand img {
    width: 56px;
    height: 56px;
  }
  .brand-name {
    font-size: 1.68rem;
  }
  .brand-sub {
    display: block;
    font-size: 0.9rem;
  }
  .page-hero,
  .home-page .page-hero {
    padding-top: 104px;
    padding-bottom: 62px;
    min-height: auto;
  }
  .hero-shell::after {
    clip-path: none;
  }
  .hero-copy {
    padding: 20px 0 0 18px;
  }
  .hero-copy h1 {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }
  .hero-badges,
  .hero-actions {
    gap: 12px;
  }
  .badge-card,
  .trust-pill {
    font-size: 1rem;
  }
  .section {
    padding: 58px 0;
  }
  main .section + .section .wrap {
    padding-top: 46px;
  }
  .section > .wrap > h2,
  .section-heading h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }
  .mini-card h3,
  .detail-card h3,
  .process-card h3,
  .home-page .feature-copy h3,
  .quick-link,
  .faq-list summary {
    font-size: 1.2rem;
  }
  .home-page .feature-card > a:first-child {
    padding: 0;
  }
  .home-page .feature-card img {
    height: 230px;
  }
  .home-page .quick-link {
    padding: 18px 0 18px 46px;
  }
  .home-page .quick-link::before {
    font-size: 1.45rem;
  }
  .home-page .note-band {
    padding-left: 22px;
  }
}

/* Contact page tightening overrides */
.contact-page .page-hero {
  min-height: 0;
  padding: 92px 0 24px;
}

.contact-page .page-hero::after {
  opacity: 0.18;
  mask-image: none;
}

.contact-page .contact-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 18px;
  align-items: start;
}

.contact-page .hero-shell {
  display: block;
  padding: 24px 26px 22px;
  background: linear-gradient(180deg, rgba(44, 27, 16, 0.9), rgba(20, 14, 10, 0.94));
  border: 1px solid rgba(255, 181, 107, 0.16);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-page .hero-shell::after {
  display: none;
}

.contact-page .hero-copy {
  max-width: none;
  padding: 0 0 0 22px;
}

.contact-page .hero-copy::before {
  left: 0;
  top: 4px;
  bottom: 4px;
}

.contact-page .hero-copy h1 {
  max-width: 10.2ch;
  font-size: clamp(2.6rem, 4.8vw, 4.3rem);
}

.contact-page .hero-copy p {
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.68;
}

.contact-page .hero-actions {
  margin-top: 22px;
}

.contact-page .contact-callouts {
  margin-top: 16px;
}

.contact-page .callout-card {
  padding: 15px 16px;
}

.contact-page .contact-hero-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 20px;
  align-self: stretch;
}

.contact-page .contact-hero-panel h3 {
  margin-bottom: 0;
}

.contact-page .contact-hero-panel ul {
  gap: 8px;
  line-height: 1.55;
}

.contact-page .contact-strip {
  grid-template-columns: 1fr;
  gap: 10px;
}

.contact-page .contact-chip {
  padding: 11px 14px;
}

.contact-page .page-hero + .section {
  padding-top: 38px;
}

.contact-page .section > .wrap > h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

@media (max-width: 980px) {
  .contact-page .contact-hero-grid,
  .contact-page .contact-layout,
  .contact-page .enquiry-options {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .contact-page .page-hero {
    padding-top: 88px;
    padding-bottom: 18px;
  }

  .contact-page .hero-shell {
    padding: 18px 18px 16px;
  }

  .contact-page .hero-copy {
    padding-left: 18px;
  }

  .contact-page .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  .contact-page .contact-callouts,
  .contact-page .contact-strip {
    grid-template-columns: 1fr;
  }
}

body.compact-contact-page .page-hero {
  padding-top: 84px;
  padding-bottom: 24px;
  min-height: 0;
}

body.compact-contact-page .contact-hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.82fr);
  gap: 20px;
  align-items: start;
}

body.compact-contact-page .hero-shell {
  gap: 0;
}

body.compact-contact-page .hero-shell::after {
  inset: 14px 14% 12px 0;
}

body.compact-contact-page .hero-copy {
  padding: 16px 0 12px 20px;
}

body.compact-contact-page .hero-copy .eyebrow {
  padding: 8px 12px 9px;
  font-size: 0.82rem;
}

body.compact-contact-page .hero-copy h1 {
  max-width: 13.2ch;
  margin: 14px 0 10px;
  font-size: clamp(2.25rem, 3.8vw, 3.65rem);
  line-height: 0.93;
}

body.compact-contact-page .hero-copy p {
  max-width: 46ch;
  font-size: 0.97rem;
  line-height: 1.58;
}

body.compact-contact-page .hero-actions {
  margin-top: 16px;
  gap: 12px;
}

body.compact-contact-page .hero-actions .btn {
  padding: 12px 18px 13px;
  font-size: 0.93rem;
}

body.compact-contact-page .contact-callouts {
  margin-top: 14px;
  gap: 12px;
}

body.compact-contact-page .callout-card {
  padding: 16px;
}

body.compact-contact-page .callout-card strong {
  font-size: 0.94rem;
}

body.compact-contact-page .callout-card p {
  font-size: 0.94rem;
  line-height: 1.5;
}

body.compact-contact-page .contact-hero-panel {
  padding: 20px;
  border-radius: 22px;
}

body.compact-contact-page .contact-hero-panel h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

body.compact-contact-page .contact-hero-panel ul {
  gap: 8px;
  font-size: 0.95rem;
}

body.compact-contact-page .contact-strip {
  margin-top: 14px;
}

body.compact-contact-page .contact-chip {
  padding: 12px 14px;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  body.compact-contact-page .contact-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body.compact-contact-page .page-hero {
    padding-top: 80px;
    padding-bottom: 18px;
  }

  body.compact-contact-page .hero-copy {
    padding: 16px 0 8px 16px;
  }

  body.compact-contact-page .hero-copy h1 {
    max-width: none;
    font-size: clamp(2rem, 9.6vw, 2.8rem);
  }

  body.compact-contact-page .hero-copy p,
  body.compact-contact-page .callout-card p,
  body.compact-contact-page .contact-hero-panel ul {
    font-size: 0.94rem;
  }
}

/* Tighter hero treatment for the homepage and core service pages */
body.compact-hero-page:not(.contact-page) .page-hero {
  min-height: 0;
  padding-top: 74px;
  padding-bottom: 22px;
}

body.compact-hero-page:not(.contact-page) .hero-shell {
  grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.74fr);
  gap: 20px;
  align-items: center;
}

body.compact-hero-page:not(.contact-page) .hero-shell::after {
  inset: 14px 18% 12px 0;
}

body.compact-hero-page:not(.contact-page) .hero-copy {
  padding: 16px 0 12px 20px;
}

body.compact-hero-page:not(.contact-page) .hero-copy .eyebrow {
  padding: 8px 12px 9px;
  font-size: 0.82rem;
}

body.compact-hero-page:not(.contact-page) .hero-copy h1 {
  max-width: 13.6ch;
  margin: 14px 0 10px;
  font-size: clamp(2.25rem, 3.7vw, 3.65rem);
  line-height: 0.93;
}

body.compact-hero-page:not(.contact-page) .hero-copy p {
  max-width: 46ch;
  font-size: 0.97rem;
  line-height: 1.58;
}

body.compact-hero-page:not(.contact-page) .hero-actions {
  margin-top: 16px;
  gap: 12px;
}

body.compact-hero-page:not(.contact-page) .hero-actions .btn {
  padding: 12px 18px 13px;
  font-size: 0.93rem;
}

body.compact-hero-page:not(.contact-page) .hero-badges {
  margin-top: 14px;
  gap: 8px 12px;
}

body.compact-hero-page:not(.contact-page) .badge-card {
  padding-left: 14px;
  font-size: 0.88rem;
}

body.compact-hero-page:not(.contact-page) .hero-media {
  max-width: 430px;
  padding: 12px;
  justify-self: end;
  transform: none;
}

body.compact-hero-page:not(.contact-page) .hero-media img {
  min-height: 180px;
  max-height: 290px;
}

body.compact-hero-page.graphic-hero-page .hero-media {
  max-width: min(100%, 500px);
}

body.compact-hero-page.graphic-hero-page .hero-media img {
  min-height: 0;
  max-height: min(50vh, 320px);
}

body.compact-hero-page:not(.contact-page) .trust-row {
  gap: 10px 12px;
  margin-top: 14px;
  padding-top: 14px;
}

body.compact-hero-page:not(.contact-page) .trust-pill {
  padding: 10px 12px;
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  body.compact-hero-page:not(.contact-page) .hero-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  body.compact-hero-page:not(.contact-page) .hero-shell::after {
    inset: 12px 0 0;
  }

  body.compact-hero-page:not(.contact-page) .hero-media {
    max-width: 420px;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  body.compact-hero-page:not(.contact-page) .page-hero {
    padding-top: 78px;
    padding-bottom: 18px;
  }

  body.compact-hero-page:not(.contact-page) .hero-copy {
    padding: 16px 0 8px 16px;
  }

  body.compact-hero-page:not(.contact-page) .hero-copy h1 {
    max-width: none;
    font-size: clamp(2rem, 9.6vw, 2.7rem);
  }

  body.compact-hero-page:not(.contact-page) .hero-copy p {
    font-size: 0.94rem;
  }

  body.compact-hero-page:not(.contact-page) .hero-media {
    max-width: none;
    padding: 10px;
    transform: none;
  }

  body.compact-hero-page:not(.contact-page) .hero-media img {
    min-height: 160px;
    max-height: 240px;
  }

  body.graphic-hero-page .hero-media img {
    max-height: 260px;
  }
}

/* Store UI */
.store-purchase-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 181, 107, 0.22);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.015)
  );
}

.store-label {
  display: block;
  margin-bottom: 6px;
  color: #ffcf95;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-price {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  color: #fff4e7;
}

.store-price.is-muted {
  color: #d9c5ae;
  font-size: 1.08rem;
}

.store-panel-copy {
  display: grid;
  gap: 10px;
}

.store-variant-note {
  color: #d7c3aa;
  font-size: 0.94rem;
}

.store-variant-picker {
  display: grid;
  gap: 8px;
  max-width: 320px;
  color: #f4dfbf;
  font-weight: 700;
}

.store-variant-picker span {
  font-size: 0.9rem;
}

.store-variant-select {
  width: 100%;
  border: 1px solid rgba(255, 181, 107, 0.18);
  border-radius: 16px;
  background: rgba(18, 15, 12, 0.9);
  color: #fff2de;
  padding: 12px 14px;
  font: inherit;
}

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

.store-quantity-picker {
  display: grid;
  gap: 6px;
  min-width: 88px;
  color: #f4dfbf;
  font-weight: 700;
}

.store-quantity-picker span {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.store-quantity-input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 181, 107, 0.18);
  border-radius: 16px;
  background: rgba(18, 15, 12, 0.9);
  color: #fff2de;
  padding: 10px 14px;
  font: inherit;
  font-weight: 700;
}

.store-add-btn {
  border: 0;
  cursor: pointer;
}

.store-card-meta {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 181, 107, 0.14);
}

.store-card-price {
  color: #fff2de;
  font-weight: 800;
  font-size: 1.18rem;
  line-height: 1.1;
}

.store-card-price.is-muted {
  color: #ccb69d;
}

.store-card-selection {
  margin: 0;
  color: #d9c5ae;
  font-size: 0.94rem;
}

.store-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 12px;
}

.store-card-picker {
  max-width: none;
}

.store-inline-add {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.store-inline-notice {
  margin-top: 6px;
  color: #ffd79a;
  font-size: 0.9rem;
}

.cart-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 18px;
  border: 1px solid rgba(255, 191, 71, 0.22);
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(60, 39, 24, 0.84),
    rgba(28, 18, 12, 0.88)
  );
  color: #fff0da;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(16px) saturate(130%);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 0 1px rgba(255, 181, 107, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.cart-fab::before,
.cart-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cart-fab::before {
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(125deg, rgba(255, 191, 71, 0.18), transparent 34%);
  z-index: -1;
}

.cart-fab::after {
  inset: 1px;
  border-radius: 18px;
  border: 1px solid rgba(255, 191, 71, 0.08);
  opacity: 0.9;
}

.cart-fab:hover,
.cart-fab:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 191, 71, 0.38);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 122, 47, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 0 0 1px rgba(255, 181, 107, 0.1);
}

.cart-fab span {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  min-height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 191, 71, 0.24);
  background: linear-gradient(
    135deg,
    rgba(255, 122, 47, 0.92),
    rgba(255, 191, 71, 0.92)
  );
  color: #1a1009;
  font-size: 0.92rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 8px 16px rgba(255, 122, 47, 0.22);
}

.checkout-section {
  padding-top: 108px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: start;
}

.checkout-copy h1 {
  margin: 16px 0 14px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.checkout-panel {
  min-height: 360px;
}

.checkout-app {
  display: grid;
  gap: 24px;
}

.checkout-summary,
.checkout-fields {
  display: grid;
  gap: 16px;
}

.checkout-summary h2,
.checkout-fields h2,
.checkout-fields h3 {
  margin: 0;
}

.checkout-lines {
  display: grid;
  gap: 12px;
}

.checkout-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 181, 107, 0.12);
}

.checkout-line span {
  display: block;
  color: #cfbda8;
  font-size: 0.92rem;
}

.checkout-qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.checkout-qty button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 181, 107, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff2de;
  font: inherit;
  cursor: pointer;
}

.checkout-totals {
  display: grid;
  gap: 8px;
  padding-top: 8px;
}

.checkout-totals div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.checkout-totals .grand-total {
  padding-top: 8px;
  border-top: 1px solid rgba(255, 181, 107, 0.16);
  font-size: 1.08rem;
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkout-form-grid label {
  display: grid;
  gap: 8px;
  color: #f3dec0;
  font-weight: 700;
}

.checkout-form-grid input {
  width: 100%;
  background: #120f0c;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
}

.shipping-choice-list {
  display: grid;
  gap: 12px;
}

.shipping-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 181, 107, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.shipping-choice span {
  display: grid;
  gap: 3px;
}

.shipping-choice em {
  color: #cdb8a3;
  font-size: 0.92rem;
  font-style: normal;
}

.store-message {
  padding: 14px 16px;
  border: 1px solid rgba(255, 181, 107, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #ffe7c0;
}

.store-message.is-warning {
  border-color: rgba(255, 191, 71, 0.34);
}

.store-message.is-success {
  border-color: rgba(47, 179, 111, 0.34);
}

.paypal-shell {
  min-height: 46px;
}

@media (max-width: 980px) {
  .store-purchase-panel,
  .checkout-grid,
  .checkout-form-grid {
    grid-template-columns: 1fr;
  }

  .store-purchase-panel {
    align-items: start;
  }

  .checkout-line,
  .shipping-choice {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .cart-fab {
    right: 16px;
    bottom: 16px;
    padding: 12px 16px;
  }

  .store-card-meta {
    gap: 14px;
  }
}

/* Unified button polish */
:root {
  --action-shell-dark: linear-gradient(
    135deg,
    rgba(60, 39, 24, 0.84),
    rgba(28, 18, 12, 0.88)
  );
  --action-shell-bright: linear-gradient(
    135deg,
    rgba(255, 122, 47, 0.96),
    rgba(255, 191, 71, 0.94)
  );
  --action-border: rgba(255, 191, 71, 0.22);
  --action-shadow:
    0 18px 36px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 0 1px rgba(255, 181, 107, 0.08);
}

.store-purchase-panel .btn,
body.store-catalog-page .store-card-meta .btn,
body.storefront-page .btn,
body.store-checkout-page .btn,
body.storefront-page .menu-toggle,
body.store-checkout-page .menu-toggle,
.store-inline-add,
.checkout-qty button {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  max-width: 100%;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--action-border);
  border-radius: 20px;
  clip-path: none;
  background: var(--action-shell-dark);
  color: #fff0da;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(16px) saturate(130%);
  box-shadow: var(--action-shadow);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    background 0.22s ease;
}

.store-purchase-panel .btn::before,
body.store-catalog-page .store-card-meta .btn::before,
body.storefront-page .btn::before,
body.store-checkout-page .btn::before,
body.storefront-page .menu-toggle::before,
body.store-checkout-page .menu-toggle::before,
.store-inline-add::before,
.checkout-qty button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(125deg, rgba(255, 191, 71, 0.18), transparent 34%);
}

.store-purchase-panel .btn:hover,
.store-purchase-panel .btn:focus-visible,
body.store-catalog-page .store-card-meta .btn:hover,
body.store-catalog-page .store-card-meta .btn:focus-visible,
body.storefront-page .btn:hover,
body.storefront-page .btn:focus-visible,
body.store-checkout-page .btn:hover,
body.store-checkout-page .btn:focus-visible,
body.storefront-page .menu-toggle:hover,
body.storefront-page .menu-toggle:focus-visible,
body.store-checkout-page .menu-toggle:hover,
body.store-checkout-page .menu-toggle:focus-visible,
.store-inline-add:hover,
.store-inline-add:focus-visible,
.checkout-qty button:hover,
.checkout-qty button:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 191, 71, 0.38);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 122, 47, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 0 0 1px rgba(255, 181, 107, 0.1);
}

.store-purchase-panel .btn-solid,
body.store-catalog-page .store-card-meta .btn-solid,
body.storefront-page .btn-solid,
body.store-checkout-page .btn-solid,
.store-inline-add {
  background: var(--action-shell-bright);
  color: #1a1009;
  border-color: rgba(255, 191, 71, 0.28);
  box-shadow:
    0 18px 36px rgba(255, 122, 47, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.store-purchase-panel .btn-ghost,
body.store-catalog-page .store-card-meta .btn-ghost,
body.storefront-page .btn-ghost,
body.storefront-page .menu-toggle,
body.store-checkout-page .btn-ghost,
body.store-checkout-page .menu-toggle {
  background: var(--action-shell-dark);
  color: #fff0da;
}

.store-actions .btn,
.store-actions .store-add-btn,
body.store-catalog-page .store-card-meta .btn,
body.storefront-page .btn,
body.store-checkout-page .btn {
  min-width: 0;
}

body.storefront-page .menu-toggle,
body.store-checkout-page .menu-toggle {
  min-height: 42px;
  padding: 10px 16px;
}

.store-inline-add {
  min-height: 40px;
  padding: 10px 15px 10px 16px;
  font-size: 0.88rem;
}

.checkout-qty {
  gap: 8px;
}

.checkout-qty button {
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  font-size: 1rem;
}

@media (max-width: 760px) {
  .store-purchase-panel .btn,
  body.storefront-page .btn,
  body.store-checkout-page .btn,
  body.storefront-page .menu-toggle,
  body.store-checkout-page .menu-toggle,
  .store-inline-add {
    min-height: 42px;
    padding: 11px 16px;
  }

  .checkout-qty button {
    width: 40px;
    height: 40px;
    min-height: 40px;
  }
}

.storefront-hero {
  padding-top: 118px;
  padding-bottom: 26px;
}

.storefront-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 26px;
  align-items: stretch;
}

.storefront-hero-copy h1 {
  margin: 16px 0 14px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.storefront-hero-copy p {
  max-width: 760px;
}

.storefront-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.storefront-anchor-nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 181, 107, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #ffe2ba;
  text-decoration: none;
}

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

.storefront-stat-card {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 181, 107, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(17, 13, 10, 0.92);
}

.storefront-stat-card span {
  color: #d7c3aa;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.storefront-stat-card strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.storefront-status-band {
  padding-top: 0;
}

.storefront-section-wrap {
  padding-top: 8px;
}

.storefront-main {
  display: grid;
  gap: 36px;
}

.storefront-section {
  display: grid;
  gap: 18px;
}

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

.storefront-card {
  display: grid;
  grid-template-columns: minmax(170px, 210px) minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 181, 107, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(17, 13, 10, 0.92);
  scroll-margin-top: 110px;
}

.storefront-card.is-quote-only {
  border-color: rgba(255, 181, 107, 0.1);
}

.storefront-media img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 181, 107, 0.12);
}

.storefront-body {
  display: grid;
  gap: 16px;
  align-content: start;
}

.storefront-copy {
  display: grid;
  gap: 10px;
}

.storefront-copy h3 {
  margin: 0;
}

.storefront-copy p {
  margin: 0;
}

.storefront-buy {
  display: grid;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 181, 107, 0.12);
}

.storefront-selection {
  margin: 0;
  color: #d9c5ae;
  font-size: 0.94rem;
}

body.storefront-page .store-actions {
  align-items: center;
}

@media (max-width: 1080px) {
  .storefront-hero-grid,
  .storefront-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .storefront-card {
    grid-template-columns: 1fr;
  }

  .storefront-media img {
    min-height: 220px;
  }
}

.media-editor-shell {
  position: relative;
  z-index: 140;
}

.media-editor-toggle {
  position: fixed;
  top: 92px;
  right: 20px;
  z-index: 145;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 191, 71, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 122, 47, 0.92), rgba(255, 191, 71, 0.92)),
    rgba(26, 18, 12, 0.94);
  color: #fff7ee;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.35),
    0 10px 24px rgba(255, 122, 47, 0.22);
  cursor: pointer;
  touch-action: none;
}

.media-editor-toggle:hover,
.media-editor-toggle:focus-visible {
  transform: translateY(-2px);
}

.media-editor-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 141;
}

.media-editor-frame-surface {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 0;
}

.media-editor-generated-frame {
  width: 100%;
}

body.media-editor-active .media-editor-target {
  outline: 2px dashed rgba(255, 191, 71, 0.72);
  outline-offset: 3px;
  cursor: pointer;
}

body.media-editor-active .media-editor-target.is-media-editor-selected {
  outline-color: rgba(255, 122, 47, 0.94);
  box-shadow: 0 0 0 6px rgba(255, 122, 47, 0.14);
}

.media-editor-badge {
  position: absolute;
  pointer-events: auto;
  z-index: 142;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 191, 71, 0.34);
  border-radius: 999px;
  background: rgba(14, 10, 7, 0.94);
  color: #fff3e2;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow:
    0 12px 22px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 191, 71, 0.12);
  cursor: pointer;
}

.media-editor-badge:hover,
.media-editor-badge:focus-visible,
.media-editor-badge.is-active {
  background:
    linear-gradient(135deg, rgba(255, 122, 47, 0.96), rgba(255, 191, 71, 0.92)),
    rgba(14, 10, 7, 0.98);
  color: #24150c;
}

.media-editor-panel {
  position: fixed;
  top: 148px;
  right: 20px;
  bottom: 20px;
  width: min(380px, calc(100vw - 20px));
  max-height: calc(100vh - 16px);
  padding: 16px;
  border: 1px solid rgba(255, 191, 71, 0.22);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(41, 28, 18, 0.98), rgba(18, 12, 8, 0.98)),
    rgba(17, 11, 7, 0.98);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 191, 71, 0.12);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 148, 63, 0.92) rgba(255, 255, 255, 0.05);
  scrollbar-gutter: stable;
  z-index: 146;
}

.media-editor-panel::-webkit-scrollbar {
  width: 10px;
}

.media-editor-panel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}

.media-editor-panel::-webkit-scrollbar-thumb {
  border: 2px solid rgba(17, 11, 7, 0.98);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 122, 47, 0.96), rgba(255, 191, 71, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 245, 230, 0.18);
}

.media-editor-panel::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(255, 143, 67, 0.98), rgba(255, 204, 102, 0.94));
}

.media-editor-panel[hidden] {
  display: none;
}

.media-editor-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  cursor: move;
  touch-action: none;
}

.media-editor-panel-head h2 {
  margin: 4px 0 6px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.68rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.media-editor-kicker {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 191, 71, 0.12);
  color: #ffd69b;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-editor-slot-label {
  margin: 0;
  color: #e1ceb7;
  font-size: 0.92rem;
}

.media-editor-close {
  min-width: 36px;
  min-height: 36px;
  border: 1px solid rgba(255, 191, 71, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff3e2;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.media-editor-current {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 191, 71, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.media-editor-current-preview {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.media-editor-current-preview img {
  width: 100%;
  height: 100%;
  min-height: 76px;
  object-fit: cover;
}

.media-editor-current-copy {
  display: grid;
  align-content: center;
  gap: 6px;
}

.media-editor-current-name {
  display: block;
  font-size: 1rem;
}

.media-editor-current-meta {
  color: #cfbaa1;
  font-size: 0.84rem;
}

.media-editor-size-card,
.media-editor-position-card,
.media-editor-frame-card {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 191, 71, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.media-editor-size-head,
.media-editor-position-head,
.media-editor-frame-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.media-editor-size-head strong,
.media-editor-position-head strong,
.media-editor-frame-head strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.media-editor-size-value,
.media-editor-position-value,
.media-editor-frame-width-value,
.media-editor-frame-height-value {
  color: #ffcf92;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.media-editor-size-note,
.media-editor-position-note,
.media-editor-frame-note {
  margin: 0;
  color: #dbc7ad;
  font-size: 0.84rem;
}

.media-editor-size-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.media-editor-position-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.media-editor-position-grid .btn,
.media-editor-frame-actions .btn,
.media-editor-size-actions .btn {
  width: 100%;
}

.media-editor-frame-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.media-editor-frame-dimension {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 191, 71, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.media-editor-frame-dimension-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.media-editor-frame-dimension-head strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.media-editor-frame-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.media-editor-panel .btn {
  min-height: 34px;
  padding: 8px 10px;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.media-editor-status {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  color: #fff6ee;
  font-size: 0.84rem;
}

.media-editor-status.is-working {
  background: rgba(255, 191, 71, 0.14);
  border: 1px solid rgba(255, 191, 71, 0.18);
}

.media-editor-status.is-success {
  background: rgba(44, 136, 82, 0.2);
  border: 1px solid rgba(72, 176, 108, 0.28);
}

.media-editor-status.is-warning,
.media-editor-status.is-error {
  background: rgba(179, 68, 42, 0.18);
  border: 1px solid rgba(235, 130, 93, 0.22);
}

.media-editor-upload-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.media-editor-upload-label {
  display: grid;
  gap: 6px;
  color: #f2dfcb;
  font-weight: 700;
  font-size: 0.88rem;
}

.media-editor-upload-label input {
  width: 100%;
}

.media-editor-library {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  height: auto;
  min-height: 0;
}

.media-editor-library-head {
  display: grid;
  gap: 8px;
}

.media-editor-library-head strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.media-editor-search {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 191, 71, 0.18);
  border-radius: 12px;
  background: rgba(10, 7, 5, 0.82);
  color: #fff6ee;
  font-size: 0.88rem;
}

.media-editor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
  overflow: visible;
  padding-right: 4px;
}

.media-editor-asset {
  display: grid;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 191, 71, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff4e6;
  text-align: left;
  cursor: pointer;
}

.media-editor-asset:hover,
.media-editor-asset:focus-visible,
.media-editor-asset.is-current {
  border-color: rgba(255, 122, 47, 0.5);
  box-shadow: 0 0 0 1px rgba(255, 122, 47, 0.18);
}

.media-editor-asset img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  border-radius: 12px;
}

.media-editor-asset strong {
  display: block;
  font-size: 0.86rem;
  line-height: 1.2;
  word-break: break-word;
}

.media-editor-asset span {
  color: #d8c2a7;
  font-size: 0.76rem;
}

.media-editor-empty {
  padding: 12px;
  border: 1px dashed rgba(255, 191, 71, 0.2);
  border-radius: 14px;
  color: #d8c2a7;
  font-size: 0.84rem;
}

@media (max-width: 820px) {
  .media-editor-toggle {
    top: 74px;
    right: 12px;
    left: 12px;
    width: auto;
  }

  .media-editor-panel {
    top: 130px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-height: calc(100vh - 12px);
    padding: 14px;
  }

  .media-editor-current {
    grid-template-columns: 1fr;
  }

  .media-editor-library {
    height: auto;
  }

  .media-editor-size-actions {
    grid-template-columns: 1fr;
  }

  .media-editor-position-grid,
  .media-editor-frame-grid,
  .media-editor-frame-actions {
    grid-template-columns: 1fr;
  }
}
