:root {
  --ink: #2e3029;
  --muted: #6d6f64;
  --olive: #58633a;
  --olive-dark: #303818;
  --clay: #b9674f;
  --terracotta: #c88463;
  --sage: #d9dfc9;
  --cream: #faf3e7;
  --ivory: #fffdf8;
  --line: #e6dfd2;
  --soft: #efeadf;
  --gold: #b79b64;
  --shadow: 0 24px 70px rgba(46, 48, 41, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 138px;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 10px 20px;
  background: linear-gradient(90deg, var(--olive-dark), #566137);
  color: #f7f0df;
  font-size: 13px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 82px;
  padding: 0 7vw;
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid rgba(230, 223, 210, 0.72);
  backdrop-filter: blur(18px);
  transition: min-height 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  box-shadow: 0 12px 34px rgba(46, 48, 41, 0.08);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid var(--olive);
  border-radius: 50%;
  color: var(--olive);
  font-family: Lora, serif;
  font-size: 15px;
  font-weight: 600;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: Lora, serif;
  font-size: 22px;
  font-weight: 600;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: #383a31;
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  position: relative;
  padding: 10px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--olive);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav a.active {
  color: var(--olive);
}

.nav a.active::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 4px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta {
  padding: 0 22px;
  background: var(--olive);
  color: #fff8e8;
  font-size: 14px;
}

.button {
  padding: 0 24px;
}

.button.primary {
  background: var(--olive);
  color: #fff8e8;
}

.button.secondary {
  border: 1px solid #b56d52;
  color: var(--clay);
}

.immersive-hero .button.secondary {
  border-color: rgba(255, 248, 232, 0.72);
  color: #fff8e8;
}

.button.wide {
  width: 100%;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

main {
  overflow: hidden;
}

section {
  padding: 86px 7vw;
  scroll-margin-top: 92px;
}

.page-main {
  background: var(--ivory);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  gap: 46px;
  align-items: end;
  min-height: 520px;
  background: linear-gradient(135deg, #f7efe3, #fbf7ef);
}

.page-hero.full {
  grid-template-columns: 1fr;
  min-height: 430px;
}

.page-hero img {
  aspect-ratio: 1 / 0.72;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--olive);
}

.breadcrumb span::before {
  margin-right: 8px;
  color: var(--muted);
  content: "/";
}

.page-intro {
  max-width: 820px;
}

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

.page-card {
  display: grid;
  align-content: start;
  background: #f8f1e7;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.page-card:hover {
  border-color: rgba(88, 99, 58, 0.36);
  box-shadow: 0 16px 42px rgba(46, 48, 41, 0.1);
  transform: translateY(-3px);
}

.page-card img {
  aspect-ratio: 1 / 0.7;
  object-fit: cover;
}

.page-card div {
  padding: 20px;
}

.page-card h3 {
  margin-top: 0;
}

.page-card p {
  margin-bottom: 16px;
  font-size: 14px;
}

.text-link {
  color: var(--olive);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 0;
}

.spec-strip span {
  padding: 18px;
  background: #f7efe3;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.spec-strip small,
.spec-strip strong {
  display: block;
}

.spec-strip small {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: 36px;
  align-items: start;
}

.detail-sidebar {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 10px;
  padding: 22px;
  background: #f8f1e7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-sidebar a {
  padding: 11px 0;
  border-bottom: 1px solid rgba(110, 101, 83, 0.14);
  color: var(--olive);
  font-weight: 800;
}

.detail-content {
  display: grid;
  gap: 24px;
}

.detail-panel {
  padding: 28px;
  background: #f8f1e7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-panel h2,
.detail-panel h3 {
  margin-top: 0;
}

.detail-list {
  display: grid;
  gap: 10px;
}

.detail-list li {
  padding: 13px 15px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.article-list {
  display: grid;
  gap: 18px;
}

.article-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: center;
  padding: 14px;
  background: #f8f1e7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-row img {
  aspect-ratio: 1 / 0.68;
  border-radius: 6px;
  object-fit: cover;
}

.article-row span {
  display: block;
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(420px, 1.15fr);
  gap: 34px;
  align-items: start;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100vh - 118px);
  padding-top: 58px;
  overflow: hidden;
  background: #2f2f22;
  isolation: isolate;
}

.immersive-hero {
  min-height: 760px;
  color: #fff8e8;
}

.hero-scene-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: opacity 260ms ease, transform 900ms ease;
}

.hero-scene-image.is-changing {
  opacity: 0.42;
  transform: scale(1.055);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(24, 27, 15, 0.82) 0%, rgba(24, 27, 15, 0.62) 42%, rgba(24, 27, 15, 0.2) 74%),
    linear-gradient(0deg, rgba(24, 27, 15, 0.65) 0%, rgba(24, 27, 15, 0.05) 42%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Lora, Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(45px, 5vw, 74px);
  line-height: 1.05;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.24;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 30px;
  font-size: 18px;
}

.immersive-hero .hero-copy {
  max-width: 720px;
  padding: 0 0 96px;
}

.immersive-hero .eyebrow,
.immersive-hero .hero-text {
  color: #f6ead6;
}

.immersive-hero h1 {
  color: #fff8e8;
  text-shadow: 0 3px 34px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-proof {
  position: absolute;
  right: 7vw;
  bottom: 38px;
  left: 7vw;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1040px;
  background: rgba(255, 248, 232, 0.22);
  border: 1px solid rgba(255, 248, 232, 0.22);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.hero-proof span {
  padding: 18px 20px;
  background: rgba(255, 253, 248, 0.12);
  color: #f8eddc;
  font-size: 14px;
}

.hero-proof strong {
  display: block;
  margin-bottom: 3px;
  color: #fff8e8;
  font-family: Lora, serif;
  font-size: 24px;
}

.hero-scene-switch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px;
  background: rgba(255, 253, 248, 0.12);
  border: 1px solid rgba(255, 248, 232, 0.24);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

.scene-pill {
  min-height: 40px;
  padding: 0 16px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: #f8eddc;
  cursor: pointer;
  font-weight: 800;
}

.scene-pill.active {
  background: #fff8e8;
  color: var(--olive-dark);
}

.faith-spotlight {
  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) minmax(360px, 0.9fr);
  gap: 46px;
  align-items: center;
  background: linear-gradient(135deg, #f8f1e7 0%, #fffdf8 100%);
}

.spotlight-media {
  position: relative;
}

.spotlight-media img {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.product-hotspots {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hotspot {
  min-height: 40px;
  padding: 0 14px;
  background: rgba(255, 253, 248, 0.85);
  border: 1px solid rgba(255, 248, 232, 0.8);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(46, 48, 41, 0.12);
}

.hotspot.active {
  background: var(--olive);
  color: #fff8e8;
}

.spotlight-copy {
  transition: opacity 180ms ease, transform 180ms ease;
}

.spotlight-copy.is-changing {
  opacity: 0.25;
  transform: translateY(8px);
}

.spotlight-specs {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.spotlight-specs span {
  padding: 14px 16px;
  background: #f3eadc;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #4d5045;
  font-weight: 700;
}

.showroom {
  background: #fffdf8;
}

.showroom-stage {
  display: grid;
  grid-template-columns: minmax(420px, 1.15fr) minmax(360px, 0.85fr);
  gap: 36px;
  align-items: stretch;
  min-height: 500px;
  margin-bottom: 18px;
  padding: 24px;
  background: #f6ecdf;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: opacity 200ms ease, transform 200ms ease;
}

.showroom-stage.is-changing {
  opacity: 0.28;
  transform: translateY(8px);
}

.showroom-image img {
  height: 100%;
  min-height: 450px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 22px 60px rgba(46, 48, 41, 0.12);
}

.showroom-copy {
  align-self: center;
  padding: 24px 14px;
}

.showroom-copy h3 {
  font-family: Lora, Georgia, serif;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.12;
}

.showroom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.showroom-tags span {
  padding: 10px 13px;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--olive);
  font-size: 13px;
  font-weight: 800;
}

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

.showroom-thumb {
  padding: 8px;
  background: #f8f1e7;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.showroom-thumb img {
  aspect-ratio: 1 / 0.58;
  margin-bottom: 10px;
  border-radius: 6px;
  object-fit: cover;
}

.showroom-thumb span {
  display: block;
  padding: 0 4px 3px;
  font-weight: 800;
}

.showroom-thumb.active {
  border-color: var(--olive);
  box-shadow: 0 14px 34px rgba(46, 48, 41, 0.12);
}

.showroom-thumb:hover {
  transform: translateY(-3px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(300px, 1.05fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.pathway,
.collection-hub,
.featured,
.process,
.blog {
  background: var(--ivory);
}

.path-switch,
.tabs,
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.path-button,
.tab,
.blog-filter,
.option {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  color: var(--ink);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.path-button {
  min-height: 58px;
  min-width: 270px;
  padding: 0 24px;
  border-radius: 6px;
  font-weight: 800;
}

.path-button.active,
.tab.active,
.blog-filter.active,
.option.active {
  border-color: var(--olive);
  background: var(--olive);
  color: #fff8e8;
}

.path-button:hover,
.tab:hover,
.blog-filter:hover,
.option:hover {
  transform: translateY(-1px);
}

.collection-routes {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.route-card {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 14px;
  background: #f8f1e7;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.route-card-featured {
  grid-row: span 3;
  grid-template-columns: 1fr;
  padding: 18px;
}

.route-card:hover {
  border-color: rgba(88, 99, 58, 0.42);
  box-shadow: 0 16px 42px rgba(46, 48, 41, 0.1);
  transform: translateY(-3px);
}

.route-card img {
  height: 100%;
  min-height: 142px;
  border-radius: 6px;
  object-fit: cover;
}

.route-card-featured img {
  aspect-ratio: 1 / 0.62;
  min-height: 310px;
}

.route-card h3 {
  margin-top: 0;
}

.route-card p {
  margin-bottom: 14px;
  font-size: 14px;
}

.route-card a {
  display: inline-flex;
  color: var(--olive);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-panel,
.tab-panel,
.quality,
.inquiry {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 36px;
  align-items: start;
  padding: 34px;
  background: #f7efe3;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.collection-panel {
  min-height: 245px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.collection-panel.is-changing,
.tab-panel.is-changing {
  opacity: 0.2;
  transform: translateY(8px);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.collection-panel li,
.tab-panel li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid rgba(110, 101, 83, 0.16);
  color: #56594e;
}

.collection-panel li::before,
.tab-panel li::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.builder {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(460px, 1.22fr);
  gap: 44px;
  background: linear-gradient(135deg, #f3eee4 0%, #f7eadf 100%);
}

.builder-copy {
  align-self: center;
}

.builder-card {
  padding: 30px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(46, 48, 41, 0.07);
}

.builder-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.builder-row > span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.option-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.request-preview {
  margin-top: 22px;
  padding: 22px;
  background: linear-gradient(135deg, #f7f2e8, #f3e2d2);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.request-preview span,
.request-preview a {
  display: block;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.request-preview strong {
  display: block;
  margin: 8px 0 14px;
  font-family: Lora, serif;
  font-size: 25px;
  line-height: 1.25;
}

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

.product-card {
  position: relative;
}

.product-card img,
.sample-block {
  aspect-ratio: 1 / 0.78;
  margin-bottom: 15px;
  border-radius: 7px;
  object-fit: cover;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.product-card:hover img,
.product-card:hover .sample-block {
  box-shadow: var(--shadow);
  transform: translateY(-4px) scale(1.018);
}

.product-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.about {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(380px, 1.1fr);
  gap: 38px;
  align-items: start;
  background: linear-gradient(135deg, #f5efe4, #fbf7ef);
}

.about-copy {
  position: sticky;
  top: 108px;
}

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

.about-proof-grid span {
  min-height: 178px;
  padding: 22px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-proof-grid strong,
.about-proof-grid small {
  display: block;
}

.about-proof-grid strong {
  margin-bottom: 30px;
  color: var(--clay);
  font-weight: 900;
}

.about-proof-grid small {
  color: #53564d;
  font-size: 15px;
  line-height: 1.6;
}

.blog-filter {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

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

.blog-card {
  display: grid;
  background: #f8f1e7;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: opacity 180ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.blog-card.is-hidden {
  display: none;
}

.blog-card:hover {
  box-shadow: 0 16px 42px rgba(46, 48, 41, 0.1);
  transform: translateY(-3px);
}

.blog-card img {
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
}

.blog-card div {
  padding: 18px;
}

.blog-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin-top: 0;
  font-size: 19px;
}

.blog-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.sample-block {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--sage), #f8eadc);
  border: 1px solid var(--line);
  color: var(--olive);
  text-align: center;
}

.sample-block span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.sample-block strong {
  font-family: Lora, serif;
  font-size: 30px;
}

.use-cases {
  background: #f7efe3;
}

.line-planner {
  background: var(--ivory);
}

.planner-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
}

.planner-controls {
  display: grid;
  gap: 10px;
  align-content: start;
}

.planner-button {
  min-height: 56px;
  padding: 0 18px;
  background: #f8f1e7;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.planner-button.active {
  background: var(--olive);
  color: #fff8e8;
}

.planner-button:hover {
  transform: translateX(3px);
}

.planner-output {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: 28px;
  min-height: 390px;
  padding: 26px;
  background: linear-gradient(135deg, #f7efe3, #fbf6ee);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.planner-output.is-changing {
  opacity: 0.25;
  transform: translateY(8px);
}

.planner-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-self: stretch;
}

.planner-visuals img {
  height: 100%;
  min-height: 300px;
  border-radius: 7px;
  object-fit: cover;
}

.planner-visuals img:first-child {
  transform: translateY(18px);
}

.planner-content {
  align-self: center;
}

.mix-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.mix-list span,
.planner-meta span {
  display: block;
  padding: 13px 14px;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #4e5047;
  font-size: 14px;
  font-weight: 700;
}

.planner-meta {
  display: grid;
  gap: 10px;
}

.collection-explorer {
  background: #f7efe3;
}

.explorer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.explorer-card {
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.explorer-card img {
  aspect-ratio: 1 / 0.72;
  border: 2px solid transparent;
  border-radius: 8px;
  object-fit: cover;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.explorer-card span {
  display: block;
  padding-top: 10px;
  font-weight: 800;
}

.explorer-card.active img {
  border-color: var(--olive);
  box-shadow: 0 16px 44px rgba(46, 48, 41, 0.12);
}

.explorer-card:hover img {
  transform: translateY(-3px);
}

.explorer-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: 34px;
  min-height: 245px;
  padding: 32px;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.explorer-detail.is-changing {
  opacity: 0.25;
  transform: translateY(8px);
}

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

.detail-columns div {
  display: grid;
  gap: 10px;
}

.detail-columns strong {
  margin-bottom: 4px;
  color: var(--olive);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-columns span {
  padding: 12px 14px;
  background: #f7efe3;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #52544b;
  font-size: 14px;
}

.finish-lab {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(480px, 1.18fr);
  gap: 42px;
  background: linear-gradient(135deg, #fffdf8 0%, #f4eadc 100%);
}

.lab-copy {
  align-self: center;
}

.lab-panel {
  padding: 30px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(46, 48, 41, 0.08);
}

.lab-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.lab-row > span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.swatches,
.packing-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.swatch {
  position: relative;
  min-height: 44px;
  padding: 0 15px 0 42px;
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.swatch::before {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 20px;
  height: 20px;
  background: var(--swatch);
  border: 1px solid rgba(46, 48, 41, 0.18);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.packing-option {
  min-height: 42px;
  padding: 0 15px;
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.swatch.active,
.packing-option.active {
  border-color: var(--olive);
  background: var(--olive);
  color: #fff8e8;
}

.swatch.active::before {
  border-color: rgba(255, 248, 232, 0.9);
}

.lab-summary {
  margin-top: 22px;
  padding: 22px;
  background: linear-gradient(135deg, #f7f2e8, #f2decd);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lab-summary strong {
  display: block;
  margin: 8px 0 14px;
  font-family: Lora, serif;
  font-size: 25px;
  line-height: 1.25;
}

.lab-summary a {
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tab {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-visual {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(320px, 1.05fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 24px;
  padding: 24px;
  background: #f7efe3;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-visual img {
  aspect-ratio: 4 / 3;
  border-radius: 7px;
  object-fit: cover;
}

.process-step {
  min-height: 168px;
  padding: 22px;
  background: #f7f2e8;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.process-step span {
  display: block;
  margin-bottom: 22px;
  color: var(--clay);
  font-weight: 900;
}

.process-step strong,
.process-step small {
  display: block;
}

.process-step strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.process-step small {
  color: var(--muted);
  line-height: 1.5;
}

.process-step.active {
  background: var(--olive);
  color: #fff8e8;
  transform: translateY(-5px);
}

.process-step.active span,
.process-step.active small {
  color: #eee5cf;
}

.process-detail {
  max-width: 950px;
  margin: 20px 0 0;
  padding: 22px 24px;
  background: #f7f2e8;
  border-left: 3px solid var(--gold);
}

.quality {
  background: linear-gradient(135deg, #312f24, #4b3d2d);
}

.quality h2,
.quality p,
.quality .eyebrow {
  color: #fff8e8;
}

.quality p {
  color: #dcd2bf;
}

.quality-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  grid-column: 1 / -1;
}

.quality-list span {
  padding: 16px 18px;
  background: rgba(255, 248, 232, 0.07);
  border: 1px solid rgba(255, 248, 232, 0.14);
  border-radius: 6px;
  color: #fff8e8;
}

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

.quality-media-grid figure {
  margin: 0;
  padding: 10px;
  background: rgba(255, 248, 232, 0.08);
  border: 1px solid rgba(255, 248, 232, 0.16);
  border-radius: 8px;
}

.quality-media-grid img {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.quality-media-grid figcaption {
  padding: 10px 4px 2px;
  color: #e9ddc7;
  font-size: 13px;
  line-height: 1.45;
}

.inquiry {
  align-items: stretch;
  background: #f5efe4;
}

.inquiry-form {
  padding: 28px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

label {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 14px;
  background: #fbf7ef;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

input:focus,
textarea:focus {
  background: #fffdf8;
  border-color: var(--olive);
  box-shadow: 0 0 0 4px rgba(78, 87, 44, 0.1);
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--olive);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(420px, 1.15fr);
  gap: 56px;
  padding: 56px 7vw 74px;
  color: #f8f1e7;
  background: #2f3421;
}

.site-footer p {
  max-width: 520px;
  color: #d9d0bc;
}

.footer-brand {
  color: #fff8e8;
}

.footer-brand .brand-mark {
  border-color: #d8cfb9;
  color: #f8f1e7;
}

.footer-brand small,
.footer-brand strong {
  color: #fff8e8;
}

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

.footer-links strong,
.footer-links a {
  display: block;
}

.footer-links strong {
  margin-bottom: 14px;
  color: #fff8e8;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  padding: 7px 0;
  color: #d9d0bc;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff8e8;
}

.social-reserve {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.28fr);
  gap: 28px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 248, 232, 0.14);
}

.social-reserve strong {
  display: block;
  margin-bottom: 8px;
  color: #fff8e8;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-reserve p {
  margin: 0;
  font-size: 14px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: #f8f1e7;
  background: rgba(255, 248, 232, 0.08);
  border: 1px solid rgba(255, 248, 232, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  background: rgba(255, 248, 232, 0.14);
  border-color: rgba(255, 248, 232, 0.38);
  transform: translateY(-2px);
}

.social-reserve small {
  grid-column: 2;
  min-height: 18px;
  color: #d9d0bc;
  font-weight: 800;
}

.request-tray {
  position: fixed;
  right: 24px;
  bottom: 18px;
  left: 24px;
  z-index: 35;
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(88, 99, 58, 0.22);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(46, 48, 41, 0.18);
  backdrop-filter: blur(18px);
}

.tray-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #f7efe3;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.tray-toggle span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tray-toggle strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tray-toggle::after {
  content: "Hide";
  flex: 0 0 auto;
  color: var(--olive);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.request-tray.is-collapsed .tray-toggle::after {
  content: "Show";
}

.tray-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: stretch;
  padding-top: 12px;
}

.request-tray.is-collapsed .tray-body {
  display: none;
}

.tray-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.85fr 1.35fr 1.2fr;
  gap: 10px;
}

.tray-grid span {
  min-width: 0;
  padding: 12px 14px;
  background: rgba(250, 243, 231, 0.78);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.tray-grid small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tray-grid strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tray-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  padding: 0 18px;
  color: #fff8e8;
  background: var(--olive);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease;
}

.tray-cta:hover {
  background: var(--olive-dark);
  transform: translateY(-2px);
}

.section-reveal {
  opacity: 1;
  animation: softReveal 620ms ease both;
}

.section-reveal.is-visible {
  opacity: 1;
}

@keyframes heroDrift {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.01);
  }
}

@keyframes softReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .top-strip {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    background: var(--ivory);
    border-radius: 4px;
  }

  .menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    background: var(--olive);
  }

  .nav,
  .header-cta {
    display: none;
  }

  .nav.is-open {
    position: absolute;
    right: 20px;
    left: 20px;
    top: 72px;
    display: grid;
    gap: 2px;
    padding: 18px;
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .hero,
  .page-hero,
  .detail-layout,
  .contact-shell,
  .builder,
  .about,
  .section-heading,
  .faith-spotlight,
  .showroom-stage,
  .process-visual,
  .collection-panel,
  .tab-panel,
  .planner-shell,
  .planner-output,
  .explorer-detail,
  .finish-lab,
  .quality,
  .inquiry {
    grid-template-columns: 1fr;
  }

  .about-copy {
    position: static;
  }

  .collection-routes {
    grid-template-columns: 1fr;
  }

  .route-card-featured {
    grid-row: auto;
  }

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

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

  .social-reserve {
    grid-template-columns: 1fr;
  }

  .social-reserve small {
    grid-column: auto;
  }

  .detail-sidebar {
    position: static;
  }

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

  .hero {
    min-height: auto;
  }

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

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

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

  .request-tray {
    right: 18px;
    left: 18px;
  }

  .tray-body,
  .tray-grid {
    grid-template-columns: 1fr;
  }

  .tray-cta {
    min-height: 48px;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 96px;
  }

  section {
    padding: 62px 22px;
  }

  .site-header {
    padding: 0 22px;
  }

  .hero {
    padding-top: 42px;
    gap: 30px;
  }

  .immersive-hero {
    min-height: 760px;
    padding-top: 56px;
    align-items: center;
  }

  .immersive-hero .hero-copy {
    padding: 0 0 48px;
  }

  .hero-proof,
  .product-grid,
  .page-grid,
  .process-list,
  .mix-list,
  .explorer-grid,
  .blog-grid,
  .about-proof-grid,
  .footer-links,
  .showroom-rail,
  .detail-columns,
  .quality-media-grid,
  .quality-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .path-button {
    width: 100%;
    min-width: 0;
  }

  .route-card,
  .route-card-featured {
    grid-template-columns: 1fr;
  }

  .route-card img,
  .route-card-featured img {
    aspect-ratio: 1 / 0.7;
    min-height: 220px;
  }

  .article-row {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 38px;
  }

  .hero-proof {
    display: none;
  }

  .hero-scene-switch {
    border-radius: 18px;
  }

  .scene-pill {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .product-hotspots {
    position: static;
    margin-top: 14px;
  }

  .planner-button {
    min-height: 48px;
    font-size: 14px;
  }

  .planner-output {
    padding: 18px;
  }

  .planner-visuals img {
    min-height: 210px;
  }

  .page-hero {
    min-height: auto;
    padding-top: 58px;
  }

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

  .detail-panel,
  .inquiry-form {
    padding: 20px;
  }

  .request-tray {
    right: 12px;
    bottom: 10px;
    left: 12px;
    padding: 8px;
  }

  .tray-toggle {
    min-height: 52px;
    padding: 0 12px;
  }

  .tray-toggle strong {
    max-width: 180px;
  }

  .tray-toggle::after {
    content: "Open";
  }

  .request-tray.is-open .tray-toggle::after {
    content: "Close";
  }

  .request-tray.is-collapsed .tray-toggle::after {
    content: "Open";
  }

  .tray-body {
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 260ms ease, opacity 220ms ease, padding-top 220ms ease;
  }

  .request-tray.is-open .tray-body {
    max-height: 620px;
    padding-top: 10px;
    opacity: 1;
    pointer-events: auto;
  }

  .request-tray.is-collapsed .tray-body {
    display: grid;
  }

  .tray-grid span {
    padding: 10px 12px;
  }

  .tray-grid strong {
    white-space: normal;
  }
}
