:root {
  --ink: #1e2722;
  --muted: #667067;
  --paper: #fbf7ef;
  --linen: #eee5d7;
  --green: #244838;
  --sage: #8fa18a;
  --coral: #c96f5b;
  --walnut: #6f4c35;
  --brass: #b89758;
  --white: #fffdf8;
  --shadow: 0 20px 60px rgba(22, 31, 25, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 247, 239, 0.94);
  box-shadow: 0 8px 30px rgba(30, 39, 34, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Fraunces, Georgia, serif;
  font-weight: 650;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.02rem;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  font-size: 0.73rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  border-bottom-color: currentColor;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 128px clamp(20px, 5vw, 72px) 86px;
  overflow: hidden;
  color: var(--white);
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 22, 16, 0.82) 0%, rgba(12, 22, 16, 0.62) 38%, rgba(12, 22, 16, 0.2) 76%),
    linear-gradient(0deg, rgba(30, 39, 34, 0.38), transparent 34%);
}

.hero-content {
  position: relative;
  width: min(680px, 100%);
  padding-top: 20px;
}

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

.hero .eyebrow {
  color: #f2b093;
}

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

h1,
h2,
h3,
blockquote {
  font-family: Fraunces, Georgia, serif;
  line-height: 1.05;
}

h1 {
  max-width: 11ch;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 9vw, 7.8rem);
  font-weight: 650;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 650;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-weight: 800;
}

.button.primary {
  border-color: var(--coral);
  color: var(--white);
  background: var(--coral);
}

.button.ghost {
  color: var(--white);
}

.section,
.band {
  padding: clamp(70px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.band {
  background: var(--linen);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.65fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.intro-grid h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.4rem);
}

.intro-grid p:last-child {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 620px;
}

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

.service-card {
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(36, 72, 56, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(30, 39, 34, 0.05);
}

.service-number {
  display: inline-block;
  margin-bottom: 68px;
  color: var(--coral);
  font-weight: 800;
}

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

.gallery {
  background: var(--green);
  color: var(--white);
}

.gallery .section-kicker {
  color: #f2b093;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 0.9fr;
  grid-auto-rows: 240px;
  gap: 16px;
}

.work-item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: 8px;
  isolation: isolate;
}

.work-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.34;
  background-image:
    linear-gradient(45deg, currentColor 25%, transparent 25%),
    linear-gradient(-45deg, currentColor 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, currentColor 75%),
    linear-gradient(-45deg, transparent 75%, currentColor 75%);
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
  background-size: 20px 20px;
}

.work-item span {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.work-item h3 {
  max-width: 420px;
  margin: 8px 0 0;
}

.work-item.tall {
  grid-row: span 2;
}

.coral {
  background: #a9574d;
}

.green {
  background: #18382b;
}

.linen {
  background: #d8c8ad;
  color: var(--ink);
}

.walnut {
  background: var(--walnut);
}

.fabric-sample,
.stripe-sample,
.chair-silhouette,
.tack-line {
  position: absolute;
  top: 24px;
  right: 24px;
  left: 24px;
}

.fabric-sample {
  height: 88px;
  border-radius: 4px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.15) 0 2px, transparent 2px 9px),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.12) 0 1px, transparent 1px 8px);
}

.stripe-sample {
  height: 92px;
  border: 1px solid rgba(30, 39, 34, 0.18);
  border-radius: 4px;
  background: repeating-linear-gradient(90deg, #eee3d2 0 20px, #8fa18a 20px 26px, #eee3d2 26px 46px, #c96f5b 46px 50px);
}

.chair-silhouette {
  width: min(220px, 62%);
  height: 270px;
  left: 50%;
  transform: translateX(-50%);
  border: 18px solid rgba(255, 253, 248, 0.75);
  border-bottom: 70px solid rgba(255, 253, 248, 0.75);
  border-radius: 110px 110px 42px 42px;
}

.chair-silhouette::before,
.chair-silhouette::after {
  content: "";
  position: absolute;
  bottom: -132px;
  width: 16px;
  height: 78px;
  background: rgba(255, 253, 248, 0.75);
}

.chair-silhouette::before {
  left: 24px;
}

.chair-silhouette::after {
  right: 24px;
}

.tack-line {
  display: flex;
  gap: 12px;
}

.tack-line::before {
  content: "";
  width: 100%;
  height: 24px;
  background: radial-gradient(circle, var(--brass) 0 5px, transparent 6px) 0 0 / 28px 24px repeat-x;
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(28px, 6vw, 88px);
  max-width: 1160px;
  margin: 0 auto;
}

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

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 112px;
  padding: 22px 24px 22px 84px;
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(30, 39, 34, 0.06);
  counter-increment: step;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 23px;
  color: var(--coral);
  font-weight: 800;
}

.steps span {
  display: block;
  margin-bottom: 4px;
  font-weight: 800;
}

.testimonial {
  text-align: center;
}

.testimonial blockquote {
  max-width: 930px;
  margin: 0 auto 18px;
  font-size: clamp(2rem, 4vw, 4.4rem);
}

.testimonial p {
  color: var(--muted);
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
}

.faq-grid article {
  padding: 26px;
  border: 1px solid rgba(36, 72, 56, 0.14);
  border-radius: 8px;
  background: var(--white);
}

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

.contact {
  padding-top: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(28px, 6vw, 76px);
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.contact-panel p,
.contact-panel address {
  color: rgba(255, 253, 248, 0.72);
}

.contact-panel address {
  font-style: normal;
}

.contact-actions {
  display: grid;
  align-content: center;
  gap: 16px;
}

.contact-link {
  display: block;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.24);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: var(--paper);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .service-grid,
  .intro-grid,
  .process-layout,
  .faq-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    min-height: 260px;
  }

  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: none;
    padding: 18px;
    border-radius: 8px;
    color: var(--ink);
    background: rgba(251, 247, 239, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 10px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 112px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(12, 22, 16, 0.82), rgba(12, 22, 16, 0.48));
  }

  h1 {
    max-width: 9.5ch;
  }

  .service-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-auto-rows: 230px;
  }

  .work-item.tall {
    grid-row: span 1;
  }

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

@media (max-width: 460px) {
  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

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

  h1 {
    font-size: 3rem;
  }

  .service-card,
  .work-item {
    padding: 22px;
  }

  .steps li {
    padding-left: 64px;
  }

  .steps li::before {
    left: 18px;
  }
}
