:root {
  --ink: #15110e;
  --deep: #211915;
  --cream: #f8f4ee;
  --paper: #fffdf9;
  --stone: #e8ded3;
  --copper: #a96f45;
  --copper-light: #cf9468;
  --muted-dark: #6d625a;
  --muted-light: #c9bfb6;
  --line-dark: rgba(30, 22, 17, .14);
  --line-light: rgba(255, 255, 255, .15);
  --serif: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  height: 86px;
  max-width: 1400px;
  margin: auto;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper);
  border-bottom: 1px solid var(--line-dark);
  position: relative;
  z-index: 10;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid rgba(169, 111, 69, .45);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; text-transform: uppercase; }
.brand-copy strong { font-family: var(--serif); font-weight: 400; font-size: 20px; letter-spacing: .12em; }
.brand-copy small { margin-top: 5px; color: var(--muted-dark); font-size: 10px; letter-spacing: .19em; }
.nav { display: flex; align-items: center; gap: 30px; font-size: 14px; }
.nav a { color: #554a43; }
.nav a:hover { color: var(--copper); }
.nav .nav-cta { padding: 11px 18px; border: 1px solid var(--copper); color: #7f4d2f; }
.menu-button { display: none; background: none; border: 1px solid var(--line-dark); color: var(--ink); padding: 8px 12px; }

.hero {
  max-width: 1400px;
  min-height: 690px;
  margin: auto;
  padding: 88px 5vw 96px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 7vw;
  align-items: center;
  background: linear-gradient(125deg, #17120f 0%, #271d17 75%, #35251c 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  left: -10%;
  top: 15%;
  width: 55%;
  height: 70%;
  background: radial-gradient(circle, rgba(207, 148, 104, .16), transparent 68%);
  pointer-events: none;
}
.eyebrow { margin: 0 0 15px; color: var(--copper); font-size: 12px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.hero .eyebrow { color: #e1a77b; }
.hero h1, .section h2, .quote-section h2 { font-family: var(--serif); font-weight: 400; line-height: 1.04; margin: 0; }
.hero h1 { max-width: 680px; font-size: clamp(3.4rem, 6.5vw, 6.4rem); letter-spacing: -.035em; }
.hero-lede { max-width: 620px; margin: 28px 0 34px; color: #d6cbc2; font-size: 18px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 24px; border: 1px solid transparent; cursor: pointer; font-weight: 600; }
.button-primary { background: var(--copper-light); color: #17100c; }
.button-primary:hover { background: #e2ac83; }
.button-secondary { border-color: var(--line-light); color: var(--cream); }
.trust-list { display: flex; gap: 24px; flex-wrap: wrap; padding: 0; margin: 32px 0 0; list-style: none; color: var(--muted-light); font-size: 13px; }
.trust-list li::before { content: ""; display: inline-block; width: 5px; height: 5px; background: var(--copper-light); transform: rotate(45deg); margin: 0 9px 2px 0; }
.hero-art { position: relative; }
.stone-frame {
  padding: 10px;
  background: #f2e8df;
  border: 1px solid rgba(225, 167, 123, .4);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
  transform: rotate(1deg);
  position: relative;
}
.stone-frame > img { width: 100%; display: block; aspect-ratio: 1.16 / 1; object-fit: cover; }
.image-caption { position: absolute; left: 22px; bottom: 20px; padding: 7px 11px; background: rgba(18, 14, 12, .76); color: #fff; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.hero-badge { position: absolute; left: -30px; bottom: -34px; width: 110px; height: 110px; object-fit: cover; border: 5px solid var(--cream); box-shadow: 0 18px 45px rgba(0, 0, 0, .35); }
.material-chip { position: absolute; right: -18px; bottom: -24px; background: var(--paper); color: #2a211b; padding: 12px 18px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.section { max-width: 1400px; margin: auto; padding: 110px 5vw; }
.section-heading { display: grid; grid-template-columns: 1fr 1.5fr; column-gap: 8vw; align-items: end; margin-bottom: 54px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .quote-section h2 { font-size: clamp(2.6rem, 5vw, 4.7rem); }
.section-heading > p:last-child { max-width: 520px; color: var(--muted-dark); margin: 0; }
.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.service-grid article { padding: 34px 28px 40px; border-right: 1px solid var(--line-dark); }
.service-grid article:last-child { border: 0; }
.service-grid span { color: var(--copper); font-size: 12px; }
.service-grid h3 { font-family: var(--serif); font-size: 27px; font-weight: 400; line-height: 1.2; margin: 36px 0 16px; }
.service-grid p { color: var(--muted-dark); font-size: 15px; margin: 0; }

.work { padding-top: 55px; padding-bottom: 55px; }
.work-panel { padding: 72px; display: grid; grid-template-columns: 1.35fr .65fr; gap: 8vw; align-items: end; background: #e9d6c5; color: #171310; }
.work-panel h2 { font-size: clamp(2.5rem, 5vw, 5rem); }
.work-panel > p { margin: 0; color: #65584f; }
.material-band { display: grid; grid-template-columns: 1fr 1.2fr .8fr; height: 16px; }
.material-band span:nth-child(1) { background: #a66f49; }
.material-band span:nth-child(2) { background: #332a25; }
.material-band span:nth-child(3) { background: #d9b99d; }

.process { background: #f4ece3; }
.section-heading.compact { display: block; }
.section-heading.compact h2 { max-width: 720px; }
.steps { list-style: none; padding: 0; margin: 0; counter-reset: steps; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.steps li { counter-increment: steps; padding-top: 30px; border-top: 1px solid var(--line-dark); }
.steps li::before { content: "0" counter(steps); display: block; color: var(--copper); font-size: 13px; margin-bottom: 32px; }
.steps strong { font-family: var(--serif); font-weight: 400; font-size: 25px; }
.steps p { color: var(--muted-dark); margin: 12px 0 0; }

.quote-section { max-width: 1400px; margin: 0 auto; padding: 100px 5vw; background: var(--paper); display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; border-top: 1px solid var(--line-dark); }
.quote-intro > p:not(.eyebrow) { color: var(--muted-dark); max-width: 430px; }
.form-note { font-size: 13px; }
.quote-form { display: grid; gap: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote-form label { display: grid; gap: 7px; color: #4f463f; font-size: 14px; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid #cbbeb2; background: #fff; color: var(--ink); padding: 13px 14px; border-radius: 0; outline: none; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 2px rgba(169, 111, 69, .13); }
.quote-form textarea { resize: vertical; }
.submit-button { justify-self: start; margin-top: 5px; background: var(--copper); color: white; }
.form-status { min-height: 26px; margin: 0; color: #7f4d2f; }

footer { max-width: 1400px; margin: auto; padding: 55px 5vw 45px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 28px; align-items: center; background: var(--deep); color: var(--muted-light); font-size: 13px; }
footer .brand-copy strong { color: var(--cream); }
footer .brand-copy small { color: var(--muted-light); }
footer .copyright { text-align: right; }
footer .copyright a { color: #d69b6f; }

@media (max-width: 980px) {
  .nav { display: none; position: absolute; top: 76px; left: 5vw; right: 5vw; background: var(--paper); padding: 24px; flex-direction: column; align-items: stretch; box-shadow: 0 22px 40px rgba(0,0,0,.12); }
  .nav.open { display: flex; }
  .menu-button { display: block; }
  .hero { grid-template-columns: 1fr; padding-top: 65px; }
  .hero-art { max-width: 720px; margin: 0 auto; width: 100%; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-grid article:nth-child(2) { border-right: 0; }
  .service-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .work-panel { grid-template-columns: 1fr; padding: 50px; }
  .quote-section { grid-template-columns: 1fr; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading h2 { margin-bottom: 24px; }
  footer { grid-template-columns: 1fr 1fr; }
  footer .copyright { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 640px) {
  .site-header { height: 76px; }
  .brand-logo { width: 42px; height: 42px; }
  .brand-copy strong { font-size: 17px; }
  .hero { min-height: 0; padding-bottom: 85px; }
  .hero h1 { font-size: 3.35rem; }
  .hero-lede { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; gap: 8px; }
  .hero-badge { left: 12px; bottom: -42px; width: 88px; height: 88px; }
  .material-chip { right: 0; bottom: -32px; font-size: 10px; }
  .section { padding-top: 80px; padding-bottom: 80px; }
  .service-grid, .steps { grid-template-columns: 1fr; }
  .service-grid article { border-right: 0; border-bottom: 1px solid var(--line-dark) !important; }
  .service-grid article:last-child { border-bottom: 0 !important; }
  .work-panel { padding: 38px 28px; }
  .field-row { grid-template-columns: 1fr; }
  .quote-section { padding-top: 75px; padding-bottom: 75px; }
  footer { grid-template-columns: 1fr; }
}
