/* Saf Kum — premium mineral / construction design layer */
:root {
  --bg: #f3f0e8;
  --bg-elev: #fffdf8;
  --bg-soft: #e8e4da;
  --ink: #121a16;
  --ink-soft: #344139;
  --sand: #d89d46;
  --sand-bright: #f0c878;
  --sand-deep: #9a6728;
  --stone: #718078;
  --sky: #dce8e1;
  --sky-deep: #9eb5a7;
  --text: #17211b;
  --muted: #66736b;
  --line: rgba(18, 26, 22, 0.12);
  --line-strong: rgba(18, 26, 22, 0.22);
  --shadow: 0 28px 80px rgba(15, 25, 19, 0.14);
  --shadow-sm: 0 12px 36px rgba(15, 25, 19, 0.09);
  --danger: #ad4747;
  --ok: #39825a;
  --font-display: "Syne", "Arial Narrow", sans-serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --header-h: 5rem;
  --radius: 18px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  min-width: 320px;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 6% 15%, rgba(216, 157, 70, 0.09), transparent 26rem),
    linear-gradient(180deg, #f7f4ed 0%, var(--bg) 100%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: #101713;
  background: var(--sand-bright);
}

a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(216, 157, 70, 0.5);
  outline-offset: 3px;
}

.wrap {
  width: min(1220px, calc(100% - 2.5rem));
}

.site-utility {
  color: rgba(255, 255, 255, 0.72);
  background: #0d1511;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.site-utility-inner {
  min-height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-location,
.utility-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.utility-status {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #7fca93;
  box-shadow: 0 0 0 4px rgba(127, 202, 147, 0.12);
}

.site-utility a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.site-utility a:hover {
  color: var(--sand-bright);
}

.site-header {
  background: rgba(18, 26, 22, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(1.1);
}

.site-header.is-scrolled {
  background: rgba(13, 21, 17, 0.97);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(8, 14, 10, 0.2);
}

.header-inner {
  min-height: var(--header-h);
}

.logo {
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: -0.045em;
  align-items: center;
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.22rem;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.logo:hover .logo-tag {
  color: var(--sand-bright);
}

.logo:hover {
  color: var(--sand-bright);
}

.logo-mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.7rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.36), transparent 42%),
    linear-gradient(145deg, var(--sand-bright), var(--sand-deep));
  box-shadow:
    inset 0 -3px 0 rgba(63, 39, 8, 0.16),
    0 9px 22px rgba(216, 157, 70, 0.25);
  transform: rotate(-3deg);
}

.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  border-radius: 50% 50% 22% 22%;
}

.logo-mark::before {
  height: 36%;
  bottom: 13%;
  background: rgba(255, 255, 255, 0.22);
}

.logo-mark::after {
  left: 29%;
  right: 29%;
  height: 22%;
  bottom: 32%;
  background: rgba(255, 255, 255, 0.28);
}

.site-nav {
  gap: 0.15rem 0.35rem;
  align-items: center;
}

.site-nav .nav-link {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 0.55rem;
  position: relative;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.is-active {
  color: #fff;
}

.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 100%;
  bottom: 0.35rem;
  height: 2px;
  background: var(--sand-bright);
  border-radius: 2px;
  transition: right 0.3s var(--ease);
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link.is-active::after {
  right: 0.55rem;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-caret {
  width: 1.7rem;
  height: 1.7rem;
  margin-left: -0.2rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  border-radius: 6px;
  display: grid;
  place-items: center;
}

.nav-caret::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s var(--ease);
}

.nav-caret:hover,
.nav-item.is-open .nav-caret,
.nav-item.has-dropdown:hover .nav-caret {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-item.is-open .nav-caret::before {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 0.2rem);
  left: 0;
  min-width: 13.5rem;
  padding: 0.45rem;
  border-radius: 12px;
  background: #121a16;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  display: none;
  flex-direction: column;
  z-index: 80;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  display: flex;
}

.nav-dropdown a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-dropdown-all {
  margin-top: 0.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--sand-bright) !important;
}

.nav-toggle {
  position: relative;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.nav-toggle span:not(.sr-only) {
  background: #fff;
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only) {
  position: absolute;
  left: 50%;
  top: 50%;
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.btn {
  position: relative;
  min-height: 3.15rem;
  padding-inline: 1.4rem;
  overflow: hidden;
  border-radius: 0.8rem;
  letter-spacing: -0.01em;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.23), transparent 68%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  color: #17130c;
  background: linear-gradient(135deg, var(--sand-bright), var(--sand));
  box-shadow: 0 14px 30px rgba(154, 103, 40, 0.25);
}

.btn-primary:hover {
  color: #17130c;
  background: linear-gradient(135deg, #f7d791, #dc9e46);
  box-shadow: 0 18px 38px rgba(154, 103, 40, 0.32);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(18, 26, 22, 0.16);
}

.btn-ghost:hover {
  color: var(--ink);
  border-color: rgba(18, 26, 22, 0.32);
  background: #fff;
}

.btn-nav {
  min-height: 2.7rem;
  border-radius: 0.7rem;
  padding-inline: 1.15rem;
}

/* Home hero */
.hero {
  min-height: min(88vh, 840px);
  align-items: stretch;
  color: #fff;
  background: #101914;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 17, 13, 0.98) 0%, rgba(10, 17, 13, 0.88) 42%, rgba(10, 17, 13, 0.2) 78%),
    linear-gradient(0deg, rgba(10, 17, 13, 0.54), transparent 48%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.hero-visual {
  opacity: 0.84;
  filter: saturate(0.72) contrast(1.08);
}

.hero-visual svg {
  transform: scaleX(-1);
}

.hero-grid {
  position: relative;
  z-index: 3;
  width: min(1220px, calc(100% - 2.5rem));
  margin-inline: auto;
  padding: clamp(4.5rem, 10vh, 7.5rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.62fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.hero-content {
  z-index: auto;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero-panel {
  max-width: 46rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-kicker {
  color: var(--sand-bright);
  margin-bottom: 1.25rem;
}

.hero-kicker::before {
  background: var(--sand-bright);
}

.hero-brand {
  max-width: 9ch;
  color: #fff;
  font-size: clamp(4rem, 10vw, 7.7rem);
  line-height: 0.84;
  text-wrap: balance;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
}

.hero-lead {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
}

.hero-actions {
  gap: 0.8rem;
}

.hero .btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero .btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.36);
}

.hero-proof {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
}

.hero-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-proof-item::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--sand-bright);
  box-shadow: 0 0 0 4px rgba(240, 200, 120, 0.12);
}

.hero-showcase {
  position: relative;
  align-self: stretch;
  min-height: 32rem;
  display: flex;
  align-items: end;
  justify-content: end;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  right: 3%;
  bottom: 4%;
  width: min(26rem, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 200, 120, 0.24), transparent 68%);
  filter: blur(12px);
}

.hero-showcase-card {
  position: relative;
  width: min(22rem, 100%);
  margin-bottom: 1.2rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 1.3rem;
  background: rgba(12, 20, 16, 0.72);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.hero-showcase-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-showcase-label span:last-child {
  color: #91d1a2;
}

.material-stack {
  position: relative;
  min-height: 12rem;
  overflow: hidden;
  border-radius: 0.95rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 42%),
    #18231d;
}

.material-stack::before,
.material-stack::after {
  content: "";
  position: absolute;
  left: -12%;
  width: 124%;
  border-radius: 50% 50% 0 0;
}

.material-stack::before {
  bottom: -12%;
  height: 70%;
  background:
    radial-gradient(circle at 23% 26%, rgba(255,255,255,.25), transparent 2px),
    radial-gradient(circle at 68% 46%, rgba(255,255,255,.18), transparent 2px),
    linear-gradient(150deg, #dfbd7e, #9f7038);
  background-size: 19px 19px, 23px 23px, auto;
}

.material-stack::after {
  bottom: -30%;
  height: 64%;
  background:
    radial-gradient(circle at 24% 40%, #8f9690 0 4px, transparent 5px),
    radial-gradient(circle at 66% 55%, #6f7871 0 3px, transparent 4px),
    linear-gradient(150deg, #aeb7b0, #5f6b63);
  background-size: 28px 28px, 34px 34px, auto;
  opacity: 0.9;
}

.hero-showcase-meta {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.hero-metric {
  padding: 0.8rem;
  border-radius: 0.8rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
}

.hero-metric strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
}

.hero-metric span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255,255,255,.56);
  font-size: 0.75rem;
}

/* Trust, sections and cards */
.trust-wrap {
  margin-top: -2.9rem;
}

.trust-row {
  gap: 1rem;
}

.trust-item {
  min-height: 8.7rem;
  padding: 1.25rem;
  border-radius: 1.15rem;
  border-color: rgba(18, 26, 22, 0.1);
  box-shadow: 0 20px 55px rgba(15, 25, 19, 0.11);
}

.trust-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.9rem;
  background: linear-gradient(145deg, #fff8e8, #e4d2aa);
}

.trust-item strong {
  font-size: 1.08rem;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--compact {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.section--soft {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.48), transparent),
    #ebe8df;
  border-block: 1px solid rgba(18, 26, 22, 0.08);
}

.section-head {
  margin-bottom: 2.4rem;
}

.section-eyebrow {
  color: var(--sand-deep);
  letter-spacing: 0.18em;
}

.section-title {
  max-width: 18ch;
  font-size: clamp(2.25rem, 5vw, 3.65rem);
  line-height: 0.96;
}

.section-title::after {
  width: 4.5rem;
  height: 0.28rem;
  background: linear-gradient(90deg, var(--sand), transparent);
}

.section-sub {
  max-width: 43rem;
  font-size: 1.03rem;
}

.section-link {
  color: var(--ink);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line-strong);
}

.section-link:hover {
  color: var(--sand-deep);
  border-color: var(--sand);
}

.process {
  gap: 1rem;
}

.process-step {
  min-height: 13rem;
  padding: 1.5rem;
  border-radius: 1.15rem;
  background: var(--bg-elev);
  box-shadow: 0 8px 30px rgba(15, 25, 19, 0.05);
}

.process-step .num {
  color: var(--sand);
  font-size: 2.3rem;
}

.process-step h3 {
  font-size: 1.2rem;
}

.product-grid,
.region-grid,
.post-grid {
  gap: 1.25rem;
}

.product-link,
.region-link,
.post-link {
  min-height: 100%;
  border-radius: 1.25rem;
  background: var(--bg-elev);
  border-color: rgba(18, 26, 22, 0.1);
  box-shadow: 0 8px 30px rgba(15, 25, 19, 0.055);
}

.product-link:hover,
.region-link:hover,
.post-link:hover {
  transform: translateY(-0.5rem);
  border-color: rgba(216, 157, 70, 0.52);
  box-shadow: 0 28px 70px rgba(15, 25, 19, 0.14);
}

.tile-visual {
  height: 12.5rem;
}

.tile-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(transparent, rgba(12, 19, 15, 0.18));
  pointer-events: none;
}

.tile-body {
  flex: 1;
  padding: 1.35rem 1.4rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.tile-index {
  color: var(--sand-deep);
}

.product-link h3,
.region-link h3,
.post-link h3 {
  font-size: 1.45rem;
}

.tile-cta {
  margin-top: auto;
  padding-top: 1.1rem;
  color: var(--sand-deep);
}

.cta-band {
  padding: clamp(2.3rem, 5vw, 4rem);
  border-radius: 1.6rem;
  color: #fff;
  background:
    radial-gradient(circle at 88% 30%, rgba(240, 200, 120, 0.22), transparent 24rem),
    linear-gradient(135deg, #15221b, #23352b);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 30px 78px rgba(15, 25, 19, 0.2);
}

.cta-band h2 {
  max-width: 16ch;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.35rem);
}

.cta-band .muted {
  max-width: 38rem;
  color: rgba(255,255,255,.64);
}

.cta-band::after {
  opacity: 0.2;
}

/* Inner pages */
.breadcrumbs {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  font-size: 0.83rem;
}

.page-hero {
  min-height: 23rem;
  padding: clamp(4rem, 8vw, 6.8rem) 0;
  display: flex;
  align-items: end;
  color: #fff;
  border-bottom: 0;
  background:
    radial-gradient(circle at 84% 20%, rgba(240, 200, 120, 0.2), transparent 23rem),
    linear-gradient(135deg, #101914, #26382e);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.page-hero::after {
  right: -8%;
  bottom: -76%;
  width: min(38rem, 70vw);
  height: 190%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.18), transparent 2px),
    linear-gradient(160deg, #d7b16f, #7b5428);
  background-size: 22px 22px, auto;
  opacity: 0.3;
  transform: rotate(-10deg);
}

.page-hero h1 {
  max-width: 18ch;
  color: #fff;
  font-size: clamp(3rem, 8vw, 5.2rem);
}

.page-hero p {
  max-width: 46rem;
  color: rgba(255,255,255,.66);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.page-hero .section-eyebrow {
  color: var(--sand-bright);
}

.split {
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.prose {
  max-width: 48rem;
  font-size: 1.06rem;
}

.prose h2,
.prose h3 {
  color: var(--ink);
  line-height: 1.08;
}

.prose h2 {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose blockquote {
  margin: 2rem 0;
  padding: 1.2rem 1.35rem;
  color: var(--ink);
  border-left: 4px solid var(--sand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #ebe6da;
}

.detail-visual,
.about-visual,
.form-side-visual {
  border-radius: 1.35rem;
  border-color: rgba(18, 26, 22, 0.1);
  box-shadow: var(--shadow-sm);
}

.detail-visual {
  min-height: 24rem;
}

.detail-visual img {
  min-height: 24rem;
}

.form-panel {
  width: 100%;
  max-width: none;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 1.3rem;
  background: rgba(255, 253, 248, 0.96);
  border-color: rgba(18, 26, 22, 0.1);
  box-shadow: var(--shadow-sm);
}

.sticky-aside {
  top: calc(var(--header-h) + 3.25rem);
}

.form-row input,
.form-row select,
.form-row textarea {
  min-height: 3.15rem;
  color: var(--text);
  background: #fbfaf6;
  border-color: rgba(18, 26, 22, 0.18);
  border-radius: 0.75rem;
}

.form-row textarea {
  min-height: 8rem;
}

.form-row input:hover,
.form-row select:hover,
.form-row textarea:hover {
  border-color: rgba(18, 26, 22, 0.32);
}

.contact-card {
  border-radius: 1rem;
  background: var(--bg-elev);
}

.contact-card-icon {
  color: #fff;
  background: linear-gradient(145deg, #22372c, #101914);
  border-color: transparent;
}

.faq details {
  border-radius: 1rem;
  background: var(--bg-elev);
}

.map-frame {
  border-radius: 1.2rem;
}

/* Footer */
.site-footer {
  margin-top: 0;
  padding: clamp(4rem, 8vw, 6.5rem) 0 2rem;
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(216, 157, 70, 0.13), transparent 25rem),
    #0d1511;
  border-top: 0;
}

.site-footer::before {
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 54px 54px;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(10rem, 0.7fr));
  gap: clamp(2rem, 6vw, 5rem);
}

.footer-brand-row .logo-mark {
  width: 2.5rem;
  height: 2.5rem;
}

.footer-brand {
  color: #fff;
}

.footer-grid .muted {
  max-width: 30rem;
  color: rgba(255,255,255,.54);
}

.footer-availability {
  width: fit-content;
  margin: 1.25rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255,255,255,.68);
  font-size: 0.78rem;
}

.footer-availability span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #7fca93;
  box-shadow: 0 0 0 4px rgba(127,202,147,.11);
}

.footer-title {
  color: var(--sand-bright);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.footer-grid a {
  width: fit-content;
  color: rgba(255,255,255,.62);
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  color: rgba(255,255,255,.42);
  border-top-color: rgba(255,255,255,.1);
}

.mobile-cta {
  background: rgba(13, 21, 17, 0.95);
  border-top-color: rgba(255,255,255,.1);
}

.mobile-cta .btn-ghost {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}

.flash {
  position: relative;
  z-index: 5;
}

.logo:hover {
  color: var(--sand-bright);
}

/* Design pass */
.hero-visual {
  opacity: 0.9;
  filter: saturate(0.88) contrast(1.04);
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(10, 17, 13, 0.92) 0%, rgba(10, 17, 13, 0.72) 46%, rgba(10, 17, 13, 0.18) 82%),
    linear-gradient(0deg, rgba(10, 17, 13, 0.5), transparent 52%);
}

.trust-item {
  background: #fffdf8;
}

.material-ticker {
  overflow: hidden;
  margin: 0.25rem 0 0;
  padding: 0.85rem 0;
  border-block: 1px solid rgba(18, 26, 22, 0.08);
  background: #ece8de;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.material-ticker-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: ticker 36s linear infinite;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.material-ticker-track span {
  position: relative;
}

.material-ticker-track span::before {
  content: "·";
  margin-right: 2.4rem;
  color: var(--sand);
}

.material-ticker:hover .material-ticker-track {
  animation-play-state: paused;
}

.cta-band {
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1.5rem;
}

.cta-band .btn-ghost {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}

.cta-band .btn-ghost:hover {
  color: #fff;
  background: rgba(255,255,255,.14);
}

.breadcrumbs {
  width: 100%;
  margin: 0;
  padding: 0;
  color: rgba(255,255,255,.48);
  background: #0d1511;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.breadcrumbs ol {
  width: min(1220px, calc(100% - 2.5rem));
  margin-inline: auto;
  padding: 0.7rem 0;
}

.breadcrumbs a {
  color: rgba(255,255,255,.55);
}

.breadcrumbs a:hover {
  color: var(--sand-bright);
}

.breadcrumbs [aria-current="page"] {
  color: rgba(255,255,255,.88);
}

.breadcrumbs li:not(:last-child)::after {
  color: rgba(255,255,255,.28);
}

.page-hero {
  min-height: 18.5rem;
  padding: clamp(2.6rem, 6vw, 4.8rem) 0 3.2rem;
}

.form-side-visual {
  min-height: 11rem;
}

.quote-aside-list {
  margin: 1.1rem 0 1.4rem;
}

.quote-aside-list .dot {
  background: var(--sand);
}

.site-footer .btn-primary {
  min-height: 2.7rem;
}

@media (prefers-reduced-motion: reduce) {
  .material-ticker-track {
    animation: none;
  }
}

/* Empty states */
.empty-state {
  grid-column: 1 / -1;
  padding: 3rem 1.5rem;
  text-align: center;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255,255,255,.45);
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.52fr);
    gap: 2rem;
  }

  .hero-brand {
    font-size: clamp(3.6rem, 10vw, 6rem);
  }

  .hero-showcase {
    min-height: 28rem;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 5rem;
  }

  .hero-showcase {
    min-height: auto;
    justify-content: start;
  }

  .hero-showcase-card {
    width: min(30rem, 100%);
    margin: 0;
  }

  .product-grid,
  .region-grid,
  .post-grid,
  .trust-row,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .footer-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 5rem;
  }

  body.site-nav-open {
    overflow: hidden;
  }

  .wrap,
  .hero-grid,
  .breadcrumbs ol {
    width: min(100% - 1.35rem, 1220px);
  }

  .site-utility {
    display: none;
  }

  .header-inner {
    min-height: 4.45rem;
  }

  .logo-mark {
    width: 2.15rem;
    height: 2.15rem;
  }

  .site-nav {
    position: fixed;
    top: 4.45rem;
    bottom: 0;
    z-index: 60;
    padding: 0.75rem;
    gap: 0.2rem;
    overflow-y: auto;
    align-items: stretch;
    color: #fff;
    background: rgba(13, 21, 17, 0.99);
    border-bottom-color: rgba(255,255,255,.1);
    box-shadow: 0 22px 50px rgba(0,0,0,.28);
  }

  .site-nav .nav-link {
    padding: 0.8rem 0.65rem;
    border-radius: 0.55rem;
    flex: 1;
  }

  .site-nav .nav-link::after {
    display: none;
  }

  .site-nav .nav-link.is-active,
  .nav-item.is-active > .nav-link {
    background: rgba(255,255,255,.07);
    color: #fff;
  }

  .nav-item {
    flex-wrap: wrap;
  }

  .nav-caret {
    width: 2.6rem;
    height: 2.6rem;
  }

  .nav-dropdown {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin: 0 0 0.35rem;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
  }

  .nav-item.has-dropdown:hover .nav-dropdown,
  .nav-item.has-dropdown:focus-within .nav-dropdown {
    display: none;
  }

  .nav-item.is-open .nav-dropdown {
    display: flex;
  }

  .site-nav .btn {
    margin-top: 0.35rem;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(10, 17, 13, 0.97), rgba(10, 17, 13, 0.72)),
      linear-gradient(0deg, rgba(10, 17, 13, 0.5), transparent);
  }

  .hero-grid {
    padding: 4.25rem 0 5.25rem;
  }

  .hero-brand {
    max-width: 8ch;
    font-size: clamp(3.65rem, 18vw, 5.35rem);
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-showcase-card {
    padding: 0.85rem;
  }

  .material-stack {
    min-height: 9rem;
  }

  .trust-wrap {
    margin-top: -2rem;
  }

  .product-grid,
  .region-grid,
  .post-grid,
  .trust-row,
  .process {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 0;
  }

  .section {
    padding: 4.25rem 0;
  }

  .section-title {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .tile-visual {
    height: 10.8rem;
  }

  .page-hero {
    min-height: 20rem;
    padding: 4rem 0;
  }

  .page-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .detail-visual,
  .detail-visual img {
    min-height: 15rem;
  }

  .cta-band {
    padding: 2rem 1.3rem;
  }

  .mobile-cta {
    display: flex;
  }
}

@media (max-width: 420px) {
  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-showcase-meta {
    grid-template-columns: 1fr;
  }

  .form-panel {
    padding: 1.1rem;
  }
}

.page-hero--wide h1 {
  max-width: min(26ch, 100%);
}

.local-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15.5rem, 1fr));
  gap: 0.75rem;
}

.local-chip {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0.95rem 1.05rem;
  border-radius: 0.95rem;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(18, 26, 22, 0.1);
  box-shadow: var(--shadow-sm);
}

.local-chip:hover {
  border-color: rgba(201, 162, 74, 0.55);
  transform: translateY(-2px);
}

.local-chip strong {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  font-size: 1.02rem;
}

.local-chip span {
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.35;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
