:root {
  --paper: #f6f3ec;
  --paper-2: #ebe7dd;
  --ink: #171b1d;
  --muted: #5d6668;
  --line: #d5d0c4;
  --white: #ffffff;
  --green: #155c4f;
  --green-dark: #0d3d36;
  --blue: #253d54;
  --copper: #a76535;
  --amber: #d6a24f;
  --charcoal: #111719;
  --vibe-accent: #d9a86c;
  --vibe-accent-strong: #e8bd78;
  --magenta: #d95a9d;
  --shadow: 0 18px 48px rgba(17, 23, 25, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.vibe-page {
  color: #f6f1ea;
  background: #101314;
}

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

a {
  color: inherit;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  max-width: 11ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.1rem;
  font-weight: 700;
}

h2 {
  font-size: 2.35rem;
  letter-spacing: 0;
}

h3 {
  font-size: 1.1rem;
  letter-spacing: 0;
}

.eyebrow {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vibe-page .eyebrow {
  color: var(--vibe-accent-strong);
}

.lead {
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.65;
}

.vibe-page .lead,
.vibe-page .muted {
  color: rgba(246, 241, 234, 0.74);
}

.muted {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  padding: 0.65rem 0.85rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 243, 236, 0.94);
  border-bottom: 1px solid rgba(23, 27, 29, 0.12);
  backdrop-filter: blur(12px);
}

.vibe-page .site-header {
  background: rgba(16, 19, 20, 0.92);
  border-bottom-color: rgba(246, 241, 234, 0.14);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 7px;
  font-size: 0.9rem;
}

.brand-line {
  position: relative;
  display: inline-block;
  line-height: 1;
  transform: translateY(2px);
}

.brand-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.22em;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.vibe-page .brand-mark {
  color: var(--white);
  background: var(--green);
}

.brand span:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-wrap: balance;
  text-transform: uppercase;
}

.vibe-page .brand small {
  color: rgba(246, 241, 234, 0.62);
}

.primary-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.55rem, 1vw, 1rem);
  font-size: 0.9rem;
  font-weight: 700;
}

.primary-nav a {
  flex: 0 0 auto;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus {
  color: var(--green);
}

.vibe-page .primary-nav a:hover,
.vibe-page .primary-nav a:focus {
  color: var(--vibe-accent-strong);
}

.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.button,
button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 26px rgba(21, 92, 79, 0.22);
}

.button.primary:hover,
button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(23, 27, 29, 0.22);
}

.button.secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

.vibe-page .button.primary {
  color: #101314;
  background: var(--vibe-accent-strong);
  box-shadow: 0 14px 30px rgba(217, 168, 108, 0.22);
}

.vibe-page .button.secondary {
  color: #f6f1ea;
  border-color: rgba(246, 241, 234, 0.28);
}

.phone-link {
  white-space: nowrap;
}

.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;
}

main {
  overflow: hidden;
}

.section,
.hero {
  padding: 88px 0;
  scroll-margin-top: 88px;
}

.hero {
  position: relative;
  padding-top: 72px;
}

.shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 3.4rem;
}

.hero-copy {
  display: grid;
  gap: 1.4rem;
}

.hero-copy .lead {
  max-width: 650px;
}

.design-build-page .hero-copy h1 {
  max-width: 16ch;
  font-size: clamp(2.9rem, 4.2vw, 3.45rem);
  line-height: 1;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.sms-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.sms-consent input[type="checkbox"] {
  width: auto;
  min-height: 0;
  flex: 0 0 auto;
  margin-top: 0.15rem;
  accent-color: var(--green);
}

.sms-consent a,
.fine-print a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.hero-contact-actions {
  display: grid;
  grid-template-columns: minmax(190px, 1.4fr) minmax(112px, 0.8fr) minmax(92px, 0.6fr);
  gap: 0.65rem;
  width: min(100%, 620px);
}

.hero-contact-actions .button {
  min-width: 0;
}

.hero-contact-actions.two-option-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 420px);
}

.hero-response {
  max-width: 650px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.5;
}

.hero-proof-row {
  width: min(100%, 680px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(23, 27, 29, 0.2);
  border-bottom: 1px solid rgba(23, 27, 29, 0.2);
}

.hero-proof-row span {
  min-width: 0;
  padding: 0.58rem 0.75rem;
  color: var(--ink);
  border-left: 1px solid rgba(23, 27, 29, 0.16);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
}

.hero-proof-row span:first-child {
  border-left: 0;
}

.hero-location {
  max-width: 680px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.vibe-page .hero-response,
.vibe-page .hero-proof-row span {
  color: #f6f1ea;
}

.vibe-page .hero-location {
  color: rgba(246, 241, 234, 0.72);
}

.vibe-page .hero-proof-row {
  border-color: rgba(246, 241, 234, 0.25);
}

.vibe-page .hero-proof-row span {
  border-color: rgba(246, 241, 234, 0.18);
}

.mobile-contact-bar {
  display: none;
}

.hero-media {
  position: relative;
  min-width: 0;
}

.single-hero-media {
  margin: 0;
}

.single-hero-media img {
  object-position: center;
}

.professional-retail-hero-media img {
  object-position: 50% 28%;
}

.design-build-hero-media img {
  object-position: 50% 24%;
}

.mobile-proof-image {
  display: none;
  margin: 0;
}

.hero-media img {
  width: 100%;
  height: clamp(500px, 66vh, 680px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.before-after-frame {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  height: clamp(420px, 58vh, 620px);
}

.comparison-shot {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.before-after-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
}

.image-status-before img {
  object-position: 58% 22%;
}

.image-status-after img {
  object-position: 54% 18%;
}

.before-after-media:not(.dental-comparison) .image-status-after img {
  filter: brightness(1.18) contrast(1.04) saturate(1.03);
}

.image-status {
  --image-status-size: 42px;
  --image-status-inset: 0.75rem;
}

.image-status::after {
  content: "";
  position: absolute;
  bottom: var(--image-status-inset);
  right: var(--image-status-inset);
  z-index: 2;
  width: var(--image-status-size);
  height: var(--image-status-size);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(17, 23, 25, 0.22);
}

.image-status::before {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.image-status-before::after {
  background: #c7352e;
}

.image-status-before::before {
  bottom: calc(var(--image-status-inset) + 12px);
  right: calc(var(--image-status-inset) + 12px);
  width: 22px;
  height: 22px;
  background:
    linear-gradient(45deg, transparent 42%, #fff 43%, #fff 57%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, #fff 43%, #fff 57%, transparent 58%);
}

.image-status-after::after {
  background: #167a5b;
}

.image-status-after::before {
  bottom: calc(var(--image-status-inset) + 16px);
  right: calc(var(--image-status-inset) + 8px);
  width: 20px;
  height: 12px;
  border-bottom: 5px solid #fff;
  border-left: 5px solid #fff;
  transform: rotate(-45deg);
}

.shot-label {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: rgba(16, 19, 20, 0.76);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.before-after-media .media-caption {
  margin-top: 0.75rem;
}

.dental-comparison .before-after-frame {
  height: clamp(310px, 30vw, 390px);
}

.dental-comparison {
  margin: 0;
}

.dental-comparison .image-status-before img,
.dental-comparison .image-status-after img {
  object-position: center center;
}

.media-caption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.vibe-page .media-caption {
  color: rgba(246, 241, 234, 0.62);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(21, 92, 79, 0.22);
  border-radius: 50%;
  color: var(--green);
  background: rgba(21, 92, 79, 0.08);
}

.card-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.band .card-icon,
.vibe-page .card-icon {
  color: var(--vibe-accent-strong);
  border-color: rgba(217, 168, 108, 0.34);
  background: rgba(217, 168, 108, 0.12);
}

.stretch-definition {
  padding: 54px 0;
  border-top: 1px solid rgba(23, 27, 29, 0.1);
  border-bottom: 1px solid rgba(23, 27, 29, 0.1);
  background: rgba(255, 255, 255, 0.42);
}

.definition-panel {
  display: grid;
  grid-template-columns: minmax(290px, 0.82fr) minmax(520px, 1.18fr);
  grid-template-areas:
    "heading diagram"
    "copy diagram";
  gap: 1.25rem clamp(2rem, 4vw, 4.25rem);
  align-items: start;
}

.definition-heading {
  grid-area: heading;
  display: grid;
  gap: 0.85rem;
}

.definition-heading h2 {
  max-width: 17ch;
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
}

.definition-copy {
  grid-area: copy;
  display: grid;
  gap: 0.95rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.stretch-diagram {
  grid-area: diagram;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0.85rem;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(23, 27, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(17, 23, 25, 0.08);
}

.stretch-diagram svg,
.stretch-diagram picture,
.stretch-diagram img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.stretch-diagram figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.diagram-slab {
  fill: #d9d6cf;
}

.diagram-zone {
  fill: rgba(235, 231, 221, 0.55);
  stroke: rgba(17, 23, 25, 0.14);
}

.diagram-duct,
.diagram-pipe,
.diagram-wire {
  fill: none;
  stroke: #2a435a;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.diagram-duct {
  fill: rgba(42, 67, 90, 0.08);
}

.diagram-wire {
  stroke-width: 3;
  stroke-dasharray: 7 7;
}

.diagram-track {
  fill: var(--green);
}

.diagram-canvas {
  fill: none;
  stroke: var(--green);
  stroke-width: 7;
  stroke-linecap: round;
}

.diagram-canvas-fill {
  fill: rgba(18, 100, 82, 0.08);
}

.diagram-light {
  fill: #f2c46f;
  stroke: rgba(17, 23, 25, 0.18);
  stroke-width: 2;
}

.diagram-callout {
  fill: none;
  stroke: rgba(17, 23, 25, 0.38);
  stroke-width: 2;
  stroke-linecap: round;
}

.diagram-label,
.diagram-note {
  fill: #172126;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.diagram-note {
  fill: rgba(17, 23, 25, 0.72);
  font-size: 11.5px;
}

.install-diagram svg {
  overflow: visible;
}

.install-bg {
  fill: #f6f1ea;
}

.install-ceiling {
  fill: #eee8dc;
}

.install-wall {
  fill: #e5ded2;
  stroke: rgba(17, 23, 25, 0.12);
  stroke-width: 2;
}

.install-track-shadow {
  fill: rgba(17, 23, 25, 0.13);
}

.install-track {
  fill: #586263;
}

.install-track-channel {
  fill: #eef0ec;
  stroke: rgba(17, 23, 25, 0.22);
  stroke-width: 2;
}

.install-profile-shadow {
  fill: rgba(17, 23, 25, 0.16);
}

.install-profile {
  fill: #5d6668;
  stroke: rgba(17, 23, 25, 0.14);
  stroke-width: 2;
}

.install-profile-slot {
  fill: none;
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 10;
  stroke-linecap: round;
}

.install-sheet {
  fill: rgba(21, 92, 79, 0.12);
}

.install-sheet-edge {
  fill: none;
  stroke: var(--green);
  stroke-width: 8;
  stroke-linecap: round;
}

.install-canvas-fill {
  fill: rgba(21, 92, 79, 0.12);
}

.install-canvas-edge {
  fill: none;
  stroke: var(--green);
  stroke-width: 8;
  stroke-linecap: round;
}

.install-harpoon {
  fill: none;
  stroke: #123f37;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.install-harpoon-close {
  fill: none;
  stroke: #123f37;
  stroke-width: 13;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.install-blade {
  fill: #2a435a;
  stroke: rgba(17, 23, 25, 0.2);
  stroke-width: 2;
}

.install-blade-highlight {
  fill: none;
  stroke: rgba(255, 255, 255, 0.4);
  stroke-width: 4;
  stroke-linecap: round;
}

.install-handle {
  fill: #172126;
  stroke: rgba(17, 23, 25, 0.2);
  stroke-width: 2;
}

.install-hand {
  fill: #d8d2c6;
  stroke: rgba(17, 23, 25, 0.14);
  stroke-width: 2;
}

.install-tool {
  fill: #2a435a;
  stroke: rgba(17, 23, 25, 0.18);
  stroke-width: 2;
}

.install-tool-edge {
  fill: none;
  stroke: rgba(255, 255, 255, 0.48);
  stroke-width: 3;
  stroke-linecap: round;
}

.install-glove,
.install-thumb {
  fill: #d8d2c6;
  stroke: rgba(17, 23, 25, 0.14);
  stroke-width: 2;
}

.install-thumb {
  fill: #cfc7ba;
}

.install-pressure {
  fill: #f2c46f;
  stroke: rgba(17, 23, 25, 0.22);
  stroke-width: 2;
}

.install-wrinkle {
  fill: none;
  stroke: rgba(21, 92, 79, 0.32);
  stroke-width: 4;
  stroke-linecap: round;
}

.install-callout {
  fill: none;
  stroke: rgba(17, 23, 25, 0.38);
  stroke-width: 2;
  stroke-linecap: round;
}

.vibe-page .stretch-definition {
  border-color: rgba(246, 241, 234, 0.12);
  background: #15191a;
}

.vibe-page .definition-copy {
  color: rgba(246, 241, 234, 0.72);
}

.vibe-page .stretch-diagram {
  border-color: rgba(246, 241, 234, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.vibe-page .stretch-diagram figcaption,
.vibe-page .diagram-note {
  color: rgba(246, 241, 234, 0.72);
  fill: rgba(246, 241, 234, 0.72);
}

.vibe-page .diagram-label {
  fill: #f6f1ea;
}

.vibe-page .diagram-slab {
  fill: #2f3536;
}

.vibe-page .diagram-zone {
  fill: rgba(246, 241, 234, 0.05);
  stroke: rgba(246, 241, 234, 0.14);
}

.vibe-page .diagram-duct,
.vibe-page .diagram-pipe,
.vibe-page .diagram-wire {
  stroke: rgba(246, 241, 234, 0.52);
}

.vibe-page .diagram-callout {
  stroke: rgba(246, 241, 234, 0.42);
}

.vibe-page .install-bg {
  fill: rgba(255, 255, 255, 0.04);
}

.vibe-page .install-wall {
  fill: #252b2c;
  stroke: rgba(246, 241, 234, 0.12);
}

.vibe-page .install-ceiling {
  fill: #202526;
}

.vibe-page .install-track-shadow {
  fill: rgba(0, 0, 0, 0.45);
}

.vibe-page .install-track {
  fill: #6e7576;
}

.vibe-page .install-track-channel {
  fill: #15191a;
  stroke: rgba(246, 241, 234, 0.22);
}

.vibe-page .install-profile-shadow {
  fill: rgba(0, 0, 0, 0.52);
}

.vibe-page .install-profile {
  fill: #6e7576;
}

.vibe-page .install-profile-slot {
  stroke: rgba(246, 241, 234, 0.78);
}

.vibe-page .install-canvas-fill {
  fill: rgba(21, 92, 79, 0.28);
}

.vibe-page .install-sheet {
  fill: rgba(21, 92, 79, 0.3);
}

.vibe-page .install-harpoon {
  stroke: #f2c46f;
}

.vibe-page .install-harpoon-close {
  stroke: #f2c46f;
}

.vibe-page .install-handle {
  fill: #0e1112;
  stroke: rgba(246, 241, 234, 0.18);
}

.vibe-page .install-hand {
  fill: #3a4243;
  stroke: rgba(246, 241, 234, 0.16);
}

.vibe-page .install-tool {
  fill: #2a435a;
  stroke: rgba(246, 241, 234, 0.2);
}

.vibe-page .install-glove,
.vibe-page .install-thumb {
  fill: #3a4243;
  stroke: rgba(246, 241, 234, 0.16);
}

.vibe-page .install-callout {
  stroke: rgba(246, 241, 234, 0.42);
}

.product-education {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(235, 231, 221, 0.44));
}

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

.component-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 27, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 36px rgba(17, 23, 25, 0.08);
}

.component-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.component-card:nth-child(1) img {
  object-position: 50% 42%;
}

.component-card:nth-child(2) img {
  object-position: center center;
}

.component-card:nth-child(3) img {
  object-position: 50% 54%;
}

.component-card:nth-child(4) img {
  object-position: 54% 18%;
}

.component-card figcaption {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
}

.component-card strong {
  font-size: 1.02rem;
  line-height: 1.2;
}

.component-card span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.options-section {
  background: rgba(255, 255, 255, 0.56);
}

.options-section .section-heading {
  max-width: none;
}

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

.option-card {
  min-height: 255px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0.85rem;
  padding: 1.2rem;
  border: 1px solid rgba(23, 27, 29, 0.12);
  border-radius: 8px;
  background: rgba(246, 243, 236, 0.78);
}

.option-card p {
  color: var(--muted);
  font-size: 0.97rem;
}

.option-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.45fr);
  grid-template-rows: auto;
  align-items: stretch;
  min-height: 0;
  gap: clamp(1rem, 3vw, 1.8rem);
}

.option-card-copy {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.texture-sheen-card {
  grid-column: span 2;
}

.lighting-options-card {
  grid-column: span 2;
}

.shape-options-card {
  grid-template-columns: minmax(250px, 0.56fr) minmax(0, 1.7fr);
}

.access-coordination-card {
  grid-column: 1 / -1;
  display: grid;
  gap: 1.2rem;
  min-width: 0;
  padding-top: 0.25rem;
}

.access-coordination-intro {
  display: grid;
  gap: 0.55rem;
  max-width: 900px;
}

.access-coordination-intro p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1rem;
}

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

.penetration-example {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(23, 27, 29, 0.13);
  border-radius: 8px;
  background: rgba(246, 243, 236, 0.78);
  box-shadow: 0 14px 26px rgba(17, 23, 25, 0.09);
}

.penetration-example img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-bottom: 1px solid rgba(23, 27, 29, 0.11);
}

.penetration-example figcaption {
  display: grid;
  align-content: start;
  gap: 0.42rem;
  min-height: 116px;
  padding: 0.9rem 1rem 1rem;
}

.penetration-example figcaption strong {
  font-size: 1rem;
  line-height: 1.18;
}

.penetration-example figcaption span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.photo-sample-panel {
  margin: 0;
  align-self: stretch;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.75rem;
  min-width: 0;
}

.photo-sample-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(220px, 24vw, 340px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(23, 27, 29, 0.13);
  border-radius: 8px;
  background: #f8f5ee;
  box-shadow: 0 16px 28px rgba(17, 23, 25, 0.11);
}

.texture-photo-panel img,
.lighting-photo-panel img {
  min-height: 230px;
}

.photo-sample-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  min-width: 0;
}

.photo-sample-tags span {
  display: inline-flex;
  max-width: 100%;
  min-height: 1.8rem;
  align-items: center;
  justify-content: center;
  padding: 0.22rem 0.58rem;
  border: 1px solid rgba(23, 27, 29, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #202729;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.08;
  text-align: center;
}

.material-board {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.92fr) minmax(0, 0.92fr) 96px;
  gap: 0.75rem;
}

.swatch-group {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.55rem;
  min-width: 0;
  padding: 0.7rem;
  border: 1px solid rgba(23, 27, 29, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.56);
}

.swatch-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.material-chip-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(58px, 1fr));
  gap: 0.45rem;
}

.material-chip {
  position: relative;
  min-height: 76px;
  overflow: hidden;
  border: 1px solid rgba(23, 27, 29, 0.16);
  border-radius: 5px;
  background: #f8f7f1;
  box-shadow:
    0 10px 18px rgba(17, 23, 25, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.material-chip::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 23px;
  height: 23px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0 48%, rgba(23, 27, 29, 0.12) 49% 100%);
  box-shadow: -1px 1px 2px rgba(17, 23, 25, 0.08);
}

.material-chip::after {
  content: attr(data-label);
  position: absolute;
  left: 0.32rem;
  right: 0.32rem;
  bottom: 0.32rem;
  padding: 0.18rem 0.25rem;
  border-radius: 4px;
  background: rgba(246, 243, 236, 0.86);
  color: #182021;
  font-size: 0.63rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.chip-white {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.92), transparent 44%),
    linear-gradient(135deg, #ffffff, #ece8df);
}

.chip-black {
  background:
    radial-gradient(circle at 24% 16%, rgba(255, 255, 255, 0.16), transparent 38%),
    linear-gradient(135deg, #23282a, #07090a);
}

.chip-black::after,
.chip-green::after,
.chip-copper::after,
.chip-any-color::after,
.chip-photo-print::after {
  background: rgba(16, 19, 20, 0.72);
  color: #fff;
}

.chip-warm {
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.5), transparent 44%),
    linear-gradient(135deg, #d9d3c8, #aaa196);
}

.chip-green {
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.18), transparent 40%),
    linear-gradient(135deg, #1a6c5d, #0e453d);
}

.chip-copper {
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.22), transparent 42%),
    linear-gradient(135deg, #be7a43, #89532e);
}

.chip-any-color {
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.42), transparent 38%),
    linear-gradient(135deg, #e53935 0%, #fb8c00 17%, #fdd835 33%, #43a047 50%, #1e88e5 67%, #5e35b1 84%, #d81b60 100%);
}

.chip-translucent {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.38) 0 12%, transparent 12% 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(218, 226, 228, 0.56));
  backdrop-filter: blur(2px);
}

.chip-warm-lit {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 224, 157, 0.98), rgba(236, 194, 116, 0.36) 48%, rgba(110, 79, 45, 0.18) 100%),
    #f5ead8;
  box-shadow: 0 0 22px rgba(232, 189, 120, 0.34), inset 0 0 18px rgba(255, 255, 255, 0.48);
}

.chip-cool-lit {
  background:
    radial-gradient(circle at 50% 50%, rgba(245, 250, 255, 0.98), rgba(174, 204, 222, 0.38) 48%, rgba(45, 72, 85, 0.18) 100%),
    #eef7f9;
  box-shadow: 0 0 22px rgba(129, 184, 213, 0.28), inset 0 0 18px rgba(255, 255, 255, 0.56);
}

.chip-line-print {
  background:
    linear-gradient(34deg, transparent 0 38%, rgba(21, 92, 79, 0.72) 39% 41%, transparent 42% 100%),
    linear-gradient(-34deg, transparent 0 42%, rgba(21, 92, 79, 0.46) 43% 45%, transparent 46% 100%),
    #f5f1e9;
}

.chip-soft-print {
  background:
    radial-gradient(circle at 24% 30%, rgba(217, 90, 157, 0.34) 0 12%, transparent 13%),
    radial-gradient(circle at 64% 58%, rgba(21, 92, 79, 0.28) 0 14%, transparent 15%),
    radial-gradient(circle at 78% 22%, rgba(167, 101, 53, 0.28) 0 10%, transparent 11%),
    #f7f2ea;
}

.chip-photo-print {
  background:
    linear-gradient(135deg, rgba(13, 61, 54, 0.86), rgba(217, 90, 157, 0.72)),
    radial-gradient(circle at 30% 30%, #f7d28c 0 12%, transparent 13%),
    radial-gradient(circle at 70% 54%, #0b1b20 0 26%, transparent 27%);
}

.sample-stack {
  position: relative;
  min-height: 100%;
}

.sample-stack span {
  position: absolute;
  inset: 0.4rem 0.35rem;
  border: 1px solid rgba(23, 27, 29, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(222, 217, 206, 0.78)),
    #f8f5ed;
  box-shadow: 0 12px 18px rgba(17, 23, 25, 0.14);
  transform: rotate(-5deg);
}

.sample-stack span:nth-child(2) {
  inset: 1.05rem 0.05rem 0.25rem 0.65rem;
  background:
    repeating-linear-gradient(90deg, rgba(21, 92, 79, 0.18) 0 1px, transparent 1px 12px),
    #f2efe6;
  transform: rotate(4deg);
}

.sample-stack span:nth-child(3) {
  inset: 1.8rem 0.8rem 0.15rem 0;
  background: linear-gradient(135deg, #155c4f, #d95a9d);
  transform: rotate(-1deg);
}

.finish-swatch-row {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
}

.finish-swatch {
  height: 2.45rem;
  border: 1px solid rgba(23, 27, 29, 0.16);
  border-radius: 5px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.swatch-white {
  background: #f8f7f1;
}

.swatch-black {
  background: #101314;
}

.swatch-green {
  background: var(--green);
}

.swatch-copper {
  background: var(--copper);
}

.swatch-magenta {
  background: var(--magenta);
}

.swatch-soft {
  background: linear-gradient(135deg, #f2efe6 0 35%, #d8d3c8 35% 65%, #fcfbf6 65% 100%);
}

.finish-sample-grid {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.finish-sample {
  position: relative;
  min-height: 72px;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid rgba(23, 27, 29, 0.15);
  background: #ebe6da;
  box-shadow:
    0 10px 18px rgba(17, 23, 25, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.finish-sample::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76) 0 48%, rgba(23, 27, 29, 0.13) 49% 100%);
  box-shadow: -1px 1px 2px rgba(17, 23, 25, 0.08);
}

.finish-sample span {
  position: absolute;
  left: 0.35rem;
  right: 0.35rem;
  bottom: 0.35rem;
  padding: 0.16rem 0.24rem;
  border-radius: 4px;
  background: rgba(16, 19, 20, 0.76);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.sample-matte {
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.34), transparent 30%),
    repeating-linear-gradient(45deg, rgba(23, 27, 29, 0.025) 0 2px, transparent 2px 7px),
    #e1dbcf;
}

.sample-satin {
  background:
    linear-gradient(128deg, rgba(255, 255, 255, 0.46) 0 16%, transparent 17% 64%, rgba(255, 255, 255, 0.28) 65% 76%, transparent 77%),
    linear-gradient(135deg, #e8e2d7, #c8c0b3);
}

.sample-gloss {
  background:
    linear-gradient(132deg, transparent 0 22%, rgba(255, 255, 255, 0.92) 23% 34%, transparent 35% 100%),
    radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.78), transparent 38%),
    linear-gradient(135deg, #f8f6ef, #bfb7aa);
}

.sample-translucent {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 0 12%, transparent 12% 24%),
    radial-gradient(circle at 48% 52%, rgba(225, 248, 255, 0.78), rgba(193, 218, 225, 0.38) 44%, rgba(255, 255, 255, 0.56) 100%);
}

.sample-perforated {
  background:
    radial-gradient(circle, rgba(21, 92, 79, 0.38) 0 2px, transparent 2.4px) 0 0 / 13px 13px,
    linear-gradient(135deg, #f4f1e9, #dcd6c9);
}

.sample-metallic {
  background:
    linear-gradient(118deg, #8c8a82 0 18%, #f7f4ea 19% 28%, #b0ab9d 29% 44%, #f1eee6 45% 56%, #827e73 57% 100%);
}

.sample-textured {
  background:
    radial-gradient(circle at 18% 24%, rgba(23, 27, 29, 0.13) 0 4px, transparent 5px),
    radial-gradient(circle at 70% 58%, rgba(23, 27, 29, 0.11) 0 5px, transparent 6px),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.24) 0 3px, transparent 3px 9px),
    #cfc6b9;
}

.lighting-sample-grid {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
}

.lighting-sample {
  position: relative;
  min-height: 118px;
  overflow: hidden;
  border: 1px solid rgba(23, 27, 29, 0.16);
  border-radius: 6px;
  background: #121819;
  box-shadow:
    0 12px 20px rgba(17, 23, 25, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lighting-sample::before,
.lighting-sample::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.lighting-sample span {
  position: absolute;
  left: 0.35rem;
  right: 0.35rem;
  bottom: 0.35rem;
  z-index: 2;
  padding: 0.17rem 0.22rem;
  border-radius: 4px;
  background: rgba(8, 10, 11, 0.76);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}

.sample-backlit {
  background:
    radial-gradient(ellipse at center, rgba(246, 241, 234, 0.48), transparent 58%),
    #13191a;
}

.sample-backlit::before {
  inset: 1.05rem 1rem 2.45rem;
  border: 1px solid rgba(246, 241, 234, 0.76);
  border-radius: 4px;
  background: rgba(246, 241, 234, 0.28);
  box-shadow:
    0 0 22px rgba(246, 241, 234, 0.82),
    inset 0 0 18px rgba(255, 255, 255, 0.52);
}

.sample-underlit {
  background:
    linear-gradient(180deg, #171d1e 0 48%, #25211a 100%);
}

.sample-underlit::before {
  left: 1rem;
  right: 1rem;
  top: 1rem;
  height: 22px;
  border-radius: 3px;
  background: #d9d2c3;
}

.sample-underlit::after {
  left: 1.15rem;
  right: 1.15rem;
  top: 2.15rem;
  height: 26px;
  background: linear-gradient(180deg, rgba(244, 209, 138, 0.78), rgba(244, 209, 138, 0));
  filter: blur(1px);
}

.sample-diffuser {
  background:
    radial-gradient(circle at 28% 35%, rgba(244, 209, 138, 0.8) 0 2px, transparent 3px),
    radial-gradient(circle at 42% 35%, rgba(244, 209, 138, 0.8) 0 2px, transparent 3px),
    radial-gradient(circle at 56% 35%, rgba(244, 209, 138, 0.8) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 35%, rgba(244, 209, 138, 0.8) 0 2px, transparent 3px),
    #121819;
}

.sample-diffuser::before {
  left: 0.85rem;
  right: 0.85rem;
  top: 2rem;
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(225, 232, 228, 0.58));
  box-shadow: 0 0 14px rgba(246, 241, 234, 0.48);
}

.sample-downcast {
  background:
    linear-gradient(90deg, #d8d1c3 0 22%, #121819 22% 100%);
}

.sample-downcast::before {
  left: 21%;
  top: 0.95rem;
  bottom: 2.25rem;
  width: 6px;
  border-radius: 999px;
  background: #f4d18a;
  box-shadow:
    0 0 16px rgba(244, 209, 138, 0.74),
    14px 0 32px rgba(244, 209, 138, 0.36);
}

.sample-downcast::after {
  left: 28%;
  top: 1rem;
  bottom: 2rem;
  width: 46%;
  background: linear-gradient(90deg, rgba(244, 209, 138, 0.34), rgba(244, 209, 138, 0));
}

.sample-recessed {
  background:
    radial-gradient(circle at 25% 30%, #f6f1ea 0 5px, rgba(244, 209, 138, 0.45) 6px 10px, transparent 11px),
    radial-gradient(circle at 50% 30%, #f6f1ea 0 5px, rgba(244, 209, 138, 0.45) 6px 10px, transparent 11px),
    radial-gradient(circle at 75% 30%, #f6f1ea 0 5px, rgba(244, 209, 138, 0.45) 6px 10px, transparent 11px),
    #121819;
}

.sample-recessed::after {
  left: 0.85rem;
  right: 0.85rem;
  top: 2.1rem;
  height: 32px;
  background:
    radial-gradient(ellipse at 25% 0, rgba(244, 209, 138, 0.36), transparent 60%),
    radial-gradient(ellipse at 50% 0, rgba(244, 209, 138, 0.36), transparent 60%),
    radial-gradient(ellipse at 75% 0, rgba(244, 209, 138, 0.36), transparent 60%);
}

.shape-sample-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
}

.shape-sample {
  position: relative;
  min-height: 142px;
  overflow: hidden;
  border: 1px solid rgba(23, 27, 29, 0.14);
  border-radius: 7px;
  background:
    linear-gradient(120deg, rgba(21, 92, 79, 0.1), transparent 48%),
    #f6f1ea;
  box-shadow:
    0 12px 22px rgba(17, 23, 25, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.shape-sample::before,
.shape-sample::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.shape-sample span {
  position: absolute;
  left: 0.38rem;
  right: 0.38rem;
  bottom: 0.38rem;
  z-index: 3;
  padding: 0.18rem 0.24rem;
  border-radius: 4px;
  background: rgba(16, 19, 20, 0.76);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}

.shape-tight::before {
  inset: 1rem 0.85rem 2.15rem;
  border: 2px solid rgba(21, 92, 79, 0.74);
  border-radius: 5px;
  background:
    linear-gradient(90deg, transparent 0 11%, rgba(21, 92, 79, 0.16) 11% 14%, transparent 14% 86%, rgba(21, 92, 79, 0.16) 86% 89%, transparent 89%),
    linear-gradient(0deg, transparent 0 13%, rgba(21, 92, 79, 0.16) 13% 16%, transparent 16% 84%, rgba(21, 92, 79, 0.16) 84% 87%, transparent 87%),
    rgba(255, 255, 255, 0.58);
}

.shape-tight::after {
  inset: 1.55rem 1.35rem 2.7rem;
  border: 1px solid rgba(23, 27, 29, 0.18);
  border-radius: 3px;
}

.shape-bullnose::before {
  left: 0.95rem;
  right: 0.95rem;
  top: 1rem;
  height: 40px;
  border-radius: 5px 5px 20px 20px;
  background:
    linear-gradient(180deg, #ece5d8 0 58%, #cfc6b7 59% 100%);
  box-shadow:
    0 18px 22px rgba(21, 92, 79, 0.12),
    inset 0 -6px 10px rgba(23, 27, 29, 0.12);
}

.shape-bullnose::after {
  left: 1.1rem;
  right: 1.1rem;
  top: 3.85rem;
  height: 20px;
  border-radius: 0 0 999px 999px;
  border-bottom: 5px solid rgba(21, 92, 79, 0.72);
  opacity: 0.9;
}

.shape-paneled {
  background:
    linear-gradient(120deg, rgba(21, 92, 79, 0.08), transparent 48%),
    #f6f1ea;
}

.shape-paneled::before {
  inset: 1rem 0.85rem 2.15rem;
  border: 2px solid rgba(21, 92, 79, 0.68);
  border-radius: 4px;
  background:
    linear-gradient(90deg, transparent 0 32%, rgba(21, 92, 79, 0.42) 32% 34%, transparent 34% 66%, rgba(21, 92, 79, 0.42) 66% 68%, transparent 68%),
    linear-gradient(0deg, transparent 0 47%, rgba(21, 92, 79, 0.42) 47% 50%, transparent 50%),
    rgba(255, 255, 255, 0.54);
}

.shape-paneled::after {
  left: 1.5rem;
  right: 1.5rem;
  top: 2rem;
  height: 2px;
  background: rgba(244, 209, 138, 0.78);
  box-shadow:
    0 18px 0 rgba(244, 209, 138, 0.56),
    0 36px 0 rgba(244, 209, 138, 0.42);
}

.shape-vertical::before {
  left: 1.15rem;
  right: 1.15rem;
  top: 1rem;
  bottom: 2.25rem;
  clip-path: polygon(12% 0, 88% 0, 100% 24%, 100% 100%, 0 100%, 0 24%);
  background:
    linear-gradient(90deg, rgba(23, 27, 29, 0.12), transparent 20% 80%, rgba(23, 27, 29, 0.12)),
    linear-gradient(180deg, #ece5d8, #bfb5a7);
  box-shadow: inset 0 0 0 2px rgba(21, 92, 79, 0.54);
}

.shape-vertical::after {
  left: 45%;
  top: 1.35rem;
  bottom: 2.55rem;
  width: 10%;
  border-radius: 999px;
  background: rgba(21, 92, 79, 0.42);
  box-shadow:
    -18px 12px 0 rgba(255, 255, 255, 0.26),
    18px 12px 0 rgba(23, 27, 29, 0.08);
}

.shape-angles::before {
  left: 0.8rem;
  right: 0.8rem;
  top: 1.05rem;
  bottom: 2.25rem;
  clip-path: polygon(8% 18%, 42% 4%, 93% 24%, 77% 88%, 18% 78%);
  background:
    linear-gradient(135deg, rgba(244, 209, 138, 0.24), transparent 42%),
    rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 2px rgba(21, 92, 79, 0.72);
}

.shape-angles::after {
  left: 1.4rem;
  right: 1.15rem;
  top: 2.55rem;
  height: 2px;
  background: rgba(21, 92, 79, 0.5);
  transform: rotate(-12deg);
  box-shadow:
    14px 22px 0 rgba(21, 92, 79, 0.34),
    34px -18px 0 rgba(21, 92, 79, 0.26);
}

.shape-curves::before {
  left: 0.85rem;
  right: 0.85rem;
  top: 1rem;
  bottom: 2.25rem;
  border-radius: 48% 48% 12px 12px;
  border: 2px solid rgba(21, 92, 79, 0.72);
  border-top-width: 7px;
  background:
    radial-gradient(ellipse at 50% 12%, rgba(244, 209, 138, 0.32), transparent 48%),
    rgba(255, 255, 255, 0.5);
}

.shape-curves::after {
  left: 1.5rem;
  right: 1.5rem;
  top: 2.1rem;
  height: 44px;
  border-top: 3px solid rgba(21, 92, 79, 0.42);
  border-radius: 50% 50% 0 0;
}

.access-sample-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.55rem;
}

.access-sample {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  border: 1px solid rgba(23, 27, 29, 0.14);
  border-radius: 7px;
  background:
    linear-gradient(120deg, rgba(21, 92, 79, 0.08), transparent 52%),
    #f6f1ea;
  box-shadow:
    0 12px 22px rgba(17, 23, 25, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.access-sample::before,
.access-sample::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.access-sample span {
  position: absolute;
  left: 0.36rem;
  right: 0.36rem;
  bottom: 0.36rem;
  z-index: 3;
  padding: 0.18rem 0.2rem;
  border-radius: 4px;
  background: rgba(16, 19, 20, 0.78);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}

.access-vent::before {
  left: 0.9rem;
  right: 0.9rem;
  top: 1rem;
  height: 52px;
  border: 2px solid rgba(21, 92, 79, 0.64);
  border-radius: 5px;
  background:
    repeating-linear-gradient(0deg, rgba(21, 92, 79, 0.52) 0 2px, transparent 2px 8px),
    rgba(255, 255, 255, 0.48);
}

.access-vent::after {
  left: 1.4rem;
  right: 1.4rem;
  top: 4.85rem;
  height: 2px;
  background: rgba(23, 27, 29, 0.18);
  box-shadow: 0 0.65rem 0 rgba(23, 27, 29, 0.1);
}

.access-outlet::before {
  left: 50%;
  top: 1rem;
  width: 54px;
  height: 66px;
  border: 2px solid rgba(21, 92, 79, 0.66);
  border-radius: 9px;
  background:
    radial-gradient(circle at 50% 18%, rgba(23, 27, 29, 0.24) 0 2px, transparent 2.5px),
    linear-gradient(90deg, transparent 0 35%, rgba(23, 27, 29, 0.36) 35% 40%, transparent 40% 60%, rgba(23, 27, 29, 0.36) 60% 65%, transparent 65%) 50% 42% / 28px 18px no-repeat,
    radial-gradient(circle at 42% 68%, rgba(23, 27, 29, 0.3) 0 3px, transparent 3.5px),
    radial-gradient(circle at 58% 68%, rgba(23, 27, 29, 0.3) 0 3px, transparent 3.5px),
    rgba(255, 255, 255, 0.58);
  transform: translateX(-50%);
}

.access-hatch::before {
  inset: 1rem 1rem 2.35rem;
  border: 2px solid rgba(21, 92, 79, 0.7);
  border-radius: 5px;
  background:
    linear-gradient(90deg, rgba(21, 92, 79, 0.36) 0 2px, transparent 2px 100%) 13px 0 / 22px 100%,
    linear-gradient(0deg, rgba(21, 92, 79, 0.28) 0 2px, transparent 2px 100%) 0 18px / 100% 28px,
    rgba(255, 255, 255, 0.54);
}

.access-hatch::after {
  right: 1.35rem;
  top: 2.25rem;
  width: 9px;
  height: 22px;
  border-radius: 999px;
  background: rgba(23, 27, 29, 0.34);
}

.access-sprinkler {
  background:
    radial-gradient(circle at 28% 60%, rgba(21, 92, 79, 0.28) 0 3px, transparent 3.5px),
    radial-gradient(circle at 42% 68%, rgba(21, 92, 79, 0.22) 0 3px, transparent 3.5px),
    radial-gradient(circle at 58% 68%, rgba(21, 92, 79, 0.22) 0 3px, transparent 3.5px),
    radial-gradient(circle at 72% 60%, rgba(21, 92, 79, 0.28) 0 3px, transparent 3.5px),
    linear-gradient(120deg, rgba(21, 92, 79, 0.08), transparent 52%),
    #f6f1ea;
}

.access-sprinkler::before {
  left: 50%;
  top: 1rem;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(21, 92, 79, 0.66);
  border-radius: 50%;
  background:
    radial-gradient(circle, #f6f1ea 0 8px, rgba(244, 209, 138, 0.72) 8.5px 13px, transparent 13.5px);
  transform: translateX(-50%);
}

.access-sprinkler::after {
  left: 50%;
  top: 3.2rem;
  width: 70px;
  height: 26px;
  border-top: 2px solid rgba(21, 92, 79, 0.36);
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
}

.access-exit::before {
  content: "EXIT";
  left: 0.85rem;
  right: 0.85rem;
  top: 1.1rem;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(21, 92, 79, 0.72);
  border-radius: 5px;
  background: #155c4f;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 0 18px rgba(21, 92, 79, 0.2);
}

.access-exit::after {
  left: 1.2rem;
  right: 1.2rem;
  top: 4.25rem;
  height: 20px;
  border-radius: 0 0 5px 5px;
  background: linear-gradient(180deg, rgba(21, 92, 79, 0.18), transparent);
}

.access-camera::before {
  left: 50%;
  top: 1rem;
  width: 58px;
  height: 38px;
  border-radius: 999px 999px 10px 10px;
  border: 2px solid rgba(21, 92, 79, 0.66);
  background:
    radial-gradient(circle at 50% 58%, rgba(23, 27, 29, 0.42) 0 8px, rgba(255, 255, 255, 0.32) 8.5px 16px, transparent 17px),
    rgba(255, 255, 255, 0.5);
  transform: translateX(-50%);
}

.access-camera::after {
  left: 50%;
  top: 3.2rem;
  width: 42px;
  height: 16px;
  border-left: 2px solid rgba(21, 92, 79, 0.5);
  border-right: 2px solid rgba(21, 92, 79, 0.5);
  border-bottom: 2px solid rgba(21, 92, 79, 0.5);
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%);
}

.access-custom::before {
  left: 0.85rem;
  right: 0.85rem;
  top: 1rem;
  bottom: 2.35rem;
  border: 2px dashed rgba(21, 92, 79, 0.58);
  border-radius: 8px;
  background:
    radial-gradient(circle at 36% 48%, rgba(21, 92, 79, 0.18) 0 18px, transparent 19px),
    linear-gradient(45deg, transparent 0 43%, rgba(244, 209, 138, 0.5) 43% 50%, transparent 50%),
    rgba(255, 255, 255, 0.5);
}

.access-custom::after {
  left: 52%;
  top: 2.1rem;
  width: 34px;
  height: 34px;
  border: 4px solid rgba(21, 92, 79, 0.72);
  border-radius: 50%;
  background: rgba(246, 241, 234, 0.82);
  box-shadow:
    -34px 14px 0 -8px rgba(21, 92, 79, 0.42),
    24px 18px 0 -11px rgba(23, 27, 29, 0.24);
}

.vibe-page .product-education,
.vibe-page .options-section {
  background: #101314;
}

.vibe-page .component-card,
.vibe-page .option-card {
  border-color: rgba(246, 241, 234, 0.14);
  background: #1b2021;
  box-shadow: none;
}

.vibe-page .component-card span,
.vibe-page .option-card p {
  color: rgba(246, 241, 234, 0.72);
}

.vibe-page .swatch-group {
  border-color: rgba(246, 241, 234, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.vibe-page .swatch-label {
  color: rgba(246, 241, 234, 0.66);
}

.vibe-page .photo-sample-panel img {
  border-color: rgba(246, 241, 234, 0.16);
  background: #101314;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.24);
}

.vibe-page .photo-sample-tags span {
  border-color: rgba(246, 241, 234, 0.14);
  background: rgba(246, 241, 234, 0.08);
  color: rgba(246, 241, 234, 0.9);
}

.vibe-page .access-coordination-intro p,
.vibe-page .penetration-example figcaption span {
  color: rgba(246, 241, 234, 0.72);
}

.vibe-page .penetration-example {
  border-color: rgba(246, 241, 234, 0.14);
  background: #1b2021;
  box-shadow: none;
}

.vibe-page .penetration-example img {
  border-color: rgba(246, 241, 234, 0.14);
}

.vibe-page .material-chip {
  border-color: rgba(246, 241, 234, 0.16);
  box-shadow:
    0 12px 20px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.vibe-page .sample-stack span {
  border-color: rgba(246, 241, 234, 0.15);
  box-shadow: 0 14px 22px rgba(0, 0, 0, 0.34);
}

.vibe-page .finish-swatch,
.vibe-page .finish-sample {
  border-color: rgba(246, 241, 234, 0.18);
}

.vibe-page .finish-sample {
  box-shadow:
    0 12px 20px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.vibe-page .finish-sample span {
  background: rgba(8, 10, 11, 0.78);
  color: #fff;
}

.vibe-page .lighting-sample {
  background: #080a0b;
  border-color: rgba(246, 241, 234, 0.16);
  box-shadow:
    0 12px 20px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.vibe-page .sample-backlit,
.vibe-page .sample-recessed {
  background-color: #080a0b;
}

.vibe-page .shape-sample {
  border-color: rgba(246, 241, 234, 0.16);
  box-shadow:
    0 12px 20px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.vibe-page .access-sample {
  border-color: rgba(246, 241, 234, 0.16);
  box-shadow:
    0 12px 20px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.band {
  background: var(--charcoal);
  color: var(--white);
}

.section-heading {
  max-width: 780px;
  display: grid;
  gap: 0.9rem;
}

.section-heading.center {
  margin: 0 auto 2.4rem;
  text-align: center;
}

.section-heading.center .lead {
  text-wrap: balance;
}

.section-heading + .card-grid,
.section-heading + .split,
.section-heading + .price-grid,
.section-heading + .steps,
.section-heading + .faq-grid,
.section-heading + .education-grid,
.section-heading + .option-grid {
  margin-top: 2.2rem;
}

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

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

.fit-card-grid .card:nth-child(odd):last-child {
  grid-column: 1 / -1;
}

.vibe-page #fit .fit-section-layout {
  display: grid;
  gap: 2.25rem;
}

.vibe-page #fit .fit-section-intro {
  max-width: 820px;
}

.vibe-page #fit .fit-card-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.vibe-page #fit .fit-photo-card {
  grid-column: span 2;
}

.vibe-page #fit .fit-photo-card:nth-last-child(-n + 2) {
  grid-column: span 3;
}

.vibe-page .fit-photo-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  flex-direction: column;
}

.vibe-page .fit-photo-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid rgba(246, 241, 234, 0.14);
}

.vibe-page .fit-photo-card-copy {
  flex: 1;
  padding: 1.1rem 1.15rem 1.2rem;
}

.vibe-page .fit-photo-card-copy h3 {
  margin-bottom: 0.65rem;
}

.card {
  min-height: 0;
  padding: 1.15rem;
  border: 1px solid rgba(23, 27, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.band .card,
.vibe-page .card {
  border-color: rgba(246, 241, 234, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

#ideas .use-case-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  flex-direction: column;
}

#ideas .use-case-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid rgba(246, 241, 234, 0.14);
}

#ideas .use-case-card-copy {
  flex: 1;
  padding: 1.1rem 1.15rem 1.2rem;
}

#ideas .use-case-card-copy h3 {
  margin-bottom: 0.65rem;
}

.vibe-page #ideas .idea-photo-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  flex-direction: column;
}

.vibe-page #ideas .idea-card-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid rgba(246, 241, 234, 0.14);
}

.vibe-page #ideas .idea-card-copy {
  padding: 1.1rem;
}

.vibe-page #ideas .idea-card-copy h3 {
  margin-bottom: 0.65rem;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 0.97rem;
}

.band .card p,
.band .card li,
.vibe-page .card p,
.vibe-page .card li {
  color: rgba(246, 241, 234, 0.72);
}

.card ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 0.85rem;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--green);
}

.vibe-page .check-list li::before,
.band .check-list li::before {
  background: var(--vibe-accent);
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 3rem;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

@media (min-width: 1061px) {
  .dental-view .shell {
    width: min(1340px, calc(100% - 32px));
  }

  .dental-view .split.reverse {
    grid-template-columns: minmax(320px, 0.68fr) minmax(680px, 1.32fr);
    gap: 3.4rem;
  }
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.experience-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 241, 234, 0.13);
  border-radius: 8px;
  background: rgba(246, 241, 234, 0.045);
}

.experience-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.sky-variant-grid {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  min-width: 0;
}

.sky-variant {
  min-width: 0;
  margin: 0;
}

.sky-variant img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 18px 28px rgba(11, 31, 42, 0.12);
}

.experience-figure figcaption {
  padding: 1rem 1.05rem 1.1rem;
  color: rgba(246, 241, 234, 0.75);
  font-size: 0.98rem;
  line-height: 1.55;
}

.experience-figure strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.05rem;
}

.context-board {
  margin: 0;
}

.collaboration-board {
  display: grid;
  gap: 1rem;
}

.collab-group {
  display: grid;
  gap: 0.75rem;
  padding: 0.8rem;
  border: 1px solid rgba(23, 27, 29, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 14px 34px rgba(17, 23, 25, 0.08);
}

.collab-group h3 {
  color: var(--copper);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collab-send-grid,
.collab-return-grid {
  display: grid;
  gap: 0.75rem;
}

.collab-send-grid {
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, minmax(160px, 1fr));
}

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

.context-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  min-height: 430px;
}

.context-photo,
.context-plan,
.context-sketch,
.context-mockup,
.quote-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 27, 29, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 30px rgba(17, 23, 25, 0.1);
}

.context-board .image-status::before,
.context-board .image-status::after {
  display: none;
}

.context-large {
  grid-row: 1 / span 2;
}

.context-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.context-photo span,
.context-plan span,
.context-sketch span,
.context-mockup > span,
.quote-card > span {
  position: absolute;
  left: 0.7rem;
  top: 0.7rem;
  display: inline-flex;
  min-height: 1.8rem;
  align-items: center;
  padding: 0 0.65rem;
  border-radius: 999px;
  background: rgba(16, 19, 20, 0.76);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.context-plan,
.context-sketch,
.context-mockup,
.quote-card {
  display: grid;
  place-items: center;
  padding: 2.1rem 1rem 0.9rem;
}

.context-plan {
  background:
    linear-gradient(rgba(37, 61, 84, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 61, 84, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.82);
  background-size: 18px 18px;
}

.context-sketch {
  background: #f8f5ee;
}

.context-sheet {
  display: block;
  padding: 0;
  background: #f8f5ee;
}

.context-sheet img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.context-sheet span {
  z-index: 2;
}

.context-mockup {
  background:
    radial-gradient(circle at 50% 28%, rgba(214, 162, 79, 0.24), transparent 32%),
    #f7f4ed;
}

.context-photo-output {
  margin: 0;
  display: block;
  padding: 0;
  background: #101314;
}

.context-photo-output img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  transform: scale(1.8);
  transform-origin: 23% 58%;
}

.quote-card {
  background: #f8f5ee;
}

.context-plan svg,
.context-sketch svg,
.context-mockup svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.context-plan svg {
  max-width: 270px;
  stroke-width: 2.55;
}

.context-sketch svg {
  max-width: 235px;
  stroke: var(--green);
  stroke-width: 2.35;
}

.collab-send-grid .context-plan svg,
.collab-send-grid .context-sketch svg {
  max-width: 245px;
}

.context-plan .plan-wall {
  stroke: #20364b;
  stroke-width: 4;
}

.context-plan .plan-door {
  stroke: #20364b;
  stroke-width: 2.2;
}

.context-plan .plan-fixture {
  stroke: rgba(32, 54, 75, 0.58);
  stroke-width: 2.2;
}

.context-plan .plan-ceiling-zone {
  fill: rgba(21, 92, 79, 0.08);
  stroke: rgba(21, 92, 79, 0.75);
  stroke-dasharray: 7 6;
  stroke-width: 2.4;
}

.context-plan .plan-light {
  stroke: rgba(214, 162, 79, 0.82);
  stroke-width: 3.2;
}

.context-sketch .pencil {
  stroke: #48504d;
  stroke-width: 2.6;
}

.context-sketch .pencil-light {
  stroke: rgba(72, 80, 77, 0.55);
  stroke-width: 1.7;
}

.context-mockup svg {
  max-width: 255px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.context-mockup .mock-wall {
  fill: #e6ded1;
  stroke: rgba(23, 27, 29, 0.28);
  stroke-width: 2.2;
}

.context-mockup .mock-floor {
  fill: rgba(167, 101, 53, 0.18);
  stroke: rgba(167, 101, 53, 0.34);
  stroke-width: 2;
}

.context-mockup .mock-ceiling {
  fill: #f8f7f1;
  stroke: var(--green);
  stroke-width: 2.3;
}

.context-mockup .mock-light {
  stroke: var(--amber);
  stroke-width: 4;
  filter: drop-shadow(0 0 5px rgba(214, 162, 79, 0.55));
}

.context-mockup .mock-hood,
.context-mockup .mock-stack {
  fill: rgba(37, 61, 84, 0.14);
  stroke: rgba(37, 61, 84, 0.55);
  stroke-width: 2;
}

.quote-paper {
  width: min(100%, 235px);
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid rgba(23, 27, 29, 0.14);
  border-radius: 6px;
  background: #fffdf8;
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(17, 23, 25, 0.08);
}

.quote-paper strong {
  font-size: 0.95rem;
}

.quote-paper p,
.quote-paper em {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
}

.quote-paper div {
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(21, 92, 79, 0.18);
}

.quote-paper div:nth-of-type(2) {
  width: 84%;
}

.quote-paper div:nth-of-type(3) {
  width: 68%;
}

.content-stack {
  display: grid;
  gap: 1.1rem;
}

.content-stack .lead {
  max-width: 680px;
}

.collaboration-copy .content-stack {
  max-width: 1060px;
}

.collaboration-copy .content-stack .lead,
.collaboration-copy .content-stack > p:not(.eyebrow) {
  max-width: 980px;
}

.collaboration-subhead {
  margin-top: 0.65rem;
  font-size: 1.3rem;
}

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

.architect-technical {
  border-top: 1px solid rgba(23, 27, 29, 0.12);
  border-bottom: 1px solid rgba(23, 27, 29, 0.12);
  background: #edf3f0;
}

.architect-technical .section-heading {
  max-width: 1040px;
}

.technical-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(23, 27, 29, 0.18);
}

.technical-topic-grid article {
  min-width: 0;
  padding: 1.35rem 0 1.5rem;
  border-bottom: 1px solid rgba(23, 27, 29, 0.18);
}

.technical-topic-grid h3,
.technical-delivery-grid h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
}

.technical-topic-grid p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

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

.technical-delivery-grid > div {
  min-width: 0;
  padding: 1.35rem 0;
  border-top: 3px solid var(--green);
  border-bottom: 1px solid rgba(23, 27, 29, 0.18);
}

.technical-delivery-grid .check-list {
  gap: 0.75rem;
}

.technical-table-wrap {
  margin-top: 2.25rem;
  overflow-x: auto;
  border-top: 1px solid rgba(23, 27, 29, 0.2);
  border-bottom: 1px solid rgba(23, 27, 29, 0.2);
}

.technical-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.5;
}

.technical-table caption {
  padding: 1.2rem 0 0.8rem;
  font-size: 1.18rem;
  font-weight: 800;
  text-align: left;
}

.technical-table th,
.technical-table td {
  padding: 0.9rem 1rem 0.9rem 0;
  border-top: 1px solid rgba(23, 27, 29, 0.13);
  vertical-align: top;
  text-align: left;
}

.technical-table thead th {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.technical-table tbody th {
  width: 18%;
  min-width: 150px;
}

.technical-table tbody td {
  width: 41%;
  color: var(--muted);
}

.technical-note {
  max-width: 1120px;
  margin-top: 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid var(--copper);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.architect-technical .cta-row {
  margin-top: 1.5rem;
}

@media (max-width: 720px) {
  .collaboration-list {
    grid-template-columns: 1fr;
  }
}

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

.comparison .split {
  align-items: start;
}

.compare-column {
  padding: 1.45rem;
  border: 1px solid rgba(23, 27, 29, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.compare-column.featured {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.compare-column h3 {
  margin-bottom: 1rem;
}

.compare-column ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding-left: 1.15rem;
}

.compare-column li {
  color: var(--muted);
}

.compare-column.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.benefit-list {
  overflow: hidden;
  border: 1px solid rgba(23, 27, 29, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 38px rgba(17, 23, 25, 0.08);
}

.benefit-list-head,
.benefit-item {
  display: grid;
  grid-template-columns: minmax(130px, 0.82fr) minmax(0, 1.18fr);
  gap: 1rem;
}

.benefit-list-head {
  padding: 0.8rem 1.05rem;
  color: var(--white);
  background: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefit-item {
  padding: 1rem 1.05rem;
  border-top: 1px solid rgba(23, 27, 29, 0.1);
  align-items: start;
}

.benefit-item strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.28;
}

.benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.price-item {
  padding: 1.25rem;
  border-left: 4px solid var(--green);
  background: rgba(255, 255, 255, 0.75);
}

.vibe-page .price-item {
  border-left-color: var(--vibe-accent);
  background: rgba(255, 255, 255, 0.07);
}

.price-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.25rem;
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  position: relative;
  min-height: 210px;
  padding: 1.35rem;
  border: 1px solid rgba(23, 27, 29, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.band .step {
  border-color: rgba(246, 241, 234, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 1.1rem;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 800;
}

.vibe-page .step {
  border-color: rgba(246, 241, 234, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.vibe-page .step::before {
  color: #101314;
  background: var(--vibe-accent-strong);
}

.step p {
  color: var(--muted);
}

.band .step p {
  color: rgba(246, 241, 234, 0.72);
}

.band .step h3 {
  color: var(--white);
}

.vibe-page .step p {
  color: rgba(246, 241, 234, 0.7);
}

.install-process-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: 2.2rem;
}

.install-process-intro h2 {
  max-width: 690px;
}

.install-process-intro .lead {
  margin: 0 0 0.35rem;
}

.install-process .install-step {
  display: flex;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  flex-direction: column;
}

.install-process .install-step::before {
  position: absolute;
  z-index: 1;
  top: 0.9rem;
  left: 0.9rem;
  margin: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.install-step-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-bottom: 1px solid rgba(246, 241, 234, 0.14);
}

.install-step-copy {
  padding: 1.15rem 1.25rem 1.3rem;
}

.install-step-copy h3 {
  margin-bottom: 0.55rem;
}

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

.faq-item {
  padding: 1.25rem;
  border-top: 1px solid rgba(23, 27, 29, 0.18);
}

.faq-item h3 {
  margin-bottom: 0.55rem;
}

.faq-item p {
  color: var(--muted);
}

.band .faq-item {
  border-top-color: rgba(246, 241, 234, 0.18);
}

.band .faq-item h3 {
  color: var(--white);
}

.band .faq-item p {
  color: rgba(246, 241, 234, 0.72);
}

.review-section {
  background: var(--green-dark);
  color: var(--white);
}

.vibe-page .review-section {
  background: #17191e;
}

.review-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.review-copy {
  display: grid;
  gap: 1rem;
}

.review-copy .lead,
.review-copy .muted {
  color: rgba(255, 255, 255, 0.76);
}

.form-panel {
  padding: 1.35rem;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.vibe-page .form-panel {
  background: #f6f1ea;
}

form {
  display: grid;
  gap: 1rem;
}

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

label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  border: 1px solid #c9c3b7;
  border-radius: 6px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(21, 92, 79, 0.18);
  border-color: var(--green);
}

.vibe-page input:focus,
.vibe-page select:focus,
.vibe-page textarea:focus {
  outline-color: rgba(217, 168, 108, 0.26);
  border-color: var(--vibe-accent);
}

.fine-print {
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer {
  padding: 36px 0;
  color: rgba(255, 255, 255, 0.74);
  background: var(--charcoal);
}

.footer-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.vibe-hero {
  background:
    linear-gradient(90deg, rgba(16, 19, 20, 0.96) 0%, rgba(16, 19, 20, 0.78) 52%, rgba(16, 19, 20, 0.28) 100%),
    url("assets/hospitality-vibe-hero-tables-v3.jpg?v=hero-tables-v1") center right / cover no-repeat;
}

.vibe-hero .hero-grid {
  min-height: 640px;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
}

@media (min-width: 1061px) {
  .vibe-hero {
    padding-top: 44px;
  }

  .vibe-hero .hero-grid {
    align-items: start;
  }
}

.vibe-hero h1 {
  max-width: 12ch;
}

.vibe-panel {
  align-self: end;
  padding: 1.1rem;
  border: 1px solid rgba(246, 241, 234, 0.16);
  border-radius: 8px;
  background: rgba(16, 19, 20, 0.72);
  backdrop-filter: blur(8px);
}

.vibe-panel strong {
  display: block;
  margin-bottom: 0.35rem;
}

.thank-you-page .hero-grid,
.privacy-page .hero-grid {
  grid-template-columns: minmax(0, 1fr);
}

.thank-you-card,
.privacy-card {
  max-width: 820px;
  padding: 1.6rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.privacy-card {
  display: grid;
  gap: 1.25rem;
}

.privacy-card h2 {
  font-size: 1.45rem;
}

.terms-page .hero {
  padding: 48px 0 64px;
}

.terms-page .hero-grid {
  width: min(920px, calc(100% - 32px));
  gap: 1.5rem;
}

.terms-page .hero-copy {
  gap: 0.75rem;
}

.terms-page .hero-copy h1 {
  max-width: none;
  font-family: var(--sans);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.terms-page .hero-copy .lead {
  max-width: 780px;
  font-size: 1rem;
  line-height: 1.65;
}

.terms-page .terms-card {
  max-width: none;
  gap: 0;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
}

.terms-page .terms-card section + section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.terms-page .terms-card h2 {
  margin-bottom: 0.6rem;
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .brand small,
  .phone-link.button.secondary {
    display: none;
  }

  .primary-nav {
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-grid > .hero-media {
    order: 0;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-copy h1,
  .design-build-page .hero-copy h1,
  .vibe-hero h1 {
    max-width: 100%;
  }

  .vibe-hero .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1060px) {
  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .review-grid {
    grid-template-columns: 1fr;
  }

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

  .vibe-page #fit .fit-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vibe-page #fit .fit-photo-card,
  .vibe-page #fit .fit-photo-card:nth-last-child(-n + 2) {
    grid-column: auto;
  }

  .vibe-page #fit .fit-photo-card:nth-child(odd):last-child {
    grid-column: 1 / -1;
  }

  .install-process-intro {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .install-steps {
    grid-template-columns: 1fr;
  }

  .install-process .install-step {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  }

  .install-step-photo {
    height: 100%;
    min-height: 250px;
    aspect-ratio: auto;
    border-right: 1px solid rgba(246, 241, 234, 0.14);
    border-bottom: 0;
  }

  .definition-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "diagram"
      "copy";
  }

  .stretch-diagram {
    max-width: 780px;
    justify-self: center;
  }

  .option-card-wide {
    grid-template-columns: 1fr;
  }

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

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

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

  .finish-sample-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lighting-sample-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shape-sample-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .access-sample-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sample-stack {
    min-height: 132px;
  }

  .vibe-hero .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-shell {
    width: calc(100% - 24px);
    min-height: auto;
    padding: 0.65rem 0 0.55rem;
    flex-wrap: wrap;
    gap: 0.55rem 0.75rem;
  }

  .brand {
    flex: 1 1 auto;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
  }

  .primary-nav {
    order: 3;
    flex: 1 0 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    overflow: visible;
    padding: 0.2rem 0 0.1rem;
  }

  .primary-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.35rem;
    border: 1px solid rgba(23, 27, 29, 0.14);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.46);
    font-size: 0.72rem;
    line-height: 1.15;
    text-align: center;
    text-wrap: balance;
    white-space: normal;
  }

  .vibe-page .primary-nav a {
    border-color: rgba(246, 241, 234, 0.15);
    background: rgba(255, 255, 255, 0.06);
  }

  .hero {
    padding-top: 32px;
  }

  .hero-copy {
    max-width: none;
  }

}

@media (max-width: 720px) {
  .contact-first-page {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 9.6vw, 2.4rem);
    line-height: 1.02;
  }

  h2 {
    font-size: 1.75rem;
  }

  .sky-variant-grid {
    grid-template-columns: 1fr;
  }

  .sky-variant img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .photo-sample-panel img {
    min-height: 185px;
  }

  .photo-sample-tags {
    gap: 0.3rem;
  }

  .photo-sample-tags span {
    min-height: 1.45rem;
    padding: 0.16rem 0.38rem;
    font-size: 0.56rem;
    line-height: 1.05;
    letter-spacing: 0;
  }

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

  .technical-topic-grid,
  .technical-delivery-grid {
    grid-template-columns: 1fr;
  }

  .technical-topic-grid {
    gap: 0;
  }

  .technical-delivery-grid {
    gap: 1.25rem;
  }

  .penetration-example figcaption {
    min-height: 138px;
    gap: 0.35rem;
    padding: 0.72rem;
  }

  .penetration-example figcaption strong {
    font-size: 0.86rem;
    line-height: 1.15;
  }

  .penetration-example figcaption span {
    font-size: 0.74rem;
    line-height: 1.38;
  }

  .design-build-page .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.8vw, 2.25rem);
    line-height: 1.03;
  }

  .section {
    padding: 42px 0;
  }

  .hero {
    padding: 28px 0 40px;
  }

  .hero-copy {
    gap: 1.05rem;
  }

  .hero-copy .lead {
    font-size: 1.04rem;
    line-height: 1.55;
  }

  .nav-shell {
    min-height: 66px;
    gap: 0.45rem 0.5rem;
  }

  .brand {
    min-width: 0;
    gap: 0.5rem;
    font-size: 0.86rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .header-actions .button {
    min-height: 42px;
    padding: 0.65rem 0.8rem;
    font-size: 0.84rem;
  }

  .hero-grid {
    gap: 2rem;
  }

  .stretch-definition {
    padding: 38px 0;
  }

  .definition-panel {
    gap: 1.2rem;
  }

  .definition-heading h2 {
    max-width: 18ch;
    font-size: 1.65rem;
  }

  .definition-copy {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .install-diagram {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }

  .mobile-proof-image {
    display: block;
  }

  .single-hero-media {
    display: block;
    width: 100%;
  }

  .single-hero-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(17, 23, 25, 0.14);
  }

  .mobile-proof-image img {
    width: 100%;
    aspect-ratio: 16 / 8.5;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(17, 23, 25, 0.14);
  }

  .mobile-proof-image .before-after-frame {
    height: clamp(230px, 62vw, 360px);
    gap: 0.5rem;
  }

  .dental-comparison .before-after-frame {
    height: clamp(220px, 58vw, 280px);
    gap: 0.5rem;
  }

  .mobile-proof-image .comparison-shot img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
    box-shadow: none;
  }

  .image-status {
    --image-status-size: 38px;
    --image-status-inset: 0.6rem;
  }

  .image-status-before::before {
    bottom: calc(var(--image-status-inset) + 11px);
    right: calc(var(--image-status-inset) + 11px);
    width: 20px;
    height: 20px;
  }

  .image-status-after::before {
    bottom: calc(var(--image-status-inset) + 15px);
    right: calc(var(--image-status-inset) + 7px);
    width: 18px;
    height: 11px;
    border-bottom-width: 4px;
    border-left-width: 4px;
  }

  .mobile-proof-image .media-caption {
    display: none;
  }

  .card-grid,
  .education-grid,
  .option-grid,
  .collab-send-grid,
  .collab-return-grid,
  .comparison-table,
  .context-grid,
  .experience-gallery-grid,
  .price-grid,
  .steps,
  .faq-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .install-process .install-step {
    display: flex;
  }

  .install-step-photo {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
    border-right: 0;
    border-bottom: 1px solid rgba(246, 241, 234, 0.14);
  }

  .vibe-page #fit .fit-card-grid {
    grid-template-columns: 1fr;
  }

  .material-board {
    grid-template-columns: 1fr;
  }

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

  .texture-sheen-card {
    grid-column: auto;
  }

  .lighting-options-card {
    grid-column: auto;
  }

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

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

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

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

  .shape-sample {
    min-height: 132px;
  }

  .access-sample {
    min-height: 132px;
  }

  .material-chip {
    min-height: 68px;
  }

  .context-grid {
    grid-template-rows: auto;
    min-height: 0;
  }

  .context-large {
    grid-row: auto;
  }

  .context-photo,
  .context-plan,
  .context-sketch,
  .context-mockup,
  .quote-card {
    min-height: 190px;
  }

  .option-card,
  .card,
  .step {
    min-height: auto;
  }

  .benefit-list-head {
    display: none;
  }

  .benefit-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .cta-row .button {
    width: 100%;
  }

  .hero-contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .hero-contact-actions .button:first-child {
    grid-column: 1 / -1;
  }

  .hero-contact-actions.two-option-actions .button:first-child {
    grid-column: auto;
  }

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

  .hero-proof-row span {
    border-left: 0;
  }

  .hero-proof-row span:nth-child(n + 2) {
    border-top: 1px solid rgba(23, 27, 29, 0.16);
  }

  .vibe-page .hero-proof-row span:nth-child(n + 2) {
    border-color: rgba(246, 241, 234, 0.18);
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0.45rem max(0.55rem, env(safe-area-inset-right)) calc(0.45rem + env(safe-area-inset-bottom)) max(0.55rem, env(safe-area-inset-left));
    color: var(--white);
    background: rgba(17, 23, 25, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 -10px 30px rgba(17, 23, 25, 0.22);
  }

  .mobile-contact-bar a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.82rem;
    font-weight: 850;
    text-decoration: none;
  }

  .mobile-contact-bar a:first-child {
    border-left: 0;
  }

  .review-grid {
    gap: 2rem;
  }

  .form-panel {
    padding: 1rem;
  }

  .vibe-hero {
    background:
      linear-gradient(180deg, rgba(16, 19, 20, 0.9) 0%, rgba(16, 19, 20, 0.94) 100%),
      url("assets/hospitality-vibe-hero-tables-v3.jpg?v=hero-tables-v1") center / cover no-repeat;
  }
}

@media (max-width: 340px) {
  .nav-shell {
    width: calc(100% - 16px);
    gap: 0.4rem;
  }

  .brand {
    gap: 0.35rem;
    font-size: 0.76rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
  }

  .header-actions .button {
    min-height: 38px;
    padding: 0.55rem 0.6rem;
    font-size: 0.76rem;
  }

  .primary-nav {
    gap: 0.3rem;
  }

  .primary-nav a {
    padding-inline: 0.2rem;
    font-size: 0.64rem;
  }
}
