:root {
  --ink: #211713;
  --brown: #321c14;
  --brown-soft: #563326;
  --wood: #b87d49;
  --tan: #d9b48c;
  --cream: #f0e9e0;
  --paper: #faf8f4;
  --white: #fff;
  --muted: #71665f;
  --line: rgba(50, 28, 20, .14);
  --shadow: 0 24px 70px rgba(42, 24, 16, .16);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 30;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-fill { fill: currentColor; stroke: none; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--white);
  color: var(--brown);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--tan);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 244, .94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  max-width: 1480px;
  height: 88px;
  margin: auto;
  padding: 0 clamp(24px, 4vw, 70px);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 60px; height: 58px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; line-height: 1.05; }
.brand strong, .footer-logo strong {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: .04em;
}
.brand small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

nav { display: flex; justify-content: center; gap: clamp(22px, 3vw, 48px); }
nav a { position: relative; color: #5e544d; font-size: 13px; font-weight: 700; }
nav a::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--wood);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
nav a:hover::after, nav a:focus-visible::after { transform: scaleX(1); }

.header-call {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  background: var(--brown);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}
.header-call svg { width: 16px; height: 16px; }

.hero {
  position: relative;
  min-height: min(860px, calc(100vh - 88px));
  overflow: hidden;
  background: var(--brown);
  color: var(--white);
}

.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 54%; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(23, 12, 7, .88) 0%, rgba(23, 12, 7, .61) 37%, rgba(23, 12, 7, .13) 72%),
    linear-gradient(0deg, rgba(23, 12, 7, .5) 0%, transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: clamp(120px, 14vh, 180px) clamp(28px, 7vw, 120px) 180px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 24px;
  color: var(--brown-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow > span { width: 34px; height: 2px; background: var(--wood); }
.eyebrow-on-dark { color: var(--tan); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  margin-bottom: 0;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.045em;
}
h1 {
  max-width: 860px;
  color: var(--white);
  font-size: clamp(55px, 7.1vw, 112px);
  line-height: .91;
}
h1 em { color: var(--tan); font-weight: 400; }
.hero-content > p:not(.eyebrow) {
  max-width: 650px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, .83);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 19px; height: 19px; }
.button-light { background: var(--white); color: var(--brown); }
.button-ghost { border-color: rgba(255, 255, 255, .5); color: var(--white); }
.button-ghost:hover { background: rgba(255, 255, 255, .12); }
.button-tan { background: var(--tan); color: var(--brown); }
.button-dark { background: var(--brown); color: var(--white); }

.hero-meta {
  position: absolute;
  z-index: 1;
  right: clamp(30px, 5vw, 90px);
  bottom: 40px;
  display: flex;
  gap: clamp(22px, 3vw, 54px);
  border-top: 1px solid rgba(255, 255, 255, .35);
  padding-top: 18px;
}
.hero-meta span { display: flex; flex-direction: column; gap: 4px; }
.hero-meta strong { font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 400; }
.hero-meta small { color: rgba(255, 255, 255, .65); font-size: 11px; }
.hero-scroll {
  position: absolute;
  z-index: 1;
  bottom: 38px;
  left: clamp(28px, 7vw, 120px);
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-scroll span { font-size: 19px; font-weight: 400; }

.section { max-width: 1440px; margin: auto; padding: clamp(85px, 10vw, 150px) clamp(25px, 6vw, 90px); }
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 10vw, 170px); }
.intro h2, .section-heading h2, .portfolio-heading h2, .process h2 {
  font-size: clamp(44px, 5vw, 78px);
  line-height: .98;
}
.intro-copy { padding-top: 30px; }
.intro-copy p, .section-heading > p, .portfolio-heading > p, .process-heading > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.intro-copy .lead { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(24px, 2.2vw, 34px); line-height: 1.34; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; border-bottom: 1px solid var(--brown); padding-bottom: 7px; color: var(--brown); font-size: 13px; font-weight: 800; }
.text-link svg { width: 18px; height: 18px; }

.services { padding-top: 30px; }
.section-heading, .portfolio-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}
.section-heading > p, .portfolio-heading > p { max-width: 470px; margin-bottom: 4px; }
.category-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.category-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.category-wide { grid-column: 1 / -1; min-height: 560px; }
.category-card img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.category-wide img { object-position: center 62%; }
.category-card:hover img { transform: scale(1.035); }
.category-overlay { position: absolute; z-index: -1; inset: 0; background: linear-gradient(0deg, rgba(27, 14, 8, .8), transparent 68%); }
.category-content { position: absolute; right: 32px; bottom: 30px; left: 32px; display: grid; grid-template-columns: 40px auto; align-items: end; }
.category-content small { grid-row: 1 / 3; align-self: start; color: var(--tan); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.category-content strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 3vw, 48px); font-weight: 400; }
.category-content em { margin-top: 7px; color: rgba(255,255,255,.7); font-size: 12px; font-style: normal; }
.category-arrow { position: absolute; top: 25px; right: 25px; display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-size: 20px; }
.service-strip { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 34px 8px 0; color: var(--brown); font-family: Georgia, "Times New Roman", serif; font-size: clamp(18px, 2vw, 28px); }
.service-strip i { width: 5px; height: 5px; border-radius: 50%; background: var(--wood); }

.feature { display: grid; grid-template-columns: 1.12fr .88fr; max-width: 1600px; margin: 20px auto 0; background: var(--brown); }
.feature-image { min-height: 720px; overflow: hidden; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 7vw, 115px); color: var(--white); }
.feature-copy h2, .contact h2 { color: var(--white); font-size: clamp(48px, 5.4vw, 84px); line-height: .95; }
.feature-copy > p:not(.eyebrow) { margin: 28px 0; color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.75; }
.feature-copy ul { margin: 0 0 38px; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.feature-copy li { display: grid; grid-template-columns: 42px 1fr; border-bottom: 1px solid rgba(255,255,255,.18); padding: 17px 0; font-size: 14px; }
.feature-copy li span { color: var(--tan); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.feature-copy .button { align-self: flex-start; }

.process { padding-bottom: 95px; }
.process-heading { margin-bottom: 50px; }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { min-height: 260px; padding: 28px 32px 35px 0; border-right: 1px solid var(--line); }
.process-list li + li { padding-left: 32px; }
.process-list li:last-child { border-right: 0; }
.process-list > li > span { display: block; margin-bottom: 65px; color: var(--wood); font-size: 11px; font-weight: 850; letter-spacing: .15em; }
.process-list h3 { margin-bottom: 13px; color: var(--brown); font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 400; }
.process-list p { max-width: 330px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.portfolio { max-width: 1600px; background: var(--cream); }
.filters { display: flex; flex-wrap: wrap; gap: 9px; margin: -18px 0 32px; }
.filter { min-height: 42px; padding: 0 17px; border: 1px solid rgba(50,28,20,.25); background: transparent; color: var(--brown); cursor: pointer; font-size: 12px; font-weight: 800; }
.filter.active, .filter:hover { border-color: var(--brown); background: var(--brown); color: var(--white); }
.gallery-grid { display: grid; grid-auto-flow: dense; grid-auto-rows: 245px; grid-template-columns: repeat(12, 1fr); gap: 13px; }
.gallery-item {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  min-width: 0;
  padding: 0;
  border: 0;
  background: #d8cdc1;
  color: var(--white);
  cursor: zoom-in;
  text-align: left;
}
.gallery-item[hidden] { display: none !important; }
.gallery-wide { grid-column: span 8; }
.gallery-feature { grid-column: span 8; grid-row: span 2; }
.gallery-tall { grid-column: span 4; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item::after { position: absolute; inset: 35% 0 0; content: ""; background: linear-gradient(0deg, rgba(20,10,6,.8), transparent); }
.gallery-item > span { position: absolute; z-index: 1; right: 20px; bottom: 18px; left: 20px; font-family: Georgia, "Times New Roman", serif; font-size: 21px; }
.gallery-item > span small { display: block; margin-bottom: 6px; color: var(--tan); font-family: Inter, "Helvetica Neue", Arial, sans-serif; font-size: 9px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }

.cta-band { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(22px, 5vw, 75px); max-width: 1600px; margin: 0 auto; padding: clamp(50px, 6vw, 90px) clamp(25px, 6vw, 90px); background: var(--tan); }
.cta-band p { margin: 0; color: var(--brown-soft); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.cta-band h2 { color: var(--brown); font-size: clamp(36px, 4vw, 65px); }

.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 170px); max-width: 1600px; background: var(--brown); color: var(--white); }
.contact-intro > p:not(.eyebrow) { max-width: 480px; margin-top: 28px; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.75; }
.contact-list { border-top: 1px solid rgba(255,255,255,.19); }
.contact-list > a { display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 18px; min-height: 114px; border-bottom: 1px solid rgba(255,255,255,.19); }
.contact-icon { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--tan); }
.contact-icon svg { width: 20px; height: 20px; }
.contact-list a > span:nth-child(2) { display: flex; flex-direction: column; gap: 7px; }
.contact-list small { color: rgba(255,255,255,.54); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.contact-list strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(21px, 2.2vw, 32px); font-weight: 400; }
.contact-arrow { color: var(--tan); font-size: 21px; transition: transform .18s ease; }
.contact-list a:hover .contact-arrow { transform: translate(3px,-3px); }

footer { max-width: 1600px; margin: 0 auto; background: #25130d; color: rgba(255,255,255,.72); }
.footer-main { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 35px; padding: 66px clamp(25px, 6vw, 90px); }
.footer-logo { display: flex; align-items: center; gap: 14px; }
.footer-logo img { width: 70px; height: 60px; object-fit: contain; filter: brightness(0) invert(1); opacity: .86; }
.footer-logo span { display: flex; flex-direction: column; gap: 6px; }
.footer-logo strong { color: var(--white); font-size: 24px; }
.footer-logo small { color: var(--tan); }
.footer-main > div { display: flex; flex-direction: column; gap: 7px; font-size: 13px; line-height: 1.6; }
.footer-main > div > small { margin-bottom: 6px; color: var(--tan); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.legal-panels { display: flex; gap: 25px; padding: 0 clamp(25px, 6vw, 90px) 35px; }
.legal-panels details { flex: 1; border-top: 1px solid rgba(255,255,255,.12); padding-top: 14px; }
.legal-panels summary { cursor: pointer; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.legal-panels details div { max-width: 650px; padding-top: 14px; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.65; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.12); padding: 19px clamp(25px, 6vw, 90px); color: rgba(255,255,255,.42); font-size: 10px; }

.mobile-call { display: none; }
.lightbox { width: min(94vw, 1300px); max-width: none; padding: 0; border: 0; background: transparent; color: var(--white); overflow: visible; }
.lightbox::backdrop { background: rgba(16, 9, 6, .92); backdrop-filter: blur(7px); }
.lightbox-inner { display: flex; flex-direction: column; align-items: center; }
.lightbox img { max-width: 94vw; max-height: 82vh; object-fit: contain; box-shadow: var(--shadow); }
.lightbox p { margin: 13px 0 0; color: rgba(255,255,255,.8); font-size: 13px; }
.lightbox-close { position: absolute; z-index: 1; top: -44px; right: 0; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: transparent; color: var(--white); cursor: pointer; font-size: 27px; line-height: 1; }

@media (max-width: 1040px) {
  nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .hero { min-height: 760px; }
  .hero-content { padding-top: 120px; }
  .hero-meta { display: none; }
  .feature { grid-template-columns: 1fr; }
  .feature-image { min-height: 560px; }
  .feature-copy { max-width: 760px; }
  .gallery-grid { grid-auto-rows: 230px; }
  .gallery-item { grid-column: span 6; }
  .gallery-wide, .gallery-feature { grid-column: span 12; }
  .gallery-tall { grid-column: span 6; }
  .cta-band { grid-template-columns: 1fr auto; }
  .cta-band p { grid-column: 1 / -1; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 2; }
}

@media (max-width: 740px) {
  html { scroll-padding-top: 73px; }
  .header-inner { height: 73px; padding: 0 18px; }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: 16px; }
  .brand small { font-size: 8px; }
  .header-call { width: 43px; height: 43px; justify-content: center; padding: 0; border-radius: 50%; }
  .header-call span { display: none; }
  .hero { min-height: calc(100svh - 73px); }
  .hero-image { object-position: 64% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(23,12,7,.84), rgba(23,12,7,.32)), linear-gradient(0deg, rgba(23,12,7,.67), transparent 60%); }
  .hero-content { padding: clamp(95px, 16vh, 140px) 22px 120px; }
  .hero-content > p:not(.eyebrow) { margin-top: 24px; font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 310px; }
  .button { width: 100%; }
  .hero-scroll { bottom: 26px; left: 22px; }
  .section { padding: 78px 20px; }
  .intro, .section-heading, .portfolio-heading, .contact { grid-template-columns: 1fr; gap: 34px; }
  .intro-copy { padding-top: 0; }
  .services { padding-top: 10px; }
  .section-heading, .portfolio-heading { margin-bottom: 38px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-wide { grid-column: auto; min-height: 420px; }
  .category-card { min-height: 370px; }
  .category-content { right: 20px; bottom: 22px; left: 20px; grid-template-columns: 32px auto; }
  .category-content strong { font-size: 31px; }
  .category-arrow { top: 18px; right: 18px; }
  .service-strip { flex-wrap: wrap; justify-content: center; font-size: 18px; }
  .feature { margin-top: 0; }
  .feature-image { min-height: 390px; }
  .feature-copy { padding: 70px 22px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li, .process-list li + li { min-height: 0; padding: 25px 0 30px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-list > li > span { margin-bottom: 28px; }
  .gallery-grid { grid-auto-rows: 265px; grid-template-columns: 1fr; }
  .gallery-item, .gallery-wide, .gallery-feature, .gallery-tall { grid-column: auto; grid-row: auto; }
  .gallery-feature { height: 330px; }
  .gallery-tall { height: 410px; }
  .filters { flex-wrap: nowrap; margin-right: -20px; overflow-x: auto; padding-right: 20px; padding-bottom: 7px; }
  .filter { flex: 0 0 auto; }
  .cta-band { grid-template-columns: 1fr; gap: 20px; }
  .cta-band .button { max-width: 270px; }
  .contact { padding-bottom: 90px; }
  .contact-list > a { grid-template-columns: 44px 1fr auto; gap: 13px; }
  .contact-list strong { overflow-wrap: anywhere; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-logo { grid-column: 1 / -1; margin-bottom: 22px; }
  .footer-main > div:last-child { grid-column: auto; }
  .legal-panels { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 7px; padding-bottom: 85px; }
  .mobile-call { position: fixed; z-index: 25; right: 16px; bottom: 15px; display: flex; align-items: center; gap: 10px; min-height: 50px; padding: 0 18px; border-radius: 28px; background: var(--tan); color: var(--brown); box-shadow: 0 10px 35px rgba(35,18,10,.25); font-size: 12px; font-weight: 850; }
  .mobile-call svg { width: 18px; height: 18px; }
  .lightbox-close { top: -42px; right: 5px; }
}

@media (max-width: 470px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-logo { grid-column: auto; }
  .contact-list > a { min-height: 100px; }
  .contact-list strong { font-size: 20px; }
}

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