:root {
  --paper: #f6f4ef;
  --paper-strong: #fffdfa;
  --ink: #161513;
  --muted: #69645d;
  --line: #d9d2c6;
  --graphite: #1e1f1c;
  --graphite-2: #2d2e2a;
  --warm: #b98954;
  --warm-dark: #8b653c;
  --teal: #2d6f72;
  --teal-dark: #1d4e50;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(20, 18, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

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

img,
svg {
  display: block;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 66px;
  padding: 14px 32px;
  color: var(--white);
  background: rgba(12, 12, 10, 0.68);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

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

.brand span {
  display: grid;
  gap: 2px;
}

.brand-logo {
  width: 38px;
  height: 38px;
  max-width: 38px;
  max-height: 38px;
  flex: 0 0 38px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-weight: 700;
  text-transform: lowercase;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 15px;
  font-weight: 820;
  line-height: 1;
}

.brand small {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.15;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a:hover,
.header-action:hover {
  color: var(--white);
}

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  white-space: nowrap;
}

.header-action svg,
.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 74svh;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 6, 5, 0.86) 0%, rgba(6, 6, 5, 0.62) 36%, rgba(6, 6, 5, 0.16) 78%),
    linear-gradient(0deg, rgba(6, 6, 5, 0.28), rgba(6, 6, 5, 0.1));
}

.hero-content {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 128px 0 28px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--warm);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 54px;
  line-height: 1.02;
  font-weight: 760;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 19px;
  line-height: 1.58;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.14);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(680px, 100%);
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-facts div {
  padding: 20px 24px 0 0;
}

.hero-facts dt {
  margin: 0;
  color: var(--white);
  font-size: 30px;
  font-weight: 760;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.proof-strip {
  background: var(--graphite);
  color: var(--white);
}

.proof-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-inner span {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-dark,
.section-soft {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: max(24px, calc((100% - 1180px) / 2));
}

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

.section-soft {
  background: var(--paper-strong);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}

.section h2,
.visual-copy h2,
.detail-copy h2,
.request-copy h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
}

.section-head p,
.intro-copy p,
.visual-copy p,
.detail-copy p,
.request-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.66);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 56px;
  align-items: start;
}

.intro-copy {
  padding-top: 6px;
}

.inline-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--teal-dark);
  font-weight: 750;
  border-bottom: 1px solid currentColor;
}

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

.service-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.service-number {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--warm);
  font-size: 13px;
  font-weight: 800;
}

.service-card h3,
.timeline-item h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.16;
}

.service-card p,
.timeline-item p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.58;
}

.work-section {
  padding-bottom: 86px;
}

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

.work-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 14px 34px rgba(20, 18, 15, 0.08);
}

.work-card img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
}

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

.work-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--warm-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.work-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

.portfolio-note {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.portfolio-note p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.visual-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  min-height: 640px;
  background: var(--paper-strong);
}

.visual-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(24px, calc((100vw - 1180px) / 2)) 80px 64px;
}

.visual-copy h2 {
  max-width: 520px;
}

.visual-copy p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 22px;
}

.designer-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

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

.signal-grid article,
.faq-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.signal-grid span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--warm-dark);
  font-size: 13px;
  font-weight: 800;
}

.signal-grid h3,
.faq-grid h3 {
  margin: 0;
  color: var(--graphite);
  font-size: 22px;
  line-height: 1.16;
}

.signal-grid p,
.faq-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.faq-section {
  padding-bottom: 52px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.timeline-item {
  min-height: 270px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline-item span {
  display: inline-block;
  margin-bottom: 70px;
  color: var(--warm-dark);
  font-size: 13px;
  font-weight: 800;
}

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

.detail-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 100px;
  gap: 64px;
  align-items: center;
}

.detail-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-image img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

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

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

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--graphite-2);
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

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

.showroom-link {
  display: grid;
  gap: 18px;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.showroom-link:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 111, 114, 0.48);
  box-shadow: 0 18px 36px rgba(20, 18, 15, 0.08);
}

.showroom-link.muted-link {
  background: #f1eee7;
}

.showroom-link span {
  color: var(--warm-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

.showroom-link strong {
  max-width: 260px;
  font-size: 24px;
  line-height: 1.18;
}

.showroom-link small {
  align-self: end;
  color: var(--teal-dark);
  font-weight: 750;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 68px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0;
}

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

.request-copy p {
  max-width: 560px;
  margin-top: 22px;
}

.request-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.request-contacts a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--teal-dark);
  font-weight: 800;
  background: var(--paper-strong);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  background: var(--graphite);
  box-shadow: var(--shadow);
}

.lead-form label,
.lead-form legend {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  padding: 0 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--warm);
}

.lead-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.lead-form legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.check-option {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.84) !important;
  font-weight: 650 !important;
}

.check-option input {
  width: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--teal);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 26px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--teal-dark);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    padding-inline: 20px;
  }

  .desktop-nav {
    display: none;
  }

  .hero h1 {
    font-size: 44px;
  }

  .section-head,
  .intro-grid,
  .visual-band,
  .detail-section,
  .request-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .work-grid,
  .signal-grid,
  .faq-grid,
  .timeline,
  .showroom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-band {
    min-height: 0;
  }

  .visual-band img {
    aspect-ratio: 1.45;
  }

  .visual-copy {
    padding: 54px 24px 64px;
  }

  .detail-section {
    gap: 38px;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    height: 62px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
    max-width: 34px;
    max-height: 34px;
    flex-basis: 34px;
  }

  .header-action {
    width: 40px;
    padding: 0;
    font-size: 0;
  }

  .header-action svg {
    width: 20px;
    height: 20px;
  }

  .hero {
    min-height: 72svh;
  }

  .hero-content {
    width: min(100% - 32px, 1180px);
    padding-top: 104px;
    padding-bottom: 18px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.06;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
  }

  .hero-facts div {
    padding-top: 12px;
    padding-right: 10px;
  }

  .hero-facts dt {
    font-size: 24px;
  }

  .hero-facts dd {
    font-size: 11px;
    line-height: 1.25;
  }

  .proof-inner,
  .section,
  .detail-section,
  .request-section,
  .site-footer {
    width: min(100% - 32px, 1180px);
  }

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

  .proof-inner span {
    min-height: 66px;
    padding: 0 14px;
    font-size: 14px;
  }

  .section,
  .section-dark,
  .section-soft,
  .request-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section h2,
  .visual-copy h2,
  .detail-copy h2,
  .request-copy h2 {
    font-size: 31px;
  }

  .section-head {
    gap: 18px;
    margin-bottom: 28px;
  }

  .service-grid,
  .work-grid,
  .signal-grid,
  .faq-grid,
  .timeline,
  .showroom-grid,
  .lead-form fieldset {
    grid-template-columns: 1fr;
  }

  .service-card,
  .timeline-item,
  .signal-grid article,
  .faq-grid article {
    min-height: 0;
  }

  .portfolio-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-number,
  .timeline-item span,
  .signal-grid span {
    margin-bottom: 34px;
  }

  .detail-section {
    padding-bottom: 68px;
  }

  .lead-form {
    padding: 20px;
  }

  .site-footer {
    flex-direction: column;
  }
}
