:root {
  --black: #11100f;
  --black-soft: #1b1917;
  --gold: #c99b42;
  --gold-light: #efd08d;
  --wood: #7a4b24;
  --white: #fff;
  --paper: #f7f5f1;
  --ink: #201e1b;
  --muted: #68635c;
  --line: rgba(28, 24, 20, .13);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: -5rem;
  padding: .7rem 1rem;
  background: white;
  color: black;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  width: 100%;
  color: white;
  background: linear-gradient(to bottom, rgba(0,0,0,.8), rgba(0,0,0,0));
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(17,16,15,.96); box-shadow: 0 8px 30px rgba(0,0,0,.18); }
.nav-shell {
  width: min(calc(100% - 2rem), var(--max));
  height: 88px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: .08em;
  font-size: 1.2rem;
}
.brand img { width: 58px; height: 58px; object-fit: contain; border-radius: 50%; }
.brand small { display: block; font-family: inherit; font-size: .56rem; letter-spacing: .3em; color: var(--gold-light); }
nav { display: flex; align-items: center; gap: 1.6rem; }
nav a { text-decoration: none; font-size: .9rem; font-weight: 700; letter-spacing: .04em; }
nav a:hover { color: var(--gold-light); }
.nav-cta { border: 1px solid var(--gold); padding: .65rem 1rem; }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--black);
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 55%; }
.hero-shade { background: linear-gradient(90deg, rgba(8,7,6,.9) 0%, rgba(8,7,6,.67) 44%, rgba(8,7,6,.15) 78%), linear-gradient(0deg, rgba(0,0,0,.55), transparent 50%); }
.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto 9vh;
  max-width: var(--max);
}
.hero-content > * { max-width: 760px; }
.eyebrow { margin: 0 0 .75rem; text-transform: uppercase; letter-spacing: .22em; font-size: .75rem; font-weight: 800; color: var(--gold-light); }
.eyebrow.dark { color: #8d681f; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.05; }
h1 { margin: 0; font-size: clamp(3rem, 6.8vw, 6.5rem); font-weight: 500; letter-spacing: -.035em; }
.hero-copy { margin: 1.5rem 0 2rem; font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: rgba(255,255,255,.86); }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: .75rem 1.25rem;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .77rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: #15110a; }
.button-gold:hover { background: var(--gold-light); }
.button-outline { border-color: rgba(255,255,255,.55); color: white; }
.button-outline:hover { background: white; color: black; }
.hero-mark { position: absolute; right: 5vw; bottom: 2vh; font: 700 clamp(5rem, 15vw, 13rem)/1 Georgia, serif; color: rgba(255,255,255,.07); }

.section { padding: clamp(5rem, 9vw, 8rem) max(1rem, calc((100% - var(--max)) / 2)); }
.section-heading { max-width: 660px; margin-bottom: 3rem; }
.section-heading h2, .about h2, .contact h2 { margin: 0 0 1rem; font-size: clamp(2.4rem, 4.5vw, 4.5rem); font-weight: 500; letter-spacing: -.03em; }
.section-heading > p:last-child, .about-copy > p, .contact-inner > p { color: var(--muted); font-size: 1.08rem; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { padding: 2rem; border-right: 1px solid var(--line); }
.service-card:first-child { padding-left: 0; }
.service-card:last-child { border: 0; }
.service-card.featured { background: var(--white); box-shadow: 0 18px 50px rgba(52,42,27,.08); }
.service-number { color: #9a762d; font-size: .78rem; font-weight: 800; }
.service-card h3 { margin: 1.3rem 0 .7rem; font-size: 1.65rem; font-weight: 500; }
.service-card p { margin: 0; color: var(--muted); }

.work { background: var(--black); color: white; }
.section-heading.light > p:last-child { color: rgba(255,255,255,.63); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: .8rem; }
.gallery-item { position: relative; margin: 0; overflow: hidden; background: #27231f; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.78)); }
.gallery-item figcaption { position: absolute; z-index: 2; left: 1.1rem; right: 1.1rem; bottom: .9rem; font-size: .84rem; font-weight: 700; letter-spacing: .04em; }
.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }

.carpentry-feature { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 680px; background: #ece8e0; }
.carpentry-image { min-height: 620px; overflow: hidden; }
.carpentry-image img { width: 100%; height: 100%; object-fit: cover; }
.carpentry-copy { align-self: center; padding: clamp(3rem, 7vw, 7rem); }
.carpentry-copy h2 { margin: 0 0 1rem; font-size: clamp(2.5rem, 4.5vw, 4.7rem); font-weight: 500; letter-spacing: -.035em; }
.carpentry-copy > p { color: var(--muted); font-size: 1.08rem; }

.about { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.about-logo-wrap { position: relative; padding: 10%; background: white; box-shadow: 0 24px 80px rgba(54,45,32,.12); }
.about-logo-wrap::before { content: ""; position: absolute; left: -14px; top: -14px; width: 35%; height: 35%; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.about-copy { max-width: 610px; }
.about-copy p { margin: 0 0 1rem; }
.text-link { display: inline-block; margin-top: 1rem; color: #76571c; text-decoration: none; font-weight: 800; border-bottom: 1px solid #b28a3a; }

.contact { position: relative; padding: clamp(5rem, 10vw, 9rem) 1rem; color: white; background: linear-gradient(115deg, #171513, #2a2118); text-align: center; }
.contact::before, .contact::after { content: ""; position: absolute; background: var(--gold); opacity: .55; }
.contact::before { width: 1px; height: 80px; top: 0; left: 50%; }
.contact::after { width: 70px; height: 1px; bottom: 2.5rem; left: calc(50% - 35px); }
.contact-inner { max-width: 760px; margin: auto; }
.contact-inner > p { color: rgba(255,255,255,.7); }
.contact-actions { justify-content: center; margin: 2rem 0 1.2rem; }
.contact-email { color: var(--gold-light); }
footer { padding: 1.4rem max(1rem, calc((100% - var(--max)) / 2)); display: flex; justify-content: space-between; gap: 1rem; background: #0d0c0b; color: rgba(255,255,255,.55); font-size: .78rem; }
footer p { margin: 0; }
footer a { text-decoration: none; color: var(--gold-light); }

@media (max-width: 820px) {
  .nav-shell { height: 72px; }
  .brand img { width: 48px; height: 48px; }
  .brand { font-size: 1rem; }
  .menu-button { display: block; border: 1px solid rgba(255,255,255,.45); background: transparent; color: white; padding: .55rem .75rem; font: inherit; font-weight: 700; }
  nav { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; padding: .75rem 1rem 1rem; background: rgba(17,16,15,.98); }
  nav.open { display: flex; }
  nav a { padding: .8rem; }
  .nav-cta { margin-top: .35rem; text-align: center; }
  .hero { min-height: 680px; height: 92svh; }
  .hero-shade { background: linear-gradient(0deg, rgba(8,7,6,.93) 0%, rgba(8,7,6,.57) 58%, rgba(8,7,6,.24)); }
  .hero-content { margin-bottom: 8vh; }
  .service-grid { grid-template-columns: 1fr; border: 0; }
  .service-card, .service-card:first-child { padding: 1.5rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card.featured { padding: 1.5rem; margin: 0 -1rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .gallery-wide { grid-column: span 2; }
  .carpentry-feature { grid-template-columns: 1fr; }
  .carpentry-image { min-height: 560px; }
  .about { grid-template-columns: 1fr; }
  .about-logo-wrap { max-width: 480px; margin: auto; }
}

@media (min-width: 821px) and (max-width: 1050px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 520px) {
  .brand span { display: none; }
  h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .hero-actions .button, .contact-actions .button { width: 100%; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 340px; }
  .gallery-wide { grid-column: span 1; }
  .gallery-tall { grid-row: span 1; }
  .carpentry-image { min-height: 440px; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
