:root {
  --ink: #172022;
  --ink-soft: #526064;
  --paper: #fbf8f0;
  --chalk: #ffffff;
  --mist: #e9f0ec;
  --sage: #6f8676;
  --sage-dark: #31483f;
  --harbor: #1f5366;
  --harbor-dark: #12313d;
  --maple: #d6a15c;
  --copper: #a95d45;
  --stone: #d7d3c7;
  --line: rgba(23, 32, 34, 0.14);
  --shadow: 0 22px 60px rgba(23, 32, 34, 0.16);
  --radius: 7px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(31, 83, 102, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(111, 134, 118, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  max-width: 850px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7.8vw, 7.4rem);
  overflow-wrap: normal;
}

h2 {
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.4vw, 4.6rem);
}

h3 {
  font-size: 1.22rem;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.studio-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "strip strip strip"
    "brand nav cta";
  gap: 10px 18px;
  align-items: center;
  padding: 0 max(20px, calc((100vw - 1160px) / 2)) 12px;
  color: var(--chalk);
  background: rgba(18, 49, 61, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 38px rgba(18, 49, 61, 0.22);
}

.studio-header.scrolled {
  background: rgba(18, 49, 61, 0.99);
}

.showroom-strip {
  grid-area: strip;
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 min(0px, calc((100vw - 1160px) / -2));
  padding: 7px max(20px, calc((100vw - 1160px) / 2));
  color: var(--harbor-dark);
  background: var(--maple);
  font-size: 0.84rem;
  font-weight: 900;
}

.showroom-strip a {
  color: var(--harbor-dark);
  white-space: nowrap;
}

.brand {
  grid-area: brand;
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--maple) 0 48%, var(--sage) 48% 100%);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  content: "";
}

.brand-mark::before {
  width: 26px;
  height: 26px;
  border: 3px solid var(--chalk);
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
}

.brand-mark::after {
  right: 8px;
  bottom: 8px;
  width: 22px;
  height: 3px;
  background: var(--harbor-dark);
  box-shadow: 0 -7px 0 var(--harbor-dark);
}

.brand-mark span {
  left: 9px;
  bottom: 9px;
  width: 3px;
  height: 22px;
  background: var(--chalk);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
}

.studio-nav {
  grid-area: nav;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.studio-nav a,
.header-cta {
  border-radius: var(--radius);
  font-weight: 900;
}

.studio-nav a {
  padding: 10px 12px;
  font-size: 0.93rem;
}

.studio-nav a:hover,
.studio-nav a:focus-visible {
  color: var(--harbor-dark);
  background: var(--maple);
  outline: none;
}

.header-cta {
  grid-area: cta;
  padding: 12px 14px;
  color: var(--chalk);
  background: var(--copper);
  white-space: nowrap;
  box-shadow: inset 0 -3px 0 rgba(23, 32, 34, 0.18);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: #924b38;
  outline: none;
}

.nav-toggle {
  grid-area: nav;
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--radius);
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 10px;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(760px, 86svh, 940px);
  align-items: end;
  overflow: hidden;
  padding: 184px 0 78px;
  color: var(--chalk);
  background: var(--harbor-dark);
  isolation: isolate;
}

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

.hero-image {
  z-index: -2;
  max-width: none;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.06) contrast(1.02) brightness(0.90);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(96deg, rgba(18, 49, 61, 0.96) 0%, rgba(18, 49, 61, 0.86) 42%, rgba(18, 49, 61, 0.34) 72%),
    linear-gradient(180deg, rgba(18, 49, 61, 0.16), rgba(18, 49, 61, 0.80)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 118px);
}

.hero-inner {
  display: grid;
  width: min(1160px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.28fr);
  gap: 42px;
  align-items: end;
  margin: 0 auto;
}

.hero-mobile-photo {
  display: none;
}

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

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.15;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button.primary {
  color: var(--chalk);
  background: var(--copper);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #924b38;
}

.button.secondary {
  color: var(--harbor-dark);
  background: var(--maple);
}

.button.secondary:hover,
.button.secondary:focus-visible,
.strip-button:hover,
.strip-button:focus-visible {
  background: #e1b56f;
}

.full-width {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 900;
}

.sample-board {
  position: relative;
  padding: 20px;
  color: var(--ink);
  border-top: 7px solid var(--maple);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 52px rgba(23, 32, 34, 0.30);
}

.sample-board-heading {
  display: grid;
  gap: 8px;
}

.sample-board-heading span {
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sample-board-heading strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.56rem;
  line-height: 1.08;
}

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

.swatch {
  display: block;
  min-height: 76px;
  border: 1px solid rgba(23, 32, 34, 0.14);
  border-radius: var(--radius);
  box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.06);
}

.swatch.oak {
  background:
    linear-gradient(90deg, rgba(82, 47, 25, 0.14) 1px, transparent 1px),
    linear-gradient(135deg, #c88f4d, #e0b571);
  background-size: 12px auto, auto;
}

.swatch.sage {
  background: linear-gradient(135deg, #6f8676, #a6b4a8);
}

.swatch.stone {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 42%),
    #d7d3c7;
}

.swatch.brass {
  background: linear-gradient(135deg, #c39647, #e4c87c);
}

.board-details {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.board-details div {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 14px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
}

.board-details div:last-child {
  border-bottom: 0;
}

.board-details dt {
  color: var(--ink-soft);
  font-weight: 900;
}

.board-details dd {
  margin: 0;
  font-weight: 900;
}

.consult-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 22px;
  align-items: center;
  padding: 24px max(20px, calc((100vw - 1160px) / 2));
  color: var(--chalk);
  background:
    linear-gradient(90deg, rgba(169, 93, 69, 0.22), transparent 45%),
    var(--sage-dark);
}

.consult-strip > div {
  display: grid;
  gap: 5px;
}

.consult-strip span {
  color: var(--maple);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.consult-strip strong {
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.18;
}

.quick-form {
  display: grid;
  grid-template-columns: 1fr 180px auto;
  gap: 10px;
  align-items: end;
}

.quick-form label,
.consult-form label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.quick-form label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.quick-form input,
.quick-form select,
.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--chalk);
}

.quick-form input,
.quick-form select {
  min-height: 48px;
  padding: 11px 12px;
}

.strip-button {
  color: var(--harbor-dark);
  background: var(--maple);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1160px, calc(100% - 40px));
  margin: 34px auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--chalk);
  box-shadow: 0 14px 38px rgba(23, 32, 34, 0.08);
}

.metrics div {
  display: grid;
  min-height: 130px;
  align-content: center;
  gap: 5px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

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

.metrics strong {
  color: var(--harbor);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1;
}

.metrics span {
  color: var(--ink-soft);
  font-weight: 900;
}

.section {
  padding: 90px 0;
}

section[id] {
  scroll-margin-top: 132px;
}

.materials-heading,
.project-heading,
.proof-heading,
.review-grid,
.consult-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  gap: 54px;
  align-items: start;
}

.materials-heading > p,
.proof-heading > p,
.board-copy p,
.consult-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.materials-section {
  background:
    linear-gradient(180deg, rgba(251, 248, 240, 0.94), rgba(255, 255, 255, 0.94)),
    repeating-linear-gradient(90deg, rgba(31, 83, 102, 0.07) 0 1px, transparent 1px 98px);
}

.materials-heading {
  align-items: end;
  margin-bottom: 34px;
}

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

.material-card {
  position: relative;
  display: grid;
  min-height: 286px;
  align-content: end;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--chalk);
  background: var(--harbor-dark);
  box-shadow: 0 12px 32px rgba(23, 32, 34, 0.08);
  isolation: isolate;
}

.material-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, rgba(18, 49, 61, 0.86), rgba(18, 49, 61, 0.48));
  content: "";
}

.material-card::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(18, 49, 61, 0.92));
  content: "";
}

.material-card.flooring::before {
  background:
    linear-gradient(135deg, rgba(18, 49, 61, 0.72), rgba(18, 49, 61, 0.42)),
    url("https://images.unsplash.com/photo-1724026502211-ff953e813194?auto=format&fit=crop&w=1200&q=82") center / cover;
}

.material-card.vinyl::before {
  background:
    linear-gradient(135deg, rgba(18, 49, 61, 0.78), rgba(18, 49, 61, 0.48)),
    linear-gradient(90deg, rgba(214, 161, 92, 0.40) 1px, transparent 1px),
    linear-gradient(135deg, #415865, #9aa9aa);
  background-size: auto, 34px auto, auto;
}

.material-card.tile::before {
  background:
    linear-gradient(135deg, rgba(18, 49, 61, 0.76), rgba(18, 49, 61, 0.36)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 2px, transparent 2px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.42) 2px, transparent 2px),
    #8da0a2;
  background-size: auto, 74px 74px, 74px 74px, auto;
}

.material-card.cabinets::before {
  background:
    linear-gradient(135deg, rgba(18, 49, 61, 0.72), rgba(18, 49, 61, 0.44)),
    url("https://images.unsplash.com/photo-1610276173132-c47d148ab626?auto=format&fit=crop&w=1200&q=82") center / cover;
}

.material-card span {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--maple);
  font-weight: 900;
}

.material-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.project-section {
  background: var(--paper);
}

.project-heading {
  align-items: end;
  margin-bottom: 34px;
}

.project-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.project-tab {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--harbor-dark);
  background: var(--chalk);
  cursor: pointer;
  font-weight: 900;
}

.project-tab:hover,
.project-tab:focus-visible,
.project-tab.active {
  color: var(--chalk);
  background: var(--harbor);
  outline: none;
}

.project-panel[hidden] {
  display: none;
}

.project-board {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.76fr);
  grid-auto-rows: minmax(240px, auto);
  gap: 14px;
  align-items: stretch;
}

.board-photo {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--harbor-dark);
  box-shadow: 0 16px 42px rgba(23, 32, 34, 0.13);
  isolation: isolate;
}

.board-photo.large {
  grid-row: span 2;
  min-height: 560px;
}

.board-photo img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 240ms ease;
}

.board-photo::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 38%, rgba(18, 49, 61, 0.78));
  content: "";
}

.board-photo:hover img {
  transform: scale(1.025);
}

.board-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  line-height: 1.25;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.48);
}

.board-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 7px solid var(--sage);
  border-radius: var(--radius);
  background: var(--chalk);
  box-shadow: 0 14px 34px rgba(23, 32, 34, 0.08);
}

.board-copy span {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.board-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.board-copy dl {
  display: grid;
  gap: 0;
  margin: 8px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.board-copy dl div {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.board-copy dl div:last-child {
  border-bottom: 0;
}

.board-copy dt {
  color: var(--ink-soft);
  font-weight: 900;
}

.board-copy dd {
  margin: 0;
  font-weight: 900;
}

.proof-heading {
  align-items: end;
  margin-top: 34px;
  margin-bottom: 18px;
}

.proof-heading h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.04;
}

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

.proof-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--chalk);
  box-shadow: 0 14px 34px rgba(23, 32, 34, 0.08);
}

.proof-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.proof-card-wide {
  grid-column: span 2;
}

.proof-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
}

.proof-card-featured img {
  height: 100%;
  min-height: 330px;
}

.proof-card-copy {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
}

.proof-card-copy span {
  color: var(--copper);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-card-copy h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2vw, 1.48rem);
  line-height: 1.12;
}

.proof-card-copy dl {
  display: grid;
  gap: 0;
  margin: 4px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.proof-card-copy dl div {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 10px;
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
}

.proof-card-copy dl div:last-child {
  border-bottom: 0;
}

.proof-card-copy dt {
  color: var(--ink-soft);
  font-weight: 900;
}

.proof-card-copy dd {
  margin: 0;
  font-weight: 900;
}

.process-section {
  color: var(--chalk);
  background:
    linear-gradient(135deg, rgba(111, 134, 118, 0.32), transparent 40%),
    var(--sage-dark);
}

.process-section .section-kicker {
  color: var(--maple);
}

.process-heading {
  max-width: 860px;
  margin-bottom: 36px;
}

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

.process-track article {
  min-height: 258px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.process-track span {
  display: inline-grid;
  min-width: 88px;
  min-height: 40px;
  place-items: center;
  margin-bottom: 42px;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--harbor-dark);
  background: var(--maple);
  font-weight: 900;
}

.process-track p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.reviews-section {
  color: var(--chalk);
  background:
    linear-gradient(rgba(18, 49, 61, 0.78), rgba(18, 49, 61, 0.90)),
    url("https://images.unsplash.com/photo-1724026502211-ff953e813194?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.reviews-section .section-kicker {
  color: var(--maple);
}

.reviews {
  display: grid;
  gap: 14px;
}

blockquote {
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
}

blockquote p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.03rem;
}

cite {
  color: var(--maple);
  font-style: normal;
  font-weight: 900;
}

.consult-section {
  background:
    linear-gradient(90deg, rgba(31, 83, 102, 0.08), transparent 48%),
    var(--mist);
}

.consult-copy p {
  margin-top: 22px;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.contact-lines a {
  padding-bottom: 4px;
  border-bottom: 2px solid var(--copper);
  color: var(--harbor-dark);
  font-weight: 900;
}

.hours-panel,
.consult-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--chalk);
  box-shadow: 0 14px 34px rgba(23, 32, 34, 0.08);
}

.hours-panel {
  display: grid;
  gap: 0;
  max-width: 520px;
  margin-top: 28px;
  overflow: hidden;
}

.hours-panel div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 62px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

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

.hours-panel span {
  color: var(--ink-soft);
  font-weight: 900;
}

.hours-panel strong {
  text-align: right;
}

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

.consult-form label:nth-of-type(5),
.consult-form .full-width,
.form-note {
  grid-column: 1 / -1;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  padding: 12px 13px;
}

.consult-form textarea {
  resize: vertical;
}

.quick-form input:focus,
.quick-form select:focus,
.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
  border-color: var(--harbor);
  outline: 3px solid rgba(31, 83, 102, 0.18);
}

.form-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.mobile-cta {
  position: fixed;
  z-index: 40;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(18, 49, 61, 0.96);
  box-shadow: 0 14px 40px rgba(23, 32, 34, 0.34);
}

.mobile-cta a {
  display: grid;
  min-height: 48px;
  place-items: center;
  color: var(--chalk);
  font-weight: 900;
}

.mobile-cta a:nth-child(2) {
  color: var(--harbor-dark);
  background: var(--maple);
}

.studio-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 28px max(20px, calc((100vw - 1160px) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.studio-footer p {
  margin: 0;
}

.studio-footer a {
  color: var(--chalk);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .studio-header {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "strip strip"
      "brand nav";
  }

  .studio-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    display: none;
    min-width: 232px;
    flex-direction: column;
    padding: 8px;
    color: var(--ink);
    background: rgba(251, 248, 240, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .studio-nav.open {
    display: flex;
  }

  .studio-nav a {
    padding: 12px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .hero-inner,
  .consult-strip,
  .materials-heading,
  .project-heading,
  .proof-heading,
  .review-grid,
  .consult-grid {
    grid-template-columns: 1fr;
  }

  .sample-board {
    max-width: 560px;
  }

  .project-tabs {
    justify-content: flex-start;
  }

  .quick-form {
    grid-template-columns: 1fr 180px;
  }

  .strip-button {
    grid-column: 1 / -1;
  }

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

  .proof-card-featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .proof-card-featured img {
    height: 320px;
    min-height: 0;
  }

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

  .board-photo.large {
    grid-row: auto;
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .container,
  .hero-inner,
  .metrics {
    width: min(100% - 28px, 1160px);
  }

  .studio-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .showroom-strip {
    margin-right: -14px;
    margin-left: -14px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .showroom-strip a {
    display: none;
  }

  .brand {
    max-width: 74vw;
  }

  .brand-copy {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 134px 0 56px;
  }

  .hero-image {
    object-position: center;
    filter: saturate(1.06) contrast(1.02) brightness(1.02);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(18, 49, 61, 0.76), rgba(18, 49, 61, 0.58) 38%, rgba(18, 49, 61, 0.84)),
      linear-gradient(90deg, rgba(18, 49, 61, 0.58), rgba(18, 49, 61, 0.22));
  }

  .hero-inner {
    gap: 22px;
  }

  .hero-mobile-photo {
    display: block;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: var(--harbor-dark);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  }

  .hero-mobile-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
  }

  .hero-mobile-photo figcaption {
    padding: 11px 12px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(18, 49, 61, 0.92);
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1.25;
  }

  h1 {
    font-size: clamp(2.85rem, 13vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.05rem, 9.6vw, 3.15rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .sample-board {
    padding: 18px;
  }

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

  .board-details div,
  .board-copy dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .consult-strip {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .quick-form,
  .metrics,
  .material-grid,
  .proof-grid,
  .process-track,
  .consult-form {
    grid-template-columns: 1fr;
  }

  .metrics div,
  .metrics div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .material-card,
  .process-track article {
    min-height: 0;
  }

  .material-card span,
  .process-track span {
    margin-bottom: 30px;
  }

  .section {
    padding: 68px 0;
  }

  section[id] {
    scroll-margin-top: 132px;
  }

  .board-copy {
    padding: 22px;
  }

  .board-photo,
  .board-photo.large {
    min-height: 300px;
  }

  .proof-heading {
    margin-top: 28px;
  }

  .proof-card-featured {
    grid-column: auto;
  }

  .proof-card-wide {
    grid-column: auto;
  }

  .proof-card img,
  .proof-card-featured img {
    height: 240px;
  }

  .proof-card-copy {
    padding: 16px;
  }

  .proof-card-copy dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .project-tabs {
    display: grid;
  }

  .project-tab {
    width: 100%;
  }

  .consult-form label:nth-of-type(5),
  .consult-form .full-width,
  .form-note {
    grid-column: auto;
  }

  .hours-panel div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hours-panel strong {
    text-align: left;
  }

  .studio-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 86px;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 430px) {
  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand {
    max-width: 72vw;
  }

  .trust-row span {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
