:root {
  --ink: #171513;
  --charcoal: #252220;
  --stone: #f5f2ed;
  --paper: #ffffff;
  --muted: #6c6964;
  --line: rgba(23, 21, 19, 0.14);
  --gold: #b89452;
  --steel: #547083;
  --sage: #78866b;
  --danger: #a9483d;
  --shadow: 0 24px 80px rgba(23, 21, 19, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 116px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px clamp(18px, 4vw, 56px) 12px;
  color: var(--paper);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 36px rgba(23, 21, 19, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  width: min(142px, 38vw);
  min-width: 122px;
  position: relative;
  display: block;
  background: transparent;
  border: 0;
  padding: 0;
}

.brand-logo {
  width: 100%;
  transition: opacity 180ms ease;
}

.brand-logo-dark {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light,
.site-header.is-open .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark,
.site-header.is-open .brand-logo-dark {
  opacity: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 12px;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  background: currentColor;
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 130px clamp(18px, 5vw, 72px) 76px;
  overflow: hidden;
  color: var(--paper);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 14, 13, 0.88), rgba(15, 14, 13, 0.54) 42%, rgba(15, 14, 13, 0.16)),
    linear-gradient(180deg, rgba(15, 14, 13, 0.28), rgba(15, 14, 13, 0.42));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.intro h2,
.section-heading h2,
.split-copy h2,
.work-band h2,
.cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 710px;
  font-size: clamp(3rem, 8vw, 6.9rem);
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  font-weight: 800;
  font-size: 0.92rem;
}

.button.primary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.button.secondary {
  color: var(--paper);
}

.hero-panel {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 72px);
  bottom: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  max-width: 620px;
  background: rgba(23, 21, 19, 0.58);
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 20px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong {
  display: block;
  font-size: 1.35rem;
}

.hero-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-strip span {
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--charcoal);
  font-weight: 800;
  text-align: center;
}

.trust-strip span:nth-child(2) {
  color: var(--steel);
}

.trust-strip span:nth-child(3) {
  color: var(--sage);
}

.trust-strip span:nth-child(4) {
  color: var(--danger);
  border-right: 0;
}

.section {
  padding: clamp(72px, 9vw, 126px) clamp(18px, 5vw, 72px);
}

.intro-grid,
.section-heading,
.split-section,
.cta {
  max-width: 1180px;
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
}

.intro .section-kicker {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.intro h2,
.section-heading h2,
.split-copy h2,
.work-band h2,
.cta h2 {
  font-size: clamp(2.15rem, 4.4vw, 4.6rem);
}

.intro p,
.split-copy p,
.cta p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 36px;
  margin-bottom: 44px;
}

.service-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 300px;
  padding: 30px;
  background: var(--paper);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  color: var(--paper);
  background: var(--charcoal);
  font-weight: 800;
}

.service-card:nth-child(2) .service-icon {
  background: var(--steel);
}

.service-card:nth-child(3) .service-icon {
  background: var(--sage);
}

.service-card:nth-child(4) .service-icon {
  background: var(--danger);
}

.service-card h3,
.timeline h3,
.work-grid h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.service-card p,
.timeline p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
  padding: clamp(72px, 9vw, 126px) clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: var(--paper);
}

.materials-studio {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  padding: clamp(72px, 9vw, 126px) clamp(18px, 5vw, 72px);
  background: #ece8df;
}

.materials-copy,
.material-interface {
  max-width: 1180px;
}

.materials-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.4vw, 4.6rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.materials-copy p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.client-portal {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.client-portal span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.client-portal label {
  font-weight: 900;
}

.client-portal div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.client-portal input,
.client-portal button {
  min-height: 44px;
  border: 1px solid var(--line);
  font: inherit;
}

.client-portal input {
  width: 100%;
  padding: 0 12px;
  background: #fff;
}

.client-portal button {
  padding: 0 14px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.client-portal p {
  margin: 0;
  font-size: 0.9rem;
}

.client-file-preview {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.client-file-preview[hidden] {
  display: none;
}

.client-file-preview strong {
  font-size: 0.95rem;
}

.client-selection-list {
  display: grid;
  gap: 8px;
}

.client-selection-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.client-selection-item img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #f6f4f0;
}

.client-selection-item p {
  margin: 2px 0 0;
  font-size: 0.82rem;
}

.material-interface {
  display: grid;
  gap: 18px;
}

.material-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.material-tabs button {
  min-height: 50px;
  border: 0;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.material-tabs button.is-active {
  color: var(--paper);
  background: var(--charcoal);
}

.material-preview {
  display: grid;
  grid-template-columns: minmax(210px, 0.84fr) 1fr;
  gap: 28px;
  align-items: stretch;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.material-swatch {
  min-height: 300px;
  border: 1px solid rgba(23, 21, 19, 0.12);
  background-size: cover;
}

.material-swatch.flooring {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(23, 21, 19, 0.08)),
    repeating-linear-gradient(90deg, #b48a5f 0 54px, #c8a47a 54px 108px, #9d724d 108px 162px);
}

.material-swatch.tile {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(84, 112, 131, 0.18)),
    linear-gradient(90deg, transparent 48%, rgba(23, 21, 19, 0.16) 49%, transparent 50%),
    linear-gradient(0deg, transparent 48%, rgba(23, 21, 19, 0.16) 49%, transparent 50%),
    #d8d4cb;
  background-size: auto, 96px 96px, 96px 96px, auto;
}

.material-swatch.countertops {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(84, 112, 131, 0.14)),
    radial-gradient(circle at 20% 30%, rgba(93, 88, 82, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 68% 58%, rgba(184, 148, 82, 0.16) 0 3px, transparent 4px),
    linear-gradient(120deg, #eee9df 0 42%, #b7b3aa 42% 48%, #f7f4ee 48% 100%);
}

.material-swatch.cabinet {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.12)),
    repeating-linear-gradient(90deg, #5f4632 0 72px, #72543b 72px 144px, #3c332c 144px 216px);
}

.material-swatch.bathroom {
  background:
    radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.92) 0 16%, transparent 17%),
    radial-gradient(circle at 70% 72%, rgba(184, 148, 82, 0.52) 0 12%, transparent 13%),
    linear-gradient(135deg, #ece8df 0 34%, #c9d2d6 34% 66%, #2b2a28 66% 100%);
}

.material-swatch.doors {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(23, 21, 19, 0.12)),
    repeating-linear-gradient(90deg, #e8e1d6 0 82px, #c8bba8 82px 92px, #f4efe8 92px 174px),
    linear-gradient(0deg, transparent 0 42%, rgba(23, 21, 19, 0.22) 42% 44%, transparent 44% 100%);
}

.material-label {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.material-preview h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.material-preview p {
  margin: 18px 0 0;
  color: var(--muted);
}

.material-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.material-options article {
  min-height: 178px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.sample {
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
}

.sample-one {
  background: var(--steel);
}

.sample-two {
  background: var(--gold);
}

.sample-three {
  background: var(--sage);
}

.material-options h4 {
  margin: 0 0 8px;
}

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

[data-material-overview][hidden] {
  display: none;
}

.material-library {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding: clamp(22px, 4vw, 32px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.material-library[hidden],
.library-products[hidden] {
  display: none;
}

.material-library-heading,
.library-products-head {
  display: grid;
  gap: 8px;
}

.material-library-heading span,
.library-products-head span,
.library-category-card span,
.library-subcategory-list button,
.supplier-card span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.material-library-heading h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.library-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.library-category-card {
  display: grid;
  gap: 12px;
  min-height: 142px;
  padding: 22px;
  background: var(--paper);
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.library-category-card:hover,
.library-category-card.is-active {
  background: #fff;
  box-shadow: inset 0 0 0 2px var(--gold);
}

.library-category-card:hover {
  transform: translateY(-2px);
}

.library-category-card strong {
  font-size: 1.1rem;
  line-height: 1.2;
}

.library-category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.library-products {
  display: grid;
  gap: 18px;
  padding-top: 6px;
}

.library-products-head h4 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.library-subcategory-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.library-subcategory-list button {
  min-height: 42px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
}

.library-subcategory-list button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1fr;
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(18px, 3vw, 28px);
  background: #fff;
  border: 1px solid var(--line);
}

.product-detail[hidden] {
  display: none;
}

.product-gallery {
  display: grid;
  gap: 12px;
}

.product-gallery-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f6f4f0;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.product-thumbs button {
  padding: 0;
  background: #f6f4f0;
  border: 1px solid var(--line);
  cursor: pointer;
}

.product-thumbs button.is-active {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 2px var(--gold);
}

.product-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.product-detail-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.product-detail-copy span,
.finish-options span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-copy h5 {
  margin: 0;
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  line-height: 1.08;
}

.product-detail-copy p {
  margin: 0;
  color: var(--muted);
}

.finish-options {
  display: grid;
  gap: 10px;
}

.finish-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.finish-list button {
  min-height: 42px;
  padding: 9px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.finish-list button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-actions button {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.detail-actions button.is-secondary {
  background: transparent;
  color: var(--ink);
}

.detail-actions button.is-added {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.supplier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.supplier-card {
  display: grid;
  grid-template-rows: 190px auto 1fr auto;
  gap: 12px;
  min-height: 310px;
  padding: 16px;
  background: var(--paper);
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.supplier-card:hover,
.supplier-card.is-selected {
  background: #fff;
  box-shadow: inset 0 0 0 2px var(--gold);
}

.supplier-card:hover {
  transform: translateY(-2px);
}

.supplier-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  background: #f6f4f0;
}

.supplier-card strong {
  font-size: 0.98rem;
  line-height: 1.25;
}

.supplier-card em {
  align-self: end;
  justify-self: start;
  padding: 9px 12px;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.supplier-card.is-selected em {
  background: var(--gold);
  color: var(--ink);
}

.split-copy p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.68);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.84);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--gold);
}

.metrics {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.metrics div {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.metrics strong {
  display: block;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.metrics span {
  color: rgba(255, 255, 255, 0.78);
}

.process {
  background: var(--paper);
}

.timeline {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.timeline article {
  padding: 30px 30px 0 0;
  border-right: 1px solid var(--line);
}

.timeline article:last-child {
  border-right: 0;
}

.timeline span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 28px;
}

.work-band {
  padding: clamp(72px, 9vw, 126px) clamp(18px, 5vw, 72px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(37, 34, 32, 0.96), rgba(37, 34, 32, 0.88)),
    radial-gradient(circle at 20% 20%, rgba(184, 148, 82, 0.22), transparent 36%);
}

.work-band > div {
  max-width: 1180px;
  margin: 0 auto;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 44px;
  background: rgba(255, 255, 255, 0.14);
}

.work-grid article {
  min-height: 230px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.work-grid span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 42px;
}

.work-grid h3 {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.35rem;
  line-height: 1.32;
}

.cta {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  padding: clamp(72px, 9vw, 126px) clamp(18px, 5vw, 72px);
}

.cta p {
  margin-top: 20px;
}

.contact-card {
  display: grid;
  gap: 24px;
  padding: clamp(26px, 4vw, 42px);
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(37, 34, 32, 0.98), rgba(23, 21, 19, 0.94)),
    linear-gradient(90deg, rgba(184, 148, 82, 0.2), transparent);
  box-shadow: 0 30px 90px rgba(23, 21, 19, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card-header {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-card-header span,
.contact-method span,
.contact-location span {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-card-header h3 {
  margin: 0;
  max-width: 360px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 500;
  line-height: 1.1;
}

.contact-methods {
  display: grid;
  gap: 0;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-method {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 17px 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method:last-child {
  border-bottom: 0;
}

.contact-method span {
  margin-bottom: 0;
}

.contact-method strong {
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.contact-location {
  padding-top: 2px;
}

.contact-location p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.contact-cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 900;
}

.contact-secondary {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.site-footer img {
  width: 190px;
  background: transparent;
  padding: 0;
}

.site-footer p {
  max-width: 680px;
  margin: 0;
  font-size: 0.9rem;
  text-align: right;
}

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

  .site-nav {
    position: absolute;
    top: 116px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    display: block;
    align-items: start;
    padding-top: 154px;
    padding-bottom: 40px;
  }

  .hero-content {
    margin-top: 0;
  }

  .hero-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    max-width: none;
    margin-top: 28px;
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .trust-strip,
  .intro-grid,
  .section-heading,
  .split-section,
  .materials-studio,
  .timeline,
  .work-grid,
  .cta,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip span,
  .timeline article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip span:last-child,
  .timeline article:last-child {
    border-bottom: 0;
  }

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

  .material-tabs,
  .material-preview,
  .material-options,
  .library-category-grid,
  .product-detail,
  .supplier-grid {
    grid-template-columns: 1fr;
  }

  .material-swatch {
    min-height: 240px;
  }

  .supplier-card {
    grid-template-rows: 220px auto 1fr auto;
  }

  .supplier-card img {
    height: 220px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 540px) {
  .site-header {
    height: 96px;
    padding-top: 18px;
  }

  .brand {
    min-width: 112px;
    width: 122px;
  }

  .site-nav {
    top: 96px;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: 2.72rem;
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-panel {
    margin-top: 24px;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 26px;
  }

  .button {
    width: 100%;
  }

  .hero-panel div {
    padding: 18px 20px;
  }

  .contact-method strong {
    font-size: 0.98rem;
  }

  .contact-method {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-actions,
  .contact-cta,
  .contact-secondary {
    width: 100%;
  }
}
