:root {
  --bg: #f4efe8;
  --bg-soft: #fbf8f3;
  --bg-card: rgba(255, 255, 255, 0.78);
  --bg-card-strong: rgba(255, 255, 255, 0.94);
  --surface: #ffffff;
  --border: rgba(70, 88, 84, 0.12);
  --border-strong: rgba(70, 88, 84, 0.22);
  --text: #213035;
  --text-soft: #5f6c72;
  --heading: #203036;
  --accent: #6a8b7c;
  --accent-strong: #46685a;
  --accent-pale: #dce8df;
  --shadow: 0 24px 60px rgba(35, 45, 42, 0.09);
  --shadow-soft: 0 18px 40px rgba(35, 45, 42, 0.06);
  --radius-xl: 14px;
  --radius-lg: 10px;
  --radius-md: 8px;
  --radius-sm: 6px;
  --container: 100%;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --display-modern: "Syne", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(212, 226, 218, 0.7), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(212, 220, 232, 0.55), transparent 22%),
    linear-gradient(180deg, #f6f2eb 0%, #f3eee7 52%, #f9f6f1 100%);
  min-height: 100vh;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -1;
  pointer-events: none;
  filter: blur(14px);
}

.page-shell::before {
  top: 12%;
  left: -8rem;
  width: 18rem;
  height: 18rem;
  background: rgba(204, 221, 211, 0.55);
  border-radius: 50%;
}

.page-shell::after {
  right: -7rem;
  bottom: 10%;
  width: 16rem;
  height: 16rem;
  background: rgba(210, 217, 230, 0.52);
  border-radius: 50%;
}

.container {
  width: calc(100% - clamp(1rem, 2.2vw, 2rem));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(70, 88, 84, 0.08);
  padding-top: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: auto;
  padding: 1.05rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

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

.brand-mark {
  width: clamp(15rem, 19vw, 18.5rem);
  height: auto;
  object-fit: contain;
}

.brand-copy {
  display: none;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--heading);
}

.brand-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  color: var(--text-soft);
  font-size: 1rem;
  transition: color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--heading);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--accent-strong);
}

.mobile-nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.65);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  cursor: pointer;
}

.mobile-nav-toggle span {
  width: 1rem;
  height: 2px;
  background: var(--heading);
  border-radius: 999px;
}

.hero {
  padding: 0 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.98fr);
  gap: 2.2rem;
  align-items: stretch;
}

.hero-frame {
  width: min(calc(100% - 2rem), 1430px);
  margin: 0 auto;
}

.hero-copy,
.hero-visual,
.hero-copy-card,
.hero-side-panel,
.hero-feature-card,
.pathway-card,
.project-card,
.store-main,
.cart-card,
.support-mini-card,
.social-card,
.checkout-copy,
.checkout-form {
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), opacity 700ms ease;
}

.is-visible {
  transform: none;
  opacity: 1;
}

.eyebrow,
.card-kicker,
.project-type,
.footer-heading {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-strong);
}

.hero h1,
.section-heading h2,
.spotlight-card h2,
.cart-card h3,
.support-mini-card h3,
.social-card h3,
.checkout-copy h2 {
  margin: 0;
  font-family: var(--serif);
  color: var(--heading);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.hero h1 {
  margin-top: 0.85rem;
  max-width: 8.9ch;
  font-size: clamp(4rem, 5.9vw, 5.55rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.hero-lead,
.section-heading p,
.spotlight-card p,
.support-card li,
.pathway-card p,
.project-overlay p,
.cart-note,
.support-mini-card p,
.social-card p,
.checkout-copy p,
.footer-brand p {
  color: var(--text-soft);
  line-height: 1.7;
}

.hero-lead {
  margin: 1.2rem 0 0;
  max-width: 32rem;
  font-size: 1rem;
}

.hero-actions,
.cart-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions {
  margin-top: 1.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-strong);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.68);
  color: var(--heading);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--border-strong);
}

.metric-row {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.hero-metrics {
  position: absolute;
  left: 3.25rem;
  right: calc(min(27rem, 33%) + 5rem);
  bottom: 2.35rem;
  z-index: 3;
}

.metric-card,
.pathway-card,
.cart-card,
.support-mini-card,
.checkout-form,
.checkout-copy {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.metric-card {
  min-height: 7rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.86);
}

.metric-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--heading);
}

.metric-card span {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--text-soft);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1rem;
  min-height: 780px;
  padding: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(70, 88, 84, 0.1);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(246, 242, 236, 0.96) 0%, rgba(246, 242, 236, 0.84) 19%, rgba(246, 242, 236, 0.55) 36%, rgba(246, 242, 236, 0.18) 56%, rgba(246, 242, 236, 0.06) 72%, rgba(246, 242, 236, 0.12) 100%),
    radial-gradient(circle at 11% 18%, rgba(255, 255, 255, 0.76), transparent 26%);
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(21, 28, 30, 0.01) 0%, rgba(21, 28, 30, 0.03) 55%, rgba(21, 28, 30, 0.16) 100%);
  pointer-events: none;
}

.hero-stage-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 0;
  border: 0;
  pointer-events: none;
}

.hero-logo-plaque {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 3;
  width: min(24rem, calc(100% - 3rem));
  padding: 0.85rem 1rem 1rem;
  border-radius: 1.7rem;
  border: 1px solid rgba(84, 103, 100, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(244, 248, 245, 0.68)),
    rgba(255, 255, 255, 0.52);
  box-shadow: 0 24px 50px rgba(35, 45, 42, 0.12);
  backdrop-filter: blur(20px);
}

.hero-logo-image {
  width: 100%;
  max-width: 22rem;
}

.hero-image-card {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: inherit;
  overflow: hidden;
  min-height: 100%;
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 23, 24, 0.05) 0%, rgba(16, 23, 24, 0.01) 32%, rgba(16, 23, 24, 0.18) 100%),
    linear-gradient(90deg, rgba(18, 26, 28, 0.04) 0%, rgba(18, 26, 28, 0.01) 42%, rgba(18, 26, 28, 0.08) 100%);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-copy-card {
  position: absolute;
  left: 3.25rem;
  top: 2.25rem;
  z-index: 3;
  width: min(53rem, calc(100% - 35rem));
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  backdrop-filter: none;
}

.hero-copy-reference .eyebrow {
  max-width: 28rem;
  color: var(--accent-strong);
}

.hero-copy-reference .hero-lead {
  color: rgba(33, 48, 53, 0.84);
  max-width: 35rem;
}

.hero-side-panel {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: min(27rem, 33%);
  min-height: 7.5rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-lg);
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(250, 251, 249, 0.5)),
    rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.hero-side-panel h2 {
  margin: 0.45rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.95rem, 2.45vw, 2.9rem);
  line-height: 0.98;
  color: var(--heading);
}

.hero-side-panel p:last-child {
  margin: 0.8rem 0 0;
  color: rgba(33, 48, 53, 0.82);
}

.hero-feature-card {
  position: absolute;
  top: 9.35rem;
  right: 2rem;
  bottom: 2rem;
  width: min(27rem, 33%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 3;
}

.hero-feature-card img,
.hero-feature-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-feature-card img {
  object-fit: cover;
  object-position: center center;
}

.hero-feature-scrim {
  background:
    linear-gradient(180deg, rgba(18, 28, 31, 0.02), rgba(18, 28, 31, 0.55)),
    linear-gradient(0deg, rgba(18, 28, 31, 0.14), transparent 48%);
}

.hero-feature-copy {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 1;
  color: #ffffff;
}

.hero-feature-copy .card-kicker {
  color: rgba(245, 248, 247, 0.88);
}

.hero-feature-copy h3 {
  margin: 0.55rem 0 0;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.02;
  color: #ffffff;
}

.support-card {
  right: 1.25rem;
  bottom: 1.25rem;
  width: min(17rem, calc(100% - 5rem));
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-md);
}

.support-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
  color: var(--text-soft);
}

.support-card li + li {
  margin-top: 0.5rem;
}

.resources-landing {
  padding-top: 2.2rem;
}

.resources-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(18rem, 0.74fr);
  gap: 1.3rem;
  align-items: stretch;
}

.resources-intro,
.resources-support,
.resource-card,
.resource-section-header {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.resources-intro,
.resources-support,
.resource-section-header,
.resource-card {
  padding: 1.45rem;
}

.resources-intro h1 {
  margin: 0.7rem 0 0;
  font-family: var(--display-modern);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--heading);
}

.resources-intro > p:not(.eyebrow),
.resources-support p,
.resource-section-header p,
.resource-card-copy p,
.resource-link-note {
  margin: 0.9rem 0 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.resources-support h2 {
  margin: 0.5rem 0 0;
  font-family: var(--display-modern);
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--heading);
}

.resources-actions,
.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.resources-summary {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.resource-stat {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(70, 88, 84, 0.08);
}

.resource-stat strong {
  display: block;
  font-size: 1.1rem;
  color: var(--heading);
}

.resource-stat span {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.resources-support ul {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--text-soft);
}

.resources-support li + li {
  margin-top: 0.55rem;
}

.resources-library {
  display: grid;
  gap: clamp(3rem, 6vw, 4.8rem);
  margin-top: 1.2rem;
}

.resources-downloads {
  margin-top: 1.8rem;
}

.resource-download-hub {
  display: grid;
  gap: 1.1rem;
}

.resource-download-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
  gap: 1rem;
}

.resource-download-card,
.resource-download-pill {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.resource-download-card {
  padding: 1.35rem;
  display: grid;
  gap: 0.8rem;
  align-content: start;
  color: var(--heading);
}

.resource-download-card h3 {
  margin: 0;
  font-family: var(--display-modern);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.resource-download-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.resource-download-card span {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  width: fit-content;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(106, 139, 124, 0.12);
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.resource-download-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.resource-download-pill {
  padding: 0.95rem 1rem;
  display: grid;
  gap: 0.35rem;
  color: var(--heading);
}

.resource-download-pill strong {
  font-size: 1rem;
}

.resource-download-pill span {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.resource-download-card:hover,
.resource-download-card:focus-visible,
.resource-download-pill:hover,
.resource-download-pill:focus-visible {
  transform: translateY(-0.12rem);
  border-color: rgba(70, 104, 90, 0.2);
}

.resource-section {
  display: grid;
  gap: 1.5rem;
}

.resource-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-color: rgba(70, 88, 84, 0.16);
  border-radius: 1.35rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(235, 244, 239, 0.95));
  box-shadow:
    0 18px 44px rgba(41, 55, 55, 0.09),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.resource-section-header h2 {
  margin: 0;
  font-family: var(--display-modern);
  font-size: clamp(2.2rem, 3.5vw, 3.35rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--heading);
}

.resource-section-header p {
  max-width: 42rem;
}

.resource-section-header .eyebrow {
  color: var(--accent-strong);
  font-weight: 900;
}

.resource-section-count {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(70, 88, 84, 0.08);
  color: var(--heading);
  font-size: 0.85rem;
  font-weight: 800;
  white-space: nowrap;
}

.resource-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.05rem;
}

.resource-card {
  display: grid;
  grid-template-columns: minmax(14rem, 0.58fr) minmax(20rem, 1.22fr) minmax(17rem, 0.9fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: start;
  scroll-margin-top: 7rem;
  border-left: 0.35rem solid rgba(91, 135, 111, 0.42);
  background:
    linear-gradient(90deg, rgba(248, 251, 249, 0.98), rgba(255, 255, 255, 0.98));
}

.resource-card-top {
  display: block;
  min-width: 0;
  padding-right: clamp(0.7rem, 1.4vw, 1.1rem);
  border-right: 1px solid rgba(70, 88, 84, 0.1);
}

.resource-card h3 {
  margin: 0.35rem 0 0;
  font-family: var(--display-modern);
  font-size: clamp(1.55rem, 2.05vw, 2.05rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--heading);
}

.resource-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.resource-card-summary,
.resource-card-docs {
  display: grid;
  gap: 0.8rem;
  min-width: 0;
}

.resource-badges span {
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-sm);
  background: rgba(231, 239, 235, 0.82);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
}

.resource-hero {
  margin: 0;
  color: var(--heading);
  font-weight: 700;
  line-height: 1.6;
}

.resource-link-note {
  font-size: 0.95rem;
}

.resource-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.resource-detail-grid div {
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(70, 88, 84, 0.08);
  background: rgba(247, 249, 248, 0.92);
}

.resource-detail-grid span {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.resource-detail-grid strong {
  display: block;
  margin-top: 0.42rem;
  color: var(--heading);
  line-height: 1.55;
}

.resource-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem 1rem;
}

.resource-feature-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.resource-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
}

.resource-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.05rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(70, 88, 84, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: var(--heading);
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.resource-card-docs .resource-actions {
  margin-top: 0;
}

.resource-card-docs .resource-link {
  width: 100%;
}

.resource-link:hover,
.resource-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(70, 88, 84, 0.2);
}

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

  .resource-card-top {
    padding-right: 0;
    padding-bottom: 0.9rem;
    border-right: 0;
    border-bottom: 1px solid rgba(70, 88, 84, 0.1);
  }

  .resource-card-docs .resource-link {
    width: auto;
  }
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.tag-row span,
.tag,
.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(247, 247, 244, 0.8);
  color: var(--heading);
  font-size: 0.82rem;
  font-weight: 600;
}

.section-heading {
  max-width: 48rem;
}

.section-heading h2 {
  margin-top: 0.75rem;
  font-size: clamp(2.55rem, 4vw, 4.3rem);
}

.section-heading h2.single-line-heading {
  white-space: nowrap;
}

.section-heading p {
  margin-top: 0.9rem;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.pathway-card {
  padding: 1.5rem;
}

.pathway-card h3 {
  margin: 0;
  color: var(--heading);
  font-size: 1.3rem;
}

.pathway-card p {
  margin: 0.85rem 0 1.2rem;
}

.text-link {
  color: var(--accent-strong);
  font-weight: 700;
}

.projects .section-heading {
  margin-bottom: 2rem;
}

.projects-showcase {
  display: grid;
  gap: clamp(1rem, 2vw, 1.45rem);
  align-items: stretch;
  padding: clamp(1rem, 2vw, 1.55rem);
  border: 1px solid rgba(75, 97, 92, 0.1);
  border-radius: clamp(1.65rem, 3vw, 2.45rem);
  background:
    radial-gradient(circle at 88% 7%, rgba(124, 171, 152, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(253, 252, 248, 0.98), rgba(239, 243, 238, 0.94));
  box-shadow: var(--shadow);
}

.projects-showcase-copy {
  display: grid;
  grid-template-columns: minmax(15rem, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: end;
  min-width: 0;
}

.projects-showcase-title,
.project-story h3,
.project-story-card-copy strong {
  margin: 0;
  font-family: var(--display-modern);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--heading);
}

.projects-showcase-title {
  font-size: clamp(3rem, 5.6vw, 6.1rem);
}

.projects-showcase-lead,
.project-story-location,
.project-story-body,
.project-story-points,
.project-story-outcome,
.project-story-card-hint {
  color: var(--text-soft);
}

.projects-showcase-lead {
  margin: 0;
  justify-self: end;
  max-width: 38rem;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.65;
}

.projects-feature-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(20rem, 0.68fr);
  gap: clamp(1rem, 1.8vw, 1.45rem);
  align-items: start;
  min-width: 0;
}

.projects-feature-media {
  position: relative;
  min-height: clamp(30rem, 46vw, 42rem);
  border-radius: clamp(1.35rem, 2vw, 1.9rem);
  overflow: hidden;
  background: rgba(17, 29, 30, 0.18);
  box-shadow: var(--shadow-soft);
}

.project-slide-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(230, 236, 233, 0.58)),
    rgba(17, 29, 30, 0.08);
}

.projects-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 29, 30, 0.06), rgba(17, 29, 30, 0.34)),
    linear-gradient(0deg, rgba(17, 29, 30, 0.42), transparent 44%);
  pointer-events: none;
}

.project-slide-media::after {
  background: linear-gradient(0deg, rgba(17, 29, 30, 0.3), transparent 23%);
}

.project-feature-image,
.project-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 240ms ease, transform 420ms ease;
}

.project-slide-image {
  box-sizing: border-box;
  padding: clamp(0.35rem, 0.7vw, 0.6rem);
  object-fit: contain;
  transform: none;
}

.project-feature-image.is-active,
.project-slide-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.project-slide-image.is-active {
  transform: none;
}

.project-slide-controls {
  position: absolute;
  right: clamp(0.85rem, 1.4vw, 1.15rem);
  bottom: clamp(0.85rem, 1.4vw, 1.15rem);
  z-index: 2;
  display: flex;
  gap: 0.35rem;
}

.project-slide-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--heading);
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1;
  box-shadow: 0 16px 38px rgba(21, 32, 34, 0.2);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.project-slide-arrow:hover,
.project-slide-arrow:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(21, 32, 34, 0.28);
  outline: none;
}

.project-slide-status {
  position: absolute;
  left: clamp(0.95rem, 1.6vw, 1.25rem);
  bottom: clamp(0.95rem, 1.6vw, 1.25rem);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  min-height: 2.2rem;
  padding: 0 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--heading);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 16px 38px rgba(21, 32, 34, 0.16);
}

.project-slide-copy-panel {
  position: relative;
}

.project-slide-copy {
  animation: projectSlideText 260ms ease;
}

@keyframes projectSlideText {
  from {
    opacity: 0;
    transform: translateY(0.35rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.projects-feature-caption {
  position: absolute;
  right: clamp(1rem, 2vw, 1.45rem);
  bottom: clamp(1rem, 2vw, 1.45rem);
  z-index: 1;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.projects-story-panel {
  display: grid;
  align-items: center;
  min-height: 0;
  padding: clamp(1.15rem, 2vw, 1.65rem);
  border-radius: clamp(1.25rem, 2vw, 1.75rem);
  border: 1px solid rgba(93, 114, 111, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 243, 0.96)),
    radial-gradient(circle at top left, rgba(119, 158, 137, 0.14), transparent 40%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 22px 54px rgba(43, 59, 60, 0.08);
}

.project-story {
  display: none;
}

.project-story.is-active {
  display: block;
}

.project-story-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: rgba(110, 158, 134, 0.14);
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-story h3 {
  margin-top: 1rem;
  font-size: clamp(2rem, 3vw, 3.3rem);
}

.project-story-location {
  margin: 0.7rem 0 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-story-body {
  margin: 1rem 0 0;
  font-size: 0.98rem;
  line-height: 1.66;
}

.project-story-outcome {
  margin: 1rem 0 0;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(92, 130, 108, 0.14);
  border-radius: 1rem;
  background: rgba(238, 246, 239, 0.72);
  font-size: 0.96rem;
  line-height: 1.58;
}

.project-story-outcome strong {
  color: var(--heading);
}

.project-story-points {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.94rem;
  line-height: 1.55;
}

.project-story-points li {
  position: relative;
  padding-left: 1.05rem;
}

.project-story-points li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: var(--accent);
}

.projects-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.3vw, 1rem);
  min-width: 0;
}

.project-story-view {
  display: none;
}

.project-story-view.is-active {
  display: grid;
}

.project-story-card {
  position: relative;
  min-height: clamp(8.75rem, 12vw, 12rem);
  padding: 0;
  border: 1px solid rgba(88, 109, 104, 0.12);
  border-radius: clamp(1.05rem, 1.6vw, 1.45rem);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.project-story-card:hover,
.project-story-card:focus-visible,
.project-story-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(75, 97, 92, 0.2);
  box-shadow: 0 22px 52px rgba(43, 59, 60, 0.16);
  outline: none;
}

.project-story-card-placeholder {
  cursor: default;
}

.project-story-card.is-active {
  cursor: default;
}

.project-story-card-placeholder:hover {
  transform: none;
  border-color: rgba(88, 109, 104, 0.12);
  box-shadow: var(--shadow-soft);
}

.project-story-card-placeholder .project-story-card-scrim {
  background:
    linear-gradient(180deg, rgba(252, 249, 243, 0.08), rgba(18, 28, 31, 0.76)),
    linear-gradient(0deg, rgba(18, 28, 31, 0.28), transparent 48%);
}

.project-story-card img,
.project-story-card-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-story-card img {
  object-fit: cover;
  object-position: center;
}

.project-story-card-church img {
  object-position: 54% center;
}

.project-story-card-scrim {
  background:
    linear-gradient(180deg, rgba(252, 249, 243, 0.04), rgba(18, 28, 31, 0.68)),
    linear-gradient(0deg, rgba(18, 28, 31, 0.22), transparent 48%);
}

.project-story-card-copy {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  left: 0.9rem;
  z-index: 1;
  display: grid;
  gap: 0.42rem;
  text-align: left;
}

.project-story-card-number {
  color: rgba(244, 248, 246, 0.9);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-story-card-copy strong {
  max-width: 15rem;
  font-size: clamp(1.05rem, 1.35vw, 1.55rem);
  line-height: 1;
  color: #ffffff;
}

.project-story-card-hint {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 246, 245, 0.86);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.project-card {
  position: relative;
  min-height: 19rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  grid-column: span 4;
}

.project-card-wide {
  grid-column: span 8;
  min-height: 25rem;
}

.project-card-tall {
  grid-column: span 4;
  min-height: 25rem;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-card:hover img,
.project-card:focus-within img {
  transform: scale(1.04);
}

.project-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(19, 28, 31, 0.05), rgba(19, 28, 31, 0.78));
  color: #fff;
}

.project-overlay h3 {
  margin: 0.45rem 0 0.35rem;
  font-size: 1.45rem;
}

.project-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.project-type {
  color: rgba(255, 255, 255, 0.84);
}

.store-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 23rem;
  gap: 1rem;
  align-items: start;
}

.store-main {
  padding: 1.8rem;
}

.store-toolbar {
  margin-top: 1.8rem;
  display: grid;
  gap: 1rem;
}

.search-field input {
  width: 100%;
  min-height: 3.45rem;
  padding: 0 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  color: var(--heading);
}

.search-field input:focus-visible,
.checkout-form input:focus-visible,
.checkout-form textarea:focus-visible {
  outline: none;
  border-color: rgba(70, 104, 90, 0.44);
  box-shadow: 0 0 0 4px rgba(106, 139, 124, 0.12);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.filter-chip {
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.filter-chip.is-active {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.product-grid {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.product-card-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1.35rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.product-type {
  padding: 0.28rem 0.72rem;
  border-radius: var(--radius-sm);
  background: var(--accent-pale);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-title {
  margin: 0;
  font-size: 1.45rem;
  color: var(--heading);
}

.product-description {
  margin: 0.6rem 0 1rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.product-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.product-details div {
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius-sm);
  background: rgba(244, 248, 245, 0.9);
}

.product-details span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-details strong {
  color: var(--heading);
  font-size: 0.96rem;
}

.product-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-actions {
  display: grid;
  align-content: space-between;
  gap: 0.9rem;
  min-width: 13rem;
}

.doc-list {
  display: grid;
  gap: 0.55rem;
}

.doc-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  color: var(--heading);
  font-size: 0.9rem;
  font-weight: 700;
}

.doc-link:hover,
.doc-link:focus-visible {
  border-color: var(--border-strong);
  background: var(--surface);
}

.cart-action-button,
.quantity-button,
.clear-button,
.remove-button {
  border: 0;
  cursor: pointer;
}

.cart-action-button {
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--accent-strong);
  color: #fff;
  font-weight: 700;
}

.cart-action-button:hover,
.cart-action-button:focus-visible {
  background: #335347;
}

.cart-panel {
  position: sticky;
  top: 6.5rem;
  display: grid;
  gap: 1rem;
}

.cart-card {
  padding: 1.4rem;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}

.cart-header h3 {
  margin-top: 0.35rem;
  font-size: 2rem;
}

.clear-button {
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(242, 245, 242, 0.9);
  color: var(--text-soft);
  font-weight: 700;
}

.clear-button:hover,
.clear-button:focus-visible {
  background: rgba(228, 235, 229, 1);
  color: var(--heading);
}

.cart-body {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.cart-empty {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(244, 248, 245, 0.9);
  color: var(--text-soft);
  line-height: 1.6;
}

.cart-item {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(245, 247, 244, 0.92);
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.cart-item h4 {
  margin: 0;
  color: var(--heading);
  font-size: 1rem;
}

.cart-item p {
  margin: 0.25rem 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.quantity-group {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.quantity-button,
.remove-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--heading);
  font-weight: 800;
}

.remove-button {
  padding: 0.5rem 0.8rem;
  min-width: auto;
  font-size: 0.82rem;
}

.cart-summary {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(70, 88, 84, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.cart-summary span {
  color: var(--text-soft);
}

.cart-summary strong {
  color: var(--heading);
}

.cart-note {
  margin: 1rem 0 0;
}

.cart-actions {
  margin-top: 1.2rem;
}

.support-mini-card {
  padding: 1.3rem;
}

.support-mini-card h3 {
  margin-top: 0.45rem;
  font-size: 1.65rem;
}

.empty-state {
  margin-top: 1.5rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-strong);
  background: rgba(255, 255, 255, 0.7);
}

.hidden {
  display: none !important;
}

.social-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.colour-section {
  padding: 3rem 0 0;
}

.colour-section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.4rem;
  padding: 1.1rem 1.2rem;
  border-radius: 1.35rem;
  border-top: 1px solid rgba(79, 95, 101, 0.12);
  border-bottom: 1px solid rgba(79, 95, 101, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(36, 46, 50, 0.06);
}

.colour-section-copy h2 {
  margin: 0;
  font-family: var(--display-modern);
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  line-height: 1;
  color: var(--heading);
}

.colour-section-copy p:not(.eyebrow) {
  margin: 0.4rem 0 0;
  max-width: 42rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.colour-section-action {
  display: grid;
  gap: 0.2rem;
  min-width: 16rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(70, 104, 90, 0.2);
  background: rgba(246, 250, 247, 0.98);
  color: var(--heading);
  text-decoration: none;
}

.colour-section-action span {
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.colour-section-action strong {
  font-size: 1rem;
}

.social-card {
  display: grid;
  gap: 1rem;
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.92);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(225, 234, 227, 0.9);
  color: var(--accent-strong);
}

.social-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: start;
}

.checkout-copy,
.checkout-form {
  padding: 1.7rem;
}

.checkout-copy h2 {
  margin-top: 0.75rem;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
}

.checkout-support {
  margin-top: 1.8rem;
  display: grid;
  gap: 0.85rem;
}

.checkout-support article {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(247, 249, 246, 0.96);
}

.checkout-support span {
  display: block;
  color: var(--text-soft);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.checkout-support strong {
  display: block;
  margin-top: 0.3rem;
  color: var(--heading);
}

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

.checkout-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--heading);
  font-weight: 600;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.95rem 1rem;
  color: var(--heading);
}

.field-span {
  grid-column: 1 / -1;
}

.form-footer {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(70, 88, 84, 0.08);
}

.form-footer p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.form-status {
  min-height: 1.5rem;
  margin-top: 1rem !important;
  color: var(--accent-strong) !important;
  font-weight: 700;
}

.site-footer {
  padding: 1rem 0 3rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(65, 79, 76, 0.1);
}

.footer-brand {
  flex: 0 1 40rem;
  max-width: 40rem;
  margin-left: auto;
}

.footer-logo {
  display: block;
  width: min(100%, 40rem);
  height: clamp(8rem, 15vw, 12rem);
  margin-left: auto;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: darken;
}

.footer-brand p {
  margin: 1rem 0 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.32rem;
  flex: 0 0 auto;
}

.footer-contact-heading {
  margin: 0 0 0.2rem;
  color: var(--heading);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 800;
}

.footer-company {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: var(--heading);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 800;
  line-height: 1.2;
}

.footer-company img {
  width: 1.45em;
  height: 1.45em;
  object-fit: contain;
  border-radius: 0.18rem;
  flex: 0 0 auto;
}

.footer-contact a {
  color: var(--heading);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 800;
  text-decoration: none;
}

.footer-address {
  margin: 0;
  color: var(--heading);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-style: normal;
  font-weight: 800;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--heading);
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

@media (max-width: 1100px) {
  .metric-row,
  .pathway-grid,
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .colour-section-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .colour-section-action {
    min-width: 0;
    width: 100%;
  }

  .store-layout,
  .checkout-layout,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 10rem;
  }

  .hero-image-card {
    margin: 7.8rem 0 0;
    min-height: 34rem;
  }

  .spotlight-card {
    left: 1rem;
    bottom: 1rem;
  }

  .support-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .cart-panel {
    position: static;
  }
}

@media (max-width: 900px) {
  .mobile-nav-toggle {
    display: inline-flex;
  }

  .brand-mark {
    width: clamp(10rem, 34vw, 14rem);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.25rem;
    padding: 0.8rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.85rem 0.9rem;
    border-radius: var(--radius-sm);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(239, 244, 240, 0.9);
    transform: none;
  }

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

  .product-actions {
    min-width: 0;
  }

  .project-card,
  .project-card-wide,
  .project-card-tall {
    grid-column: 1 / -1;
  }

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

  .footer-brand {
    margin-left: 0;
  }

  .footer-contact {
    justify-content: start;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 3.6rem 0;
  }

  .header-inner {
    min-height: auto;
    padding: 0.75rem 0.85rem;
  }

  .metric-row,
  .pathway-grid,
  .social-grid,
  .colour-section-inner,
  .form-grid,
  .product-details {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-visual {
    padding-top: 13.5rem;
  }

  .hero-image-card {
    min-height: 25rem;
  }

  .spotlight-card,
  .support-card {
    width: calc(100% - 1rem);
  }

  .checkout-copy,
  .checkout-form,
  .store-main,
  .cart-card {
    padding: 1.3rem;
  }

  .store-toolbar {
    margin-top: 1.35rem;
  }
}

.store-frame {
  padding: 2.1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(79, 95, 101, 0.09);
  background:
    linear-gradient(180deg, rgba(235, 239, 241, 0.92), rgba(241, 243, 244, 0.78));
  box-shadow: 0 28px 65px rgba(36, 46, 50, 0.08);
}

.store-top {
  display: grid;
  gap: 1rem;
}

.store-heading {
  max-width: 42rem;
}

.store-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  line-height: 0.94;
  color: var(--heading);
}

.store-heading p:last-child,
.store-count-line {
  margin: 0;
  color: var(--text-soft);
}

.store-search input {
  min-height: 3.85rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.store-count-line {
  font-size: 0.92rem;
}

.store-columns {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 23rem;
  gap: 1rem;
  align-items: start;
}

.store-groups {
  display: grid;
  gap: 1rem;
}

.store-sidebar {
  position: sticky;
  top: 6.5rem;
  display: grid;
  gap: 1rem;
}

.system-card,
.order-card,
.payment-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(79, 95, 101, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(35, 45, 42, 0.06);
}

.system-card-header,
.sidebar-card-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.system-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.system-card-header h3,
.sidebar-card-header h3 {
  margin: 0.32rem 0 0;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  color: var(--heading);
}

.system-card-header p:last-child {
  margin: 0.45rem 0 0;
  color: var(--text-soft);
}

.system-count,
.pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(79, 95, 101, 0.12);
  background: rgba(247, 249, 250, 0.92);
  color: var(--text-soft);
  font-size: 0.82rem;
  white-space: nowrap;
}

.system-list {
  margin-top: 1rem;
}

.product-row + .product-row {
  border-top: 1px solid rgba(79, 95, 101, 0.08);
}

.product-row-main {
  padding: 0.95rem 0 0.85rem;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
}

.product-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.7rem;
  padding: 0.22rem 0.62rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(79, 95, 101, 0.1);
  background: rgba(244, 247, 248, 0.96);
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.product-row-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
}

.product-heading-copy h4 {
  margin: 0;
  color: var(--heading);
  font-size: 1.28rem;
}

.product-heading-copy p {
  margin: 0.42rem 0 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.product-price-block {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.product-price-block strong {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  color: var(--heading);
  white-space: nowrap;
}

.add-button,
.stepper button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: var(--radius-sm);
  background: rgba(219, 230, 223, 0.9);
  color: var(--accent-strong);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
}

.add-button:hover,
.add-button:focus-visible,
.stepper button:hover,
.stepper button:focus-visible {
  background: rgba(197, 216, 206, 1);
}

.product-accordion {
  border-top: 1px solid rgba(79, 95, 101, 0.08);
}

.product-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0 0.95rem;
  list-style: none;
  cursor: pointer;
  color: var(--heading);
  font-weight: 700;
}

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

.accordion-chevron {
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid var(--text-soft);
  border-bottom: 2px solid var(--text-soft);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.product-accordion[open] .accordion-chevron {
  transform: rotate(-135deg) translateY(-2px);
}

.product-detail-panel {
  padding: 0 0 1rem;
}

.product-overview {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.product-detail-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.product-detail-grid div {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(244, 247, 248, 0.95);
}

.product-detail-grid span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail-grid strong {
  color: var(--heading);
  line-height: 1.5;
}

.feature-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.feature-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--accent);
}

.doc-link-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.7rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(79, 95, 101, 0.12);
  background: rgba(255, 255, 255, 0.98);
  color: var(--heading);
  font-size: 0.88rem;
  font-weight: 700;
}

.store-link:hover,
.store-link:focus-visible {
  border-color: rgba(79, 95, 101, 0.22);
}

.cart-body {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.order-empty {
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(79, 95, 101, 0.14);
  background: rgba(246, 248, 249, 0.92);
  color: var(--text-soft);
  line-height: 1.6;
}

.order-item {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(246, 248, 249, 0.94);
}

.order-item-top,
.order-item-controls,
.order-totals div {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.order-item-top h4 {
  margin: 0;
  color: var(--heading);
  font-size: 1rem;
}

.order-item-top p,
.payment-note {
  margin: 0.35rem 0 0;
  color: var(--text-soft);
}

.line-total {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1;
  color: var(--heading);
}

.order-item-controls {
  margin-top: 0.9rem;
  align-items: center;
}

.stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.stepper span {
  min-width: 1.5rem;
  text-align: center;
  color: var(--heading);
  font-weight: 800;
}

.remove-button {
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.remove-button:hover,
.remove-button:focus-visible {
  color: var(--heading);
}

.order-totals {
  margin-top: 1.1rem;
}

.order-totals div {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(246, 248, 249, 0.94);
}

.order-totals span {
  color: var(--text-soft);
}

.order-totals strong {
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--heading);
}

.button-block {
  width: 100%;
}

.clear-button:disabled,
#clearCartButton:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.payment-card {
  display: grid;
  gap: 1rem;
}

.payment-card:target,
.payment-card:focus-within {
  border-color: rgba(79, 159, 102, 0.72);
  box-shadow:
    0 0 0 4px rgba(99, 170, 118, 0.14),
    0 18px 38px rgba(35, 45, 42, 0.08);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.payment-grid label,
.payment-methods {
  display: grid;
  gap: 0.45rem;
  color: var(--heading);
  font-weight: 700;
}

.payment-grid input,
.payment-grid textarea {
  width: 100%;
  border: 1px solid rgba(79, 95, 101, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(249, 250, 251, 0.98);
  padding: 0.92rem 1rem;
  color: var(--heading);
}

.payment-methods {
  margin: 0;
  padding: 0;
  border: 0;
}

.payment-methods legend {
  margin-bottom: 0.2rem;
  padding: 0;
}

.payment-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(79, 95, 101, 0.1);
  background: rgba(246, 248, 249, 0.94);
  color: var(--text-soft);
  font-weight: 600;
}

.payment-option input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.payment-option:has(input:checked) {
  border-color: rgba(79, 159, 102, 0.68);
  box-shadow: 0 0 0 3px rgba(99, 170, 118, 0.12);
  background: rgba(245, 251, 246, 0.98);
  color: var(--heading);
}

@media (max-width: 1100px) {
  .projects-showcase {
    grid-template-columns: 1fr;
  }

  .projects-showcase-copy,
  .projects-feature-stage {
    grid-template-columns: 1fr;
  }

  .projects-showcase-lead {
    justify-self: start;
  }

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

  .projects-feature-media {
    min-height: clamp(24rem, 58vw, 34rem);
  }

  .project-slide-media {
    min-height: 0;
  }

  .projects-story-panel {
    min-height: auto;
  }

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

  .store-sidebar {
    position: static;
  }

  .resources-hero,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding: 1rem;
    gap: 1rem;
  }

  .hero-copy-card,
  .spotlight-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin: 0;
  }

  .hero-image-card {
    position: relative;
    inset: auto;
    min-height: 34rem;
    order: 0;
  }

  .hero-copy-card {
    order: 1;
  }

  .spotlight-card {
    order: 2;
  }

  .hero h1 {
    max-width: 8.2ch;
    font-size: clamp(3.4rem, 6.4vw, 5.4rem);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 0.55rem;
  }

  .hero-visual {
    padding: 0.75rem;
  }

  .hero-stage-frame {
    display: none;
  }

  .hero-copy-card,
  .spotlight-card,
  .support-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin: 0;
  }

  .hero-image-card {
    margin: 0;
    position: relative;
    inset: auto;
    min-height: 24rem;
    order: 0;
  }

  .hero-copy-card {
    order: 1;
  }

  .spotlight-card {
    order: 2;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(3rem, 11vw, 4.3rem);
  }

  .projects-showcase {
    padding: 1.15rem;
    border-radius: 1.75rem;
  }

  .projects-showcase-copy {
    gap: 0.85rem;
  }

  .resources-summary,
  .resource-download-grid,
  .resource-download-list,
  .resource-detail-grid,
  .resource-feature-list {
    grid-template-columns: 1fr;
  }

  .resource-section-header,
  .resource-card-top {
    flex-direction: column;
    align-items: start;
  }

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

  .project-story-card {
    min-height: 9.5rem;
  }

  .project-story-card-copy strong {
    font-size: 1.05rem;
  }

  .project-story-card-hint {
    font-size: 0.66rem;
  }

  .projects-feature-media {
    min-height: 23rem;
    border-radius: 1.25rem;
  }

  .project-slide-media {
    min-height: 0;
  }

  .projects-story-panel {
    padding: 1.15rem;
    border-radius: 1.25rem;
  }

  .store-frame,
  .system-card,
  .order-card,
  .payment-card {
    padding: 1.2rem;
  }

  .product-row-heading,
  .payment-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-price-block {
    justify-content: space-between;
  }

  .system-card-header,
  .sidebar-card-header,
  .order-item-top,
  .order-item-controls,
  .order-totals div {
    flex-direction: column;
    align-items: start;
  }

  .filter-row {
    overflow-x: auto;
    padding-bottom: 0.25rem;
    flex-wrap: nowrap;
  }
}

@media (max-width: 1100px) {
  .hero-frame {
    width: min(calc(100% - 1.5rem), 1430px);
  }

  .hero-visual {
    display: grid;
    min-height: auto;
    padding: 1rem;
    gap: 1rem;
  }

  .hero-copy-card,
  .hero-side-panel,
  .hero-feature-card,
  .hero-metrics {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin: 0;
  }

  .hero-image-card {
    position: relative;
    inset: auto;
    min-height: 30rem;
    order: 0;
  }

  .hero-copy-card {
    order: 1;
  }

  .hero-side-panel {
    order: 2;
    min-height: auto;
  }

  .hero-feature-card {
    order: 3;
    min-height: 24rem;
  }

  .hero-metrics {
    order: 4;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h1 {
    max-width: 8.5ch;
    font-size: clamp(3.6rem, 6.8vw, 5.4rem);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 0;
  }

  .header-inner {
    padding: 0.8rem 0;
  }

  .hero {
    padding-bottom: 3rem;
  }

  .hero-frame {
    width: calc(100% - 1rem);
  }

  .hero-visual {
    padding: 0.75rem;
  }

  .hero-image-card {
    min-height: 21rem;
  }

  .hero-feature-card {
    min-height: 20rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(3rem, 11vw, 4.25rem);
  }
}

/* Premium stacked header refresh */

.site-header {
  position: relative;
  top: auto;
  z-index: 30;
  padding: 0.9rem 0 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.header-frame {
  width: min(calc(100% - 2rem), 1430px);
  margin: 0 auto;
  border: 1px solid rgba(124, 136, 141, 0.24);
  border-bottom: 0;
  border-radius: 2.25rem 2.25rem 0 0;
  background: rgba(255, 255, 255, 0.98);
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(63, 73, 75, 0.12);
}

.header-message-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.8rem;
  padding: 1.1rem 2rem;
  border-bottom: 1px solid rgba(124, 136, 141, 0.18);
  background: linear-gradient(180deg, rgba(251, 251, 250, 0.98), rgba(255, 255, 255, 0.98));
}

.header-message-bar p {
  margin: 0;
  text-align: center;
  font-size: clamp(0.98rem, 1.15vw, 1.38rem);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7d8790;
}

.header-message-bar strong {
  color: #727e89;
  font-weight: 800;
}

.header-brand-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 1.5rem;
  min-height: 15.35rem;
  padding: 1.95rem 2.5rem 1.8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(252, 252, 251, 0.98));
}

.brand {
  align-self: center;
  max-width: 43rem;
}

.brand-mark {
  width: min(100%, clamp(26rem, 43vw, 43rem));
  max-width: 100%;
  height: auto;
  image-rendering: auto;
  filter: saturate(1.01) contrast(1.01);
}

.site-nav {
  position: static;
  justify-self: end;
  align-self: start;
  gap: 1.45rem;
  padding-top: 0.9rem;
}

.site-nav a {
  padding: 0;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7d8790;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #58676d;
  background: transparent;
}

.nav-cta {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #7d8790 !important;
  box-shadow: none;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: transparent;
  color: #58676d !important;
}

.hero {
  padding-top: 0;
}

.hero-frame {
  width: min(calc(100% - 2rem), 1430px);
  margin: 0 auto;
}

.hero-visual {
  min-height: 780px;
  border-top: 0;
  border-radius: 0 0 2.25rem 2.25rem;
  box-shadow: 0 30px 74px rgba(48, 58, 60, 0.14);
}

.hero-visual::before {
  background:
    linear-gradient(90deg, rgba(248, 245, 240, 0.97) 0%, rgba(248, 245, 240, 0.91) 18%, rgba(248, 245, 240, 0.6) 35%, rgba(248, 245, 240, 0.2) 56%, rgba(248, 245, 240, 0.08) 74%, rgba(248, 245, 240, 0.15) 100%),
    radial-gradient(circle at 11% 18%, rgba(255, 255, 255, 0.82), transparent 26%);
}

.hero-copy-card {
  top: 3rem;
  left: 3rem;
  width: min(54rem, calc(100% - 36rem));
}

.hero-side-panel {
  top: 2.1rem;
  right: 2.1rem;
  width: min(26rem, 31%);
}

.hero-feature-card {
  top: 8.1rem;
  right: 2.1rem;
  bottom: 2.05rem;
  width: min(29rem, 34%);
  border-radius: 1.35rem;
}

.hero-metrics {
  left: 3rem;
  right: calc(min(29rem, 34%) + 4.7rem);
  bottom: 2.15rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1100px) {
  .header-frame,
  .hero-frame {
    width: min(calc(100% - 1.5rem), 1430px);
  }

  .header-message-bar {
    padding-inline: 1.5rem;
  }

  .header-message-bar p {
    font-size: 0.86rem;
    letter-spacing: 0.14em;
  }

  .header-brand-band {
    min-height: auto;
    padding: 1.25rem 1.5rem;
  }

  .brand-mark {
    width: min(100%, clamp(18rem, 48vw, 32rem));
  }

  .hero-copy-card,
  .hero-side-panel,
  .hero-feature-card,
  .hero-metrics {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .header-frame,
  .hero-frame {
    width: calc(100% - 1rem);
  }

  .header-frame {
    border-radius: 1.5rem 1.5rem 0 0;
  }

  .header-message-bar {
    min-height: auto;
    padding: 1rem 1rem 0.95rem;
  }

  .header-message-bar p {
    text-align: left;
    font-size: 0.78rem;
    line-height: 1.5;
    letter-spacing: 0.12em;
  }

  .header-brand-band {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
  }

  .brand-mark {
    width: min(100%, clamp(13rem, 56vw, 20rem));
  }

  .mobile-nav-toggle {
    display: inline-flex;
    justify-self: end;
    align-self: start;
    background: rgba(255, 255, 255, 0.95);
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 0.15rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.25rem;
    padding: 0.8rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(124, 136, 141, 0.18);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 50px rgba(48, 58, 60, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
    z-index: 5;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a,
  .nav-cta {
    padding: 0.85rem 0.9rem;
    border-radius: 0.8rem;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .nav-cta:hover,
  .nav-cta:focus-visible {
    background: rgba(239, 244, 240, 0.9);
  }

  .hero-visual {
    border-radius: 0 0 1.5rem 1.5rem;
  }
}

@media (max-width: 760px) {
  .header-message-bar p {
    font-size: 0.74rem;
  }

  .hero-copy-card,
  .hero-side-panel,
  .hero-feature-card,
  .hero-metrics {
    width: 100%;
  }

  .hero h1 {
    max-width: 8.2ch;
  }

  .hero-lead {
    max-width: 24rem;
  }
}

/* Homepage approved hero */

.site-banner {
  position: sticky;
  top: 0.9rem;
  z-index: 24;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  width: min(95vw, 1380px);
  margin: 1rem auto -3.2rem;
}

.site-banner-architectural {
  padding: 0.5rem 0.8rem;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(95, 109, 111, 0.12);
  box-shadow: 0 18px 34px rgba(16, 24, 29, 0.12);
  backdrop-filter: blur(14px);
}

.site-banner-logo {
  display: block;
  position: relative;
  width: clamp(9.4rem, 14vw, 11.2rem);
  aspect-ratio: 2.93 / 1;
  overflow: hidden;
}

.site-banner-logo img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}

.site-banner-slogan {
  margin: 0;
  color: #40515a;
  font-family: var(--sans);
  font-size: clamp(0.66rem, 0.78vw, 0.78rem);
  font-weight: 800;
  line-height: 1.26;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-banner-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
}

.site-banner-nav a {
  color: #566772;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-banner-nav a:hover {
  color: #233038;
}

.page-back-button {
  position: static;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  min-height: 2.35rem;
  padding: 0;
  border: 1px solid rgba(79, 95, 101, 0.14);
  border-radius: 50%;
  color: var(--heading);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(35, 45, 42, 0.11);
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.page-back-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-back-button > span:first-child {
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.page-back-button:hover,
.page-back-button:focus-visible {
  border-color: rgba(79, 159, 102, 0.42);
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(-2px);
}

.technical-library-page .site-banner-library {
  margin-bottom: clamp(1.35rem, 2.6vw, 2.2rem);
}

.resources-landing-clean {
  padding-top: clamp(1.4rem, 2.6vw, 2.4rem);
}

.hero.hero-approved-live {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  padding: 0;
  overflow: hidden;
  background: #0a1118;
}

.hero-approved-media,
.hero-approved-image,
.hero-approved-scrim {
  position: absolute;
  inset: 0;
}

.hero-approved-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.06);
}

.hero-approved-scrim {
  background:
    linear-gradient(180deg, rgba(8, 12, 16, 0.16) 0%, rgba(8, 12, 16, 0.08) 22%, rgba(8, 12, 16, 0.36) 100%),
    linear-gradient(90deg, rgba(8, 12, 16, 0.24) 0%, rgba(8, 12, 16, 0.1) 35%, rgba(8, 12, 16, 0.1) 100%);
}

.hero-floor-glow {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 40%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.08) 36%, rgba(255, 255, 255, 0) 74%);
  opacity: 0.9;
}

.hero-products-wrap {
  position: absolute;
  left: 50%;
  top: 58%;
  z-index: 4;
  width: min(1360px, calc(100% - 2rem));
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-title {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(1.3rem, 1.6vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 26px rgba(8, 12, 16, 0.28);
}

.hero-product-strip {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.hero-product-strip-image {
  position: relative;
  width: min(80%, 62.4rem);
  aspect-ratio: 1914 / 822;
  padding: 0;
  border-radius: 1.6rem;
  background: #fff;
  overflow: hidden;
}

.hero-product-lineup {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product-hotspot {
  position: absolute;
  top: 1%;
  bottom: 1%;
  width: 23%;
  outline: none;
  background: transparent;
  cursor: pointer;
}

.hero-product-hotspot:hover,
.hero-product-hotspot:focus-visible {
  background: transparent;
  box-shadow: none;
}

.hero-product-hotspot--interior {
  left: 0.5%;
}

.hero-product-hotspot--exterior {
  left: 25.5%;
}

.hero-product-hotspot--roof {
  left: 50.3%;
}

.hero-product-hotspot--antimicrobial {
  left: 75%;
}

.hero.hero-ai-live .hero-approved-image {
  object-fit: cover;
  object-position: center center;
  transform: none;
}

.hero.hero-ai-live {
  background: #ede4d9;
}

.hero.hero-ai-live .hero-approved-scrim,
.hero.hero-ai-live .hero-floor-glow {
  display: none;
}

.hero.hero-ai-live .hero-hotspot-map {
  inset: auto;
  left: 50%;
  top: 50%;
  width: max(100vw, 177.6833vh);
  height: max(100vh, 56.2799vw);
  width: max(100vw, 177.6833dvh);
  height: max(100dvh, 56.2799vw);
  transform: translate(-50%, -50%);
  pointer-events: none;
  text-align: left;
}

.hero.hero-ai-live .hero-product-hotspot {
  position: absolute;
  top: auto;
  bottom: auto;
  width: auto;
  height: auto;
  border-radius: 1rem;
  pointer-events: auto;
}

.hero.hero-ai-live .hero-product-hotspot--interior {
  left: 20.4%;
  top: 12.3%;
  width: 29.2%;
  height: 35.2%;
}

.hero.hero-ai-live .hero-product-hotspot--exterior {
  left: 51.1%;
  top: 12.3%;
  width: 28.3%;
  height: 35.2%;
}

.hero.hero-ai-live .hero-product-hotspot--roof {
  left: 20.4%;
  top: 52.4%;
  width: 29.2%;
  height: 34.2%;
}

.hero.hero-ai-live .hero-product-hotspot--antimicrobial {
  left: 51.1%;
  top: 52.4%;
  width: 28.6%;
  height: 34.2%;
}

.hero-product-links {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  width: min(100%, 78rem);
}

.hero-product-link-card {
  padding: 0.75rem 0.85rem 0;
  color: rgba(255, 255, 255, 0.98);
  text-decoration: none;
  text-shadow: 0 8px 22px rgba(8, 12, 16, 0.34);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero-product-link-card:hover,
.hero-product-link-card:focus-visible {
  opacity: 0.88;
  transform: translateY(-0.14rem);
}

.hero-product-link-card h2 {
  margin: 0;
  font-size: 1.85rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-product-link-card p {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.hero.hero-approved-live + .projects.section {
  padding-top: 3.2rem;
}

.hero.hero-approved-live + .about-us.section {
  padding-top: 3.2rem;
}

.about-us.section + .projects.section {
  padding-top: 2.2rem;
}

.about-us-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.45rem);
  align-items: stretch;
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: 20px;
  border: 1px solid rgba(79, 95, 101, 0.09);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 240, 0.9)),
    radial-gradient(circle at 8% 12%, rgba(118, 155, 135, 0.18), transparent 34%);
  box-shadow: 0 24px 56px rgba(36, 46, 50, 0.07);
}

.about-us-copy {
  display: grid;
  align-content: start;
  padding: clamp(1rem, 2.2vw, 1.5rem);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
}

.about-us-copy h2 {
  margin: 0;
  max-width: none;
  color: var(--heading);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3.5vw, 3.25rem);
  line-height: 0.94;
  white-space: nowrap;
}

.about-us-copy p:not(.eyebrow) {
  margin: 1rem 0 0;
  max-width: 32rem;
  color: var(--text-soft);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.65;
}

.about-us-text {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
  color: var(--text-soft);
}

.about-us-copy .about-us-text p,
.about-us-copy .about-us-text ul {
  margin: 0;
  width: 100%;
  max-width: none;
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.58;
}

.about-us-text h3 {
  margin: 0.45rem 0 0;
  color: var(--heading);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  line-height: 1.15;
}

.about-us-text ul {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.15rem;
}

.about-us-text li {
  padding-left: 0.15rem;
}

.about-us-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.about-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  min-height: 0;
  padding: 0;
  border-radius: 8px;
  border: 1px solid rgba(79, 95, 101, 0.09);
  overflow: hidden;
  color: var(--heading);
  background: rgba(255, 255, 255, 0.93);
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(35, 45, 42, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.92;
  background:
    radial-gradient(circle at 84% 12%, var(--about-glow), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.92));
  pointer-events: none;
}

.about-card span,
.about-card-image,
.about-card-copy,
.about-card h3,
.about-card p,
.about-card ul {
  position: relative;
  z-index: 1;
}

.about-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-bottom: 1px solid rgba(79, 95, 101, 0.08);
  background: #fff;
}

.about-card-copy {
  padding: 0.78rem 0.9rem 0.88rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 94% 0%, var(--about-glow), transparent 42%);
}

.about-card span {
  position: absolute;
  top: 0.8rem;
  left: 0.85rem;
  padding: 0.32rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 20px rgba(35, 45, 42, 0.08);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.about-card h3 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1;
}

.about-card p {
  margin: 0.34rem 0 0;
  max-width: 24rem;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.38;
}

.about-card ul {
  display: grid;
  gap: 0.36rem;
  margin: 0.6rem 0 0;
  padding-left: 1.05rem;
  color: var(--text-soft);
  font-size: clamp(0.82rem, 0.9vw, 0.9rem);
  line-height: 1.35;
}

.about-card li {
  padding-left: 0.08rem;
}

.about-card:hover,
.about-card:focus-visible {
  border-color: rgba(79, 159, 102, 0.44);
  box-shadow: 0 22px 42px rgba(35, 45, 42, 0.09);
  transform: translateY(-2px);
}

.about-card-interior {
  --about-glow: rgba(124, 79, 190, 0.22);
}

.about-card-exterior {
  --about-glow: rgba(66, 147, 214, 0.22);
}

.about-card-rooflect {
  --about-glow: rgba(214, 119, 48, 0.2);
}

.about-card-antimicrobial {
  --about-glow: rgba(75, 178, 156, 0.22);
}

@media (max-width: 900px) {
  .site-banner {
    width: min(calc(100% - 1rem), 100%);
    margin-top: 0.65rem;
    margin-bottom: -3rem;
    padding: 0.48rem 0.56rem;
    gap: 0.65rem;
    grid-template-columns: auto auto minmax(0, 1fr);
    row-gap: 0.55rem;
  }

  .site-banner-logo {
    width: min(9.6rem, 100%);
  }

  .site-banner-slogan {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .site-banner-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 0.72rem;
    flex-wrap: wrap;
    padding-left: 0.1rem;
  }

  .site-banner-nav a {
    font-size: 0.68rem;
  }

  .hero-products-wrap {
    top: 59%;
    width: min(980px, calc(100% - 1.2rem));
  }

  .hero-product-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.8rem;
  }

  .hero-product-link-card h2 {
    font-size: 1.55rem;
  }
}

@media (max-width: 760px) {
  .site-banner {
    top: 0.6rem;
  }

  .page-back-button {
    width: 2.05rem;
    height: 2.05rem;
    min-height: 2.05rem;
  }

  .hero-products-wrap {
    top: 60%;
    width: min(100%, calc(100% - 1rem));
  }

  .hero-product-strip {
    gap: 0.65rem;
  }

  .hero-product-strip-image {
    width: min(calc(80% - 1rem), 28.8rem);
  }

  .hero-product-links {
    display: none;
  }

  .hero.hero-approved-live + .about-us.section {
    padding-top: 2.4rem;
  }

  .about-us-panel,
  .about-us-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-banner {
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: start;
    gap: 0.42rem;
  }

  .site-banner-slogan {
    line-height: 1.35;
  }

  .site-banner-nav {
    padding-left: 0;
  }
}

.section-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 6.6rem;
}

.section[id] {
  scroll-margin-top: 6.6rem;
}

/* Homepage approved store amendments */

.store.store-approved-live .store-frame {
  padding: 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(79, 95, 101, 0.08);
  background:
    linear-gradient(180deg, rgba(236, 240, 241, 0.94), rgba(241, 243, 244, 0.82));
  box-shadow: 0 24px 56px rgba(36, 46, 50, 0.07);
}

.store.store-approved-live .store-top {
  gap: 0.9rem;
}

.store.store-approved-live .store-heading {
  max-width: 38rem;
}

.store.store-approved-live .store-heading h2 {
  font-size: clamp(2.4rem, 3.5vw, 3.85rem);
  line-height: 0.96;
}

.store.store-approved-live .store-heading h1 {
  margin: 0;
  color: var(--heading);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.5vw, 3.85rem);
  line-height: 0.96;
}

.store.store-approved-live .store-search input {
  min-height: 3.4rem;
  border-radius: 12px;
}

.store.store-approved-live .filter-row {
  gap: 0.5rem;
}

.store.store-approved-live .filter-chip {
  min-height: 2rem;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
}

.store.store-approved-live .store-count-line {
  font-size: 0.88rem;
}

.store.store-approved-live .store-columns {
  margin-top: 1.25rem;
  grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
  gap: 0.95rem;
}

.store.store-approved-live .store-groups,
.store.store-approved-live .store-sidebar {
  gap: 0.95rem;
}

.store.store-approved-live .store-sidebar {
  top: 1.2rem;
}

.store.store-approved-live .system-card,
.store.store-approved-live .order-card,
.store.store-approved-live .payment-card {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(79, 95, 101, 0.09);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 30px rgba(35, 45, 42, 0.055);
}

.store.store-approved-live .payment-card:target,
.store.store-approved-live .payment-card:focus-within {
  border-color: rgba(79, 159, 102, 0.72);
  box-shadow:
    0 0 0 4px rgba(99, 170, 118, 0.14),
    0 18px 38px rgba(35, 45, 42, 0.08);
}

.store.store-approved-live .system-card-header h3,
.store.store-approved-live .sidebar-card-header h3 {
  font-size: 1.78rem;
  line-height: 0.98;
}

.store.store-approved-live .system-card-header p:last-child,
.store.store-approved-live .order-empty,
.store.store-approved-live .cart-note,
.store.store-approved-live .payment-note,
.store.store-approved-live .product-heading-copy p,
.store.store-approved-live .product-overview,
.store.store-approved-live .feature-list li {
  line-height: 1.55;
}

.store.store-approved-live .system-count,
.store.store-approved-live .pill-count {
  border-radius: 999px;
  background: rgba(250, 251, 251, 0.96);
}

.store.store-approved-live .system-list {
  margin-top: 0.85rem;
}

.store.store-approved-live .product-row-main {
  padding: 0.88rem 0 0.78rem;
}

.store.store-approved-live .product-badges {
  margin-bottom: 0.72rem;
}

.store.store-approved-live .product-badges span {
  min-height: 1.55rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
}

.store.store-approved-live .product-heading-copy h4 {
  font-size: 1.2rem;
  line-height: 1.04;
}

.store.store-approved-live .product-price-block {
  gap: 0.7rem;
}

.store.store-approved-live .product-price-block strong {
  font-size: 1.78rem;
}

.store.store-approved-live .add-button,
.store.store-approved-live .stepper button {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
}

.store.store-approved-live .product-accordion summary {
  padding: 0.82rem 0 0.88rem;
  font-size: 0.95rem;
}

.store.store-approved-live .product-detail-panel {
  padding-bottom: 0.9rem;
}

.store.store-approved-live .product-detail-grid {
  gap: 0.65rem;
}

.store.store-approved-live .product-detail-grid div {
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
}

.store.store-approved-live .store-link {
  min-height: 2.35rem;
  padding: 0.65rem 0.88rem;
  border-radius: 10px;
}

.store.store-approved-live .cart-body {
  gap: 0.7rem;
}

.store.store-approved-live .order-empty,
.store.store-approved-live .order-item,
.store.store-approved-live .order-totals div,
.store.store-approved-live .payment-option {
  border-radius: 12px;
}

.store.store-approved-live .order-empty {
  padding: 0.95rem;
}

.store.store-approved-live .order-item {
  padding: 0.92rem;
}

.store.store-approved-live .line-total {
  font-size: 1.18rem;
}

.store.store-approved-live .order-totals {
  margin-top: 0.95rem;
}

.store.store-approved-live .order-totals strong {
  font-size: 1.95rem;
}

.store.store-approved-live .payment-card {
  gap: 0.9rem;
}

.store.store-approved-live .payment-grid {
  gap: 0.8rem;
}

.store.store-approved-live .payment-grid input,
.store.store-approved-live .payment-grid textarea {
  border-radius: 12px;
  padding: 0.84rem 0.92rem;
}

.store.store-approved-live .payment-option {
  min-height: 3.05rem;
  padding: 0 0.92rem;
}

.store.store-approved-live .form-actions {
  display: grid;
  gap: 0.7rem;
}

.store.store-approved-live .button-block {
  min-height: 3.25rem;
}

@media (max-width: 1100px) {
  .store.store-approved-live .store-columns {
    grid-template-columns: 1fr;
  }

  .store.store-approved-live .store-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .store.store-approved-live .store-frame,
  .store.store-approved-live .system-card,
  .store.store-approved-live .order-card,
  .store.store-approved-live .payment-card {
    padding: 1rem;
  }

  .store.store-approved-live .store-heading h2 {
    font-size: clamp(2.05rem, 9vw, 2.8rem);
  }

  .section-heading h2.single-line-heading {
    white-space: normal;
  }

  .store.store-approved-live .payment-grid,
  .store.store-approved-live .product-detail-grid,
  .store.store-approved-live .product-row-heading {
    grid-template-columns: 1fr;
  }

  .store.store-approved-live .product-price-block {
    justify-content: space-between;
  }
}

/* Responsive header and quote request refinements */
.site-banner {
  top: clamp(0.45rem, 1.2vw, 0.9rem);
  grid-template-columns: minmax(8.8rem, clamp(9.4rem, 14vw, 11.2rem)) minmax(12rem, 1fr) auto;
  gap: clamp(0.55rem, 1.15vw, 1rem);
  width: min(calc(100% - clamp(0.5rem, 1.6vw, 1.2rem)), 1520px);
  margin-top: clamp(0.55rem, 1.3vw, 1rem);
}

.site-banner-logo {
  width: 100%;
  min-width: 0;
}

.site-banner-nav {
  justify-content: flex-end;
  gap: clamp(0.55rem, 1vw, 1.1rem);
  min-width: 0;
  flex-wrap: wrap;
}

.site-banner-nav a {
  font-size: clamp(0.66rem, 0.72vw, 0.8rem);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.site-banner-nav .site-banner-quote-link {
  margin-left: clamp(0.25rem, 1.2vw, 1.1rem);
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  background: rgba(83, 111, 96, 0.12);
  color: #405f4f;
}

.site-banner-nav .site-banner-quote-link:hover,
.site-banner-nav .site-banner-quote-link:focus-visible {
  background: rgba(83, 111, 96, 0.2);
  color: #233038;
}

.product-price-block {
  justify-content: flex-end;
}

.quote-add-button {
  width: auto;
  min-width: 7.2rem;
  height: 2.35rem;
  padding: 0 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.quote-card .cart-actions {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(79, 95, 101, 0.08);
}

.quote-details-header {
  padding-top: 0.15rem;
}

.store.store-approved-live .product-price-block {
  justify-content: flex-end;
  gap: 0;
}

.store.store-approved-live .quote-add-button {
  width: auto;
  min-width: 7.2rem;
  height: 2.35rem;
  min-height: 2rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
}

@media (max-width: 1180px) {
  .site-banner {
    grid-template-columns: minmax(8.8rem, 10.2rem) minmax(0, 1fr);
    row-gap: 0.58rem;
  }

  .site-banner-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .site-banner-nav .site-banner-quote-link {
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .site-banner {
    width: calc(100% - 1rem);
    gap: 0.58rem;
    grid-template-columns: auto minmax(0, 1fr);
    row-gap: 0.55rem;
  }

  .site-banner-logo {
    width: min(9.6rem, 48vw);
  }

  .site-banner-nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    gap: 0.58rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-left: 0.1rem;
    padding-bottom: 0.1rem;
    scrollbar-width: none;
  }

  .site-banner-nav::-webkit-scrollbar {
    display: none;
  }

  .site-banner-nav a {
    flex: 0 0 auto;
    font-size: clamp(0.58rem, 2.2vw, 0.68rem);
  }

  .site-banner-nav .site-banner-quote-link {
    padding: 0.42rem 0.68rem;
  }
}

@media (max-width: 760px) {
  .site-banner-slogan {
    display: none;
  }

  .store.store-approved-live .product-price-block {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-banner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .site-banner-logo {
    width: min(9rem, 62vw);
  }

  .site-banner-nav {
    gap: 0.4rem;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .site-banner-nav a {
    font-size: 0.56rem;
  }

  .site-banner-nav .site-banner-quote-link {
    padding: 0.36rem 0.5rem;
  }
}
/* Store colour selector and restored checkout refinements */
.store.store-approved-live .product-price-block {
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.store.store-approved-live .add-button {
  width: 1.9rem;
  min-width: 1.9rem;
  height: 1.9rem;
  padding: 0;
  border-radius: 999px;
  font-size: 1.1rem;
  letter-spacing: 0;
  text-transform: none;
}

.product-colour-picker {
  margin-top: 1rem;
  padding: 0.92rem;
  border-radius: 12px;
  background: rgba(246, 248, 249, 0.94);
}

.colour-picker-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
}

.product-colour-picker label {
  display: grid;
  gap: 0.38rem;
  color: var(--heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-colour-picker select {
  width: 100%;
  border: 1px solid rgba(79, 95, 101, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  padding: 0.72rem 0.78rem;
  color: var(--heading);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.product-colour-picker select:disabled {
  color: rgba(79, 95, 101, 0.46);
  background: rgba(244, 247, 248, 0.78);
}

.selected-colour-pill,
.colour-selection-hint {
  margin: 0.75rem 0 0;
}

.selected-colour-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.selected-colour-swatch {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(79, 95, 101, 0.18);
  background: var(--selected-colour);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.colour-selection-hint {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

body.has-modal-open {
  overflow: hidden;
}

.colour-cart-dialog {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.colour-cart-dialog.is-open {
  opacity: 1;
  pointer-events: auto;
}

.colour-cart-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(25, 33, 31, 0.46);
  cursor: pointer;
}

.colour-cart-modal {
  position: relative;
  z-index: 1;
  width: min(100%, 29rem);
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  background: rgba(252, 253, 252, 0.98);
  box-shadow: 0 28px 70px rgba(30, 42, 38, 0.24);
  color: var(--heading);
}

.colour-cart-modal:focus {
  outline: none;
}

.colour-cart-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(236, 241, 238, 0.92);
  color: var(--heading);
  font-weight: 800;
  cursor: pointer;
}

.colour-cart-close:hover,
.colour-cart-close:focus-visible {
  background: rgba(219, 230, 223, 0.95);
}

.colour-cart-modal h3 {
  margin: -0.25rem 2rem 0 0;
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
}

.colour-cart-product {
  display: grid;
  grid-template-columns: 4.4rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: stretch;
  min-width: 0;
  padding: 0.82rem;
  border-radius: 12px;
  background: rgba(244, 247, 248, 0.94);
}

.colour-cart-swatch {
  display: block;
  min-height: 4.2rem;
  border-radius: 10px;
  border: 1px solid rgba(79, 95, 101, 0.16);
  background: var(--dialog-colour);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.colour-cart-product strong,
.colour-cart-product span,
.colour-cart-product small {
  display: block;
}

.colour-cart-product strong {
  color: var(--heading);
  line-height: 1.25;
}

.colour-cart-product span {
  margin-top: 0.18rem;
  color: var(--accent-strong);
  font-weight: 800;
}

.colour-cart-product small {
  margin-top: 0.24rem;
  color: var(--text-soft);
  line-height: 1.45;
}

.colour-cart-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(79, 95, 101, 0.1);
}

.colour-cart-quantity > span {
  color: var(--text-soft);
  font-weight: 800;
}

.colour-cart-total {
  margin: -0.15rem 0 0;
  color: var(--heading);
  font-weight: 800;
}

.colour-cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.quote-request-card {
  display: grid;
  gap: 1rem;
}

.quote-actions {
  display: grid;
}

@media (max-width: 760px) {
  .store.store-approved-live .product-price-block {
    justify-content: space-between;
  }

  .colour-picker-controls {
    grid-template-columns: 1fr;
  }

  .colour-cart-dialog {
    align-items: end;
    padding: 0.8rem;
  }

  .colour-cart-modal {
    width: 100%;
    padding: 1.1rem;
  }

  .colour-cart-modal h3 {
    font-size: 1.85rem;
  }

  .colour-cart-product {
    grid-template-columns: 3.6rem minmax(0, 1fr);
  }

  .colour-cart-actions {
    grid-template-columns: 1fr;
  }
}
/* Visual colour comparison refinements */
.colour-shade-empty {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.9rem;
}

.colour-shade-empty p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.colour-series-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.colour-series-preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  min-width: 0;
  padding: 0.55rem 0.62rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.colour-series-preview-row div {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.18rem;
  max-width: 58%;
  flex-wrap: wrap;
}

.colour-series-preview-row small {
  display: block;
  margin-top: 0.12rem;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
}

.colour-series-preview-row em {
  color: var(--text-soft);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
}

.colour-series-preview-row i {
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(79, 95, 101, 0.14);
  background: var(--shade-colour);
}

.colour-shade-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
  margin-top: 0.92rem;
}

.colour-shade-tile {
  display: grid;
  grid-template-columns: 3.8rem minmax(0, 1fr);
  align-items: stretch;
  min-height: 5.1rem;
  padding: 0;
  border: 1px solid rgba(79, 95, 101, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--heading);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 10px 20px rgba(35, 45, 42, 0.035);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.colour-shade-tile:hover,
.colour-shade-tile:focus-visible {
  border-color: rgba(79, 159, 102, 0.48);
  box-shadow: 0 14px 26px rgba(35, 45, 42, 0.075);
  transform: translateY(-1px);
}

.colour-shade-tile.is-active {
  border-color: rgba(79, 159, 102, 0.82);
  box-shadow: 0 0 0 3px rgba(99, 170, 118, 0.16), 0 16px 28px rgba(35, 45, 42, 0.08);
}

.colour-shade-swatch {
  display: block;
  min-height: 100%;
  background: var(--shade-colour);
}

.colour-shade-copy {
  display: grid;
  gap: 0.2rem;
  align-content: center;
  min-width: 0;
  padding: 0.68rem 0.74rem;
}

.colour-shade-copy strong {
  color: var(--heading);
  font-size: 0.88rem;
  line-height: 1.2;
}

.colour-shade-copy small,
.selected-colour-pill small {
  display: block;
  color: var(--text-soft);
  font-size: 0.72rem;
  line-height: 1.25;
}

@media (max-width: 980px) {
  .colour-shade-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .colour-series-preview,
  .colour-shade-grid {
    grid-template-columns: 1fr;
  }
}

/* Separate checkout page and grouped colour options */
.store-page {
  min-height: 100vh;
}

.store-page-section {
  padding-top: clamp(8rem, 12vw, 10.5rem);
}

.store.store-approved-live .store-products-only {
  grid-template-columns: minmax(0, 1fr);
}

.checkout-page {
  min-height: 100vh;
}

.checkout-page-section {
  padding-top: clamp(8rem, 12vw, 10.5rem);
}

.checkout-frame {
  width: 100%;
}

.checkout-page-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.checkout-page .store-heading h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.98;
  color: var(--heading);
}

.checkout-store-link {
  min-height: 3rem;
  white-space: nowrap;
}

.checkout-page-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
  align-items: start;
}

.checkout-page-grid .quote-request-card {
  grid-column: 1 / -1;
}

.floating-store-prompt {
  position: fixed;
  right: clamp(0.85rem, 2vw, 1.5rem);
  bottom: clamp(0.85rem, 2vw, 1.5rem);
  z-index: 80;
  display: inline-grid;
  gap: 0.15rem;
  min-width: min(15.5rem, calc(100vw - 1.7rem));
  padding: 0.78rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(79, 95, 101, 0.16);
  background: rgba(255, 255, 255, 0.93);
  color: var(--heading);
  box-shadow: 0 18px 44px rgba(28, 38, 35, 0.18);
  backdrop-filter: blur(18px);
}

.floating-store-prompt span {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-store-prompt strong {
  color: var(--heading);
  font-size: 0.92rem;
  line-height: 1.2;
}

.floating-store-prompt.has-items {
  border-color: rgba(79, 159, 102, 0.42);
  box-shadow:
    0 0 0 4px rgba(99, 170, 118, 0.1),
    0 18px 44px rgba(28, 38, 35, 0.18);
}

.store-entry {
  padding-top: 0;
}

.home-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.45rem);
  align-items: stretch;
  margin-top: 3rem;
}

.home-action-grid > .section,
.home-action-grid > .section > .container {
  display: flex;
  width: 100%;
}

.home-action-grid > .section {
  padding: 0;
}

.home-action-grid > .section > .container {
  max-width: none;
}

.home-action-grid .colour-section-inner,
.home-action-grid .store-entry-card {
  width: 100%;
  height: 100%;
}

.store-entry-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem 1.2rem;
  align-items: center;
  padding: clamp(1.15rem, 2vw, 1.55rem);
  border-radius: 20px;
  border: 1px solid rgba(79, 95, 101, 0.1);
  background:
    radial-gradient(circle at 8% 0%, rgba(102, 146, 122, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 242, 239, 0.92));
  color: var(--heading);
  box-shadow: 0 24px 56px rgba(36, 46, 50, 0.07);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.store-entry-card span {
  grid-column: 1 / -1;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.store-entry-card strong {
  color: var(--heading);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 0.98;
}

.store-entry-card em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: var(--accent-strong);
  color: #fff;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.store-entry-card:hover,
.store-entry-card:focus-visible {
  border-color: rgba(79, 159, 102, 0.42);
  box-shadow: 0 28px 62px rgba(36, 46, 50, 0.1);
  transform: translateY(-2px);
}

.quotes-page {
  min-height: 100vh;
}

.quotes-section {
  padding-top: clamp(8rem, 12vw, 10.5rem);
}

.quotes-frame {
  padding: clamp(1.1rem, 2vw, 1.45rem);
  border-radius: 22px;
  border: 1px solid rgba(79, 95, 101, 0.09);
  background:
    radial-gradient(circle at 8% 4%, rgba(102, 146, 122, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(236, 240, 241, 0.95), rgba(241, 243, 244, 0.84));
  box-shadow: 0 24px 56px rgba(36, 46, 50, 0.07);
}

.quotes-heading {
  display: grid;
  gap: 0.85rem;
  max-width: 58rem;
  margin-bottom: 1.1rem;
}

.quotes-heading h1 {
  margin: 0;
  color: var(--heading);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.92;
}

.quotes-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.6;
}

.quotes-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.quote-builder-card,
.quote-recommendation-card,
.quote-message-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 1.6vw, 1.2rem);
  border-radius: 18px;
  border: 1px solid rgba(79, 95, 101, 0.09);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(35, 45, 42, 0.055);
}

.quote-message-card {
  grid-column: 1 / -1;
}

.quote-card-heading {
  display: grid;
  gap: 0.38rem;
}

.quote-card-heading span {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.quote-card-heading h2 {
  margin: 0;
  color: var(--heading);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  line-height: 0.98;
}

.quote-card-heading p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.quote-guide-panel {
  display: grid;
  gap: 0.82rem;
  padding: 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(79, 95, 101, 0.08);
  background:
    radial-gradient(circle at 10% 4%, rgba(102, 146, 122, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(249, 251, 250, 0.96), rgba(239, 244, 242, 0.82));
}

.quote-guide-panel h3 {
  margin: 0;
  color: var(--heading);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-guide-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding-left: 1.25rem;
}

.quote-guide-list li {
  padding-left: 0.18rem;
  color: var(--accent-strong);
}

.quote-guide-list strong,
.quote-guide-list span {
  display: block;
}

.quote-guide-list strong {
  color: var(--heading);
  font-weight: 900;
}

.quote-guide-list span {
  margin-top: 0.18rem;
  color: var(--text-soft);
  line-height: 1.45;
}

.quote-subsection {
  display: grid;
  gap: 0.78rem;
  padding: 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(79, 95, 101, 0.08);
  background: rgba(248, 250, 250, 0.72);
}

.quote-subsection h3 {
  margin: 0;
  color: var(--heading);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.quote-form-grid label {
  display: grid;
  gap: 0.45rem;
  color: var(--heading);
  font-weight: 800;
}

.quote-label-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  flex-wrap: wrap;
  line-height: 1.25;
}

.unit-nowrap {
  white-space: nowrap;
}

.unit-nowrap sup {
  font-size: 0.68em;
  line-height: 0;
  vertical-align: super;
}

.quote-form-grid input,
.quote-form-grid select,
.quote-form-grid textarea {
  width: 100%;
  border: 1px solid rgba(79, 95, 101, 0.12);
  border-radius: 12px;
  background: rgba(249, 250, 251, 0.98);
  padding: 0.9rem 0.95rem;
  color: var(--heading);
  font: inherit;
}

.quote-form-grid textarea {
  resize: vertical;
}

.quote-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.quote-checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.75rem 0.8rem;
  border: 1px solid rgba(79, 95, 101, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--heading);
  font-weight: 850;
}

.quote-checkbox-grid input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--accent-strong);
}

.field-helper {
  margin-top: -0.1rem;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
}

.google-address-label input {
  padding-right: 2.5rem;
}

.quote-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.quote-result-panel,
.quote-system-result {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(246, 248, 249, 0.94);
  border: 1px solid rgba(79, 95, 101, 0.08);
}

.quote-result-panel span,
.quote-system-result span {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-result-panel strong,
.quote-system-result strong {
  color: var(--heading);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 0.98;
}

.quote-result-panel p,
.quote-system-result p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.quote-impact-list {
  display: grid;
  gap: 0.46rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.quote-impact-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.85rem;
  padding-left: 0.85rem;
  border-left: 2px solid rgba(102, 146, 122, 0.3);
}

.quote-impact-list strong {
  color: var(--heading);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-impact-list span {
  color: var(--text);
  font-weight: 800;
  text-align: right;
}

.quote-system-result .store-link {
  justify-self: start;
  margin-top: 0.3rem;
}

.colour-shade-groups {
  display: grid;
  gap: 1rem;
  margin-top: 0.92rem;
}

.colour-shade-group {
  padding: 0.78rem;
  border-radius: 14px;
  border: 1px solid rgba(79, 95, 101, 0.08);
  background: rgba(255, 255, 255, 0.5);
}

.colour-shade-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.colour-shade-group-header h5 {
  margin: 0;
  color: var(--heading);
  font-size: 0.98rem;
  line-height: 1.1;
}

.colour-shade-group-header span {
  color: var(--text-soft);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.colour-shade-group .colour-shade-grid {
  margin-top: 0;
}

@media (max-width: 900px) {
  .checkout-page-heading,
  .checkout-page-grid {
    grid-template-columns: 1fr;
  }

  .checkout-store-link {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .checkout-page-section {
    padding-top: clamp(9.5rem, 26vw, 12rem);
  }

  .store-page-section {
    padding-top: clamp(9.5rem, 26vw, 12rem);
  }

  .quotes-section {
    padding-top: clamp(9.5rem, 26vw, 12rem);
  }

  .quotes-layout,
  .quote-form-grid,
  .quote-result-grid,
  .quote-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .quote-impact-list li {
    display: grid;
    gap: 0.16rem;
  }

  .quote-impact-list span {
    text-align: left;
  }

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

  .home-action-grid {
    grid-template-columns: 1fr;
  }

  .store-entry-card em {
    justify-self: start;
  }

  .floating-store-prompt {
    right: 0.75rem;
    bottom: 0.75rem;
    min-width: min(13.5rem, calc(100vw - 1.5rem));
    padding: 0.68rem 0.8rem;
    border-radius: 14px;
  }

  .colour-shade-group {
    padding: 0.62rem;
  }

  .colour-shade-group-header {
    align-items: start;
    flex-direction: column;
    gap: 0.35rem;
  }
}
