:root {
  --color-background: #f2efe9;
  --color-surface: #faf9f6;
  --color-text: #191918;
  --color-text-muted: #716e68;
  --color-dark: #1c1c1a;
  --color-accent: #9a7553;
  --color-border: rgba(25, 25, 24, .12);
  --ink: var(--color-text);
  --ink-soft: #2a2e2a;
  --paper: var(--color-background);
  --white: #ffffff;
  --muted: var(--color-text-muted);
  --line: var(--color-border);
  --line-light: rgba(255, 255, 255, .24);
  --green: #53675b;
  --gold: #b9916b;
  --gold-dark: var(--color-accent);
  --max: 1200px;
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.section { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: 0; }
h1, h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.03;
}
h1 { max-width: 760px; margin-bottom: 26px; font-size: clamp(58px, 7.2vw, 104px); }
h1 span { display: block; color: rgba(255, 255, 255, .72); font-size: .48em; line-height: 1.18; }
h2 { margin-bottom: 20px; font-size: clamp(38px, 4.3vw, 64px); }
h3 { line-height: 1.2; }
.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 84px;
  border-bottom: 1px solid rgba(255, 255, 255, .26);
  color: var(--white);
  transition: background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(23, 25, 22, .08);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(var(--max), calc(100% - 40px));
  height: 100%;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 23px;
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-size: 15px; }
.brand-copy small { margin-top: 4px; opacity: .66; font-size: 11px; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 2px; margin-left: auto; }
.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 700;
  opacity: .82;
  transition: opacity .18s ease, background .18s ease;
}
.site-nav a:hover { opacity: 1; background: rgba(255, 255, 255, .1); }
.site-header.is-scrolled .site-nav a:hover { background: rgba(23, 25, 22, .06); }
.site-nav .staff-login { border-left: 1px solid currentColor; margin-left: 6px; opacity: .62; }
.header-phone { display: grid; flex: 0 0 auto; padding-left: 20px; border-left: 1px solid currentColor; line-height: 1.1; }
.header-phone small { margin-bottom: 5px; opacity: .6; font-size: 10px; text-transform: uppercase; }
.header-phone strong { font-size: 15px; white-space: nowrap; }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero-media, .hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide {
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.5s ease;
}
.hero-slide:nth-child(1) { object-position: center 47%; }
.hero-slide:nth-child(2) { object-position: center 38%; }
.hero-slide:nth-child(3) { object-position: center 58%; }
.hero-slide.is-active { opacity: 1; animation: heroZoom 8s ease-out both; }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 16, 14, .84) 0%, rgba(13, 16, 14, .62) 40%, rgba(13, 16, 14, .16) 72%, rgba(13, 16, 14, .04)),
    linear-gradient(0deg, rgba(13, 16, 14, .56), transparent 46%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 120px 0 96px;
}
.hero-content { max-width: 780px; }
.hero .eyebrow { color: #ead9b0; }
.hero-lead { max-width: 650px; margin-bottom: 34px; color: rgba(255, 255, 255, .84); font-size: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--gold); color: var(--ink); }
.button-primary:hover { background: #d7b96f; }
.button-light { border-color: rgba(255, 255, 255, .58); color: var(--white); }
.button-light:hover { border-color: var(--white); background: var(--white); color: var(--ink); }
.hero-dots { position: absolute; right: 0; bottom: 44px; display: flex; gap: 8px; }
.hero-dot {
  width: 36px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, .42);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.hero-dot.is-active { width: 58px; background: var(--gold); }

.facts { border-bottom: 1px solid var(--line); background: var(--white); }
.facts-inner { width: min(var(--max), 100%); display: grid; grid-template-columns: repeat(4, 1fr); margin: 0 auto; }
.facts article { min-height: 146px; display: grid; grid-template-columns: auto 1fr; align-content: center; column-gap: 16px; padding: 26px 30px; border-left: 1px solid var(--line); }
.facts article:last-child { border-right: 1px solid var(--line); }
.facts span { grid-row: 1 / 3; align-self: start; color: var(--gold-dark); font-family: Georgia, serif; font-size: 19px; }
.facts strong { font-size: 16px; }
.facts small { margin-top: 5px; color: var(--muted); line-height: 1.35; }

.feature { display: grid; grid-template-columns: 1.25fr .75fr; align-items: stretch; padding: 108px 0; }
.feature-image { min-height: 650px; overflow: hidden; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform .7s ease; }
.feature-image:hover img { transform: scale(1.02); }
.feature-copy { display: flex; flex-direction: column; justify-content: center; padding: 54px 0 54px 64px; }
.feature-copy h2 { font-size: clamp(40px, 4vw, 58px); }
.feature-copy p:not(.eyebrow) { max-width: 430px; color: var(--muted); font-size: 18px; }
.text-link { width: fit-content; display: inline-flex; align-items: center; gap: 18px; margin-top: 22px; padding-bottom: 6px; border-bottom: 1px solid currentColor; font-weight: 800; }
.text-link span { color: var(--gold-dark); font-size: 22px; transition: transform .18s ease; }
.text-link:hover span { transform: translateX(5px); }

.works-section { padding: 110px 0; border-top: 1px solid var(--line); background: var(--white); }
.section-heading { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: end; margin-bottom: 46px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { margin-bottom: 6px; color: var(--muted); font-size: 17px; }
.filter-bar { display: flex; gap: 0; overflow-x: auto; margin-bottom: 30px; border: 1px solid var(--line); scrollbar-width: none; }
.filter-bar::-webkit-scrollbar { display: none; }
.filter-button { min-height: 50px; display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; padding: 12px 20px; border: 0; border-right: 1px solid var(--line); background: transparent; cursor: pointer; font-weight: 800; }
.filter-button small { color: var(--muted); font-weight: 400; }
.filter-button.is-active { background: var(--ink); color: var(--white); }
.filter-button.is-active small { color: rgba(255, 255, 255, .62); }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.work-card {
  position: relative;
  grid-column: span 4;
  min-height: 370px;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #e5e6e2;
  text-align: left;
  cursor: pointer;
}
.work-card:nth-child(1) { grid-column: span 8; min-height: 530px; }
.work-card:nth-child(2) { grid-column: span 4; min-height: 530px; }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.work-card:hover img { transform: scale(1.025); }
.work-card::after { content: ''; position: absolute; inset: 42% 0 0; background: linear-gradient(0deg, rgba(12, 14, 12, .82), transparent); }
.work-meta { position: absolute; z-index: 1; left: 20px; right: 20px; bottom: 18px; display: flex; align-items: end; justify-content: space-between; gap: 15px; color: var(--white); }
.work-meta strong { font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
.work-meta span { color: rgba(255, 255, 255, .7); font-size: 12px; text-transform: uppercase; }

.categories { padding: 110px 0; background: var(--paper); }
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.category-card { position: relative; min-height: 570px; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink); color: var(--white); }
.category-card img { width: 100%; height: 100%; object-fit: cover; opacity: .78; transition: opacity .35s ease, transform .6s ease; }
.category-card:hover img { opacity: .9; transform: scale(1.02); }
.category-card::after { content: ''; position: absolute; inset: 30% 0 0; background: linear-gradient(0deg, rgba(12, 14, 12, .88), transparent); }
.category-card > div { position: absolute; z-index: 1; left: 30px; right: 30px; bottom: 28px; }
.category-card span { color: var(--gold); font-family: Georgia, serif; }
.category-card h3 { margin: 8px 0; font-family: Georgia, serif; font-size: 34px; font-weight: 400; }
.category-card p { max-width: 390px; margin-bottom: 0; color: rgba(255, 255, 255, .7); }
.category-card-compact { min-height: 250px; background: var(--ink-soft); }
.category-card-compact > div { top: 28px; bottom: auto; }
.category-card-compact::after { display: none; }

.materials { padding: 112px 0; border-top: 1px solid var(--line); }
.material-list { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.material-list span { min-height: 118px; display: flex; align-items: end; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: Georgia, serif; font-size: 21px; }

.process { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; padding: 112px 0; }
.process-intro { position: sticky; top: 120px; align-self: start; }
.process-intro p:not(.eyebrow) { max-width: 430px; color: var(--muted); font-size: 17px; }
.process-list { border-top: 1px solid var(--line); }
.process-list article { min-height: 155px; display: grid; grid-template-columns: 70px 1fr; gap: 18px; align-items: center; border-bottom: 1px solid var(--line); }
.process-list span { color: var(--gold-dark); font-family: Georgia, serif; font-size: 20px; }
.process-list h3 { margin: 0 0 8px; font-family: Georgia, serif; font-size: 27px; font-weight: 400; }
.process-list p { max-width: 560px; margin: 0; color: var(--muted); }

.request-section { padding: 112px 0; background: var(--ink); color: var(--white); }
.request-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.request-copy p:not(.eyebrow) { max-width: 470px; color: rgba(255, 255, 255, .65); font-size: 18px; }
.request-contact { display: grid; gap: 6px; margin-top: 38px; padding-top: 24px; border-top: 1px solid var(--line-light); }
.request-contact small { color: rgba(255, 255, 255, .58); text-transform: uppercase; }
.request-contact a { font-family: Georgia, serif; font-size: 30px; }
.lead-form { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 14px; padding: 34px; border: 1px solid var(--line-light); background: rgba(255, 255, 255, .04); }
.lead-form label { display: grid; gap: 8px; }
.lead-form label > span { color: rgba(255, 255, 255, .68); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.wide-field { grid-column: 1 / -1; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
input, select, textarea { width: 100%; min-height: 54px; padding: 14px; border: 1px solid rgba(255, 255, 255, .24); border-radius: var(--radius); background: rgba(255, 255, 255, .06); color: var(--white); outline: none; }
select option { color: var(--ink); }
textarea { resize: vertical; }
input::placeholder, textarea::placeholder { color: rgba(255, 255, 255, .42); }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 168, 95, .15); }
.form-status { min-height: 24px; margin: 0; color: #ead9b0; }
.lead-form .consent { grid-template-columns: 22px 1fr; align-items: start; color: rgba(255, 255, 255, .7); font-size: 13px; text-transform: none; }
.lead-form .consent input { width: 20px; min-height: 20px; margin: 2px 0 0; accent-color: var(--gold); }
.lead-form .consent > span { font-size: 13px; font-weight: 400; line-height: 1.45; text-transform: none; }
.lead-form .consent a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

.contacts { padding: 86px 0; border-bottom: 1px solid var(--line); background: var(--white); }
.contacts-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: end; }
.contacts h2 { max-width: 800px; margin-bottom: 0; }
.contact-side { display: grid; justify-items: start; gap: 16px; padding-left: 40px; border-left: 1px solid var(--line); }
.contact-phone { font-family: Georgia, serif; font-size: 30px; }
.contact-side .text-link { margin-top: 0; }
.site-footer { background: var(--white); }
.footer-inner { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand .brand-copy small { color: var(--muted); }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 24px; color: var(--muted); font-weight: 700; }
.site-footer nav a:hover { color: var(--ink); }
.footer-year { color: var(--muted); white-space: nowrap; }
.mobile-actions { display: none; }

.legal-page { min-height: 100svh; padding: 140px 0 80px; background: var(--paper); }
.legal-content { width: min(780px, calc(100% - 40px)); margin: 0 auto; }
.legal-content h1 { color: var(--ink); font-size: clamp(40px, 6vw, 68px); }
.legal-content h2 { margin-top: 42px; font-family: inherit; font-size: 24px; font-weight: 800; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-notice { padding: 18px; border-left: 3px solid var(--gold-dark); background: var(--white); color: var(--ink) !important; }

.lightbox { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 40px 84px; background: rgba(8, 10, 8, .94); }
.lightbox[hidden] { display: none; }
.lightbox figure { width: min(1120px, 100%); max-height: calc(100svh - 80px); display: grid; gap: 12px; margin: 0; }
.lightbox img { width: 100%; max-height: calc(100svh - 150px); object-fit: contain; }
.lightbox figcaption { display: flex; justify-content: space-between; gap: 20px; color: var(--white); }
.lightbox figcaption span { color: rgba(255, 255, 255, .58); }
.lightbox-close, .lightbox-arrow { position: absolute; border: 1px solid rgba(255, 255, 255, .28); background: rgba(255, 255, 255, .08); color: var(--white); cursor: pointer; }
.lightbox-close { top: 20px; right: 20px; width: 48px; height: 48px; font-size: 32px; }
.lightbox-arrow { top: 50%; width: 52px; height: 72px; font-size: 42px; transform: translateY(-50%); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.045); } }

@media (max-width: 1080px) {
  .site-nav a { padding-inline: 8px; }
  .header-phone { display: none; }
  .feature { grid-template-columns: 1.1fr .9fr; }
  .feature-copy { padding-left: 42px; }
  .section-heading { grid-template-columns: 1fr 340px; }
  .category-card { min-height: 500px; }
  .process { gap: 50px; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 72px; }
  body { padding-bottom: 66px; }
  .section, .header-inner, .hero-inner { width: calc(100% - 28px); }
  .site-header { height: 72px; background: rgba(18, 21, 18, .72); backdrop-filter: blur(14px); }
  .site-header.is-scrolled { background: rgba(255, 255, 255, .96); }
  .menu-button { width: 44px; height: 44px; display: grid; align-content: center; gap: 5px; margin-left: auto; padding: 10px; border: 1px solid currentColor; background: transparent; }
  .menu-button span { display: block; height: 1px; background: currentColor; }
  .site-nav { position: absolute; left: 14px; right: 14px; top: calc(100% + 8px); display: grid; gap: 0; padding: 8px; border: 1px solid var(--line); background: var(--white); color: var(--ink); box-shadow: 0 18px 50px rgba(23, 25, 22, .16); opacity: 0; pointer-events: none; transform: translateY(-6px); transition: opacity .18s ease, transform .18s ease; }
  .site-nav[data-open="true"] { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { justify-content: flex-start; padding-inline: 14px; }
  .site-nav .staff-login { margin-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .hero { min-height: 680px; height: 92svh; }
  .hero-shade { background: linear-gradient(0deg, rgba(13, 16, 14, .84), rgba(13, 16, 14, .25) 78%), linear-gradient(90deg, rgba(13, 16, 14, .35), transparent); }
  .hero-inner { align-items: end; padding: 110px 0 86px; }
  .hero-content { max-width: 620px; }
  h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero-lead { max-width: 520px; font-size: 18px; }
  .hero-dots { bottom: 28px; }
  .facts-inner { width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .facts article { min-height: 124px; padding: 22px 18px; border-bottom: 1px solid var(--line); }
  .feature { grid-template-columns: 1fr; padding: 74px 0; }
  .feature-image { min-height: 520px; }
  .feature-copy { padding: 38px 0 0; }
  .works-section, .categories, .materials, .request-section { padding: 78px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 32px; }
  .section-heading > p { max-width: 600px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .work-card, .work-card:nth-child(1), .work-card:nth-child(2) { grid-column: span 1; min-height: 420px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 480px; }
  .process { grid-template-columns: 1fr; gap: 36px; padding: 80px 0; }
  .process-intro { position: static; }
  .request-layout, .contacts-inner { grid-template-columns: 1fr; gap: 38px; }
  .material-list { grid-template-columns: repeat(2, 1fr); }
  .contact-side { padding: 26px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .footer-inner { align-items: flex-start; flex-direction: column; padding: 28px 0; }
  .mobile-actions { position: fixed; left: 10px; right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); z-index: 70; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid rgba(25, 25, 24, .16); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 34px rgba(23, 25, 22, .24); }
  .mobile-actions a { min-height: 50px; display: grid; place-items: center; font-weight: 800; }
  .mobile-actions a:last-child { background: var(--gold); color: var(--ink); }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { display: none; }
  .hero-slide:nth-child(1) { object-position: 58% center; }
  .hero-slide:nth-child(2) { object-position: 57% center; }
  .hero-slide:nth-child(3) { object-position: 65% center; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .facts-inner { width: calc(100% - 1px); }
  .facts article { min-width: 0; grid-template-columns: 32px minmax(0, 1fr); column-gap: 8px; padding: 18px 10px; }
  .facts small { font-size: 12px; }
  .feature-image { min-height: 440px; }
  .gallery { grid-template-columns: 1fr; }
  .work-card, .work-card:nth-child(1), .work-card:nth-child(2) { min-height: 430px; }
  .category-card { min-height: 430px; }
  .category-card-compact { min-height: 220px; }
  .category-card > div { left: 20px; right: 20px; bottom: 20px; }
  .category-card h3 { font-size: 29px; }
  .process-list article { grid-template-columns: 48px 1fr; min-height: 145px; }
  .lead-form { grid-template-columns: 1fr; padding: 20px; }
  .wide-field { grid-column: auto; }
  .contact-phone { font-size: 26px; }
  .lightbox { padding: 68px 10px 80px; }
  .lightbox-arrow { top: auto; bottom: 16px; height: 50px; transform: none; }
  .material-list { grid-template-columns: 1fr; }
  .material-list span { min-height: 76px; align-items: center; }
}

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