:root {
  --ink: #151515;
  --charcoal: #20201e;
  --steel: #353531;
  --paper: #f3f0e8;
  --paper-dark: #e7e1d4;
  --brass: #927944;
  --brass-light: #c4ab70;
  --muted: #66645d;
  --line: rgba(21, 21, 21, .16);
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 10px 14px; background: #fff; color: #000; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { background: rgba(21,21,21,.97); color: #fff; border-bottom: 1px solid rgba(255,255,255,.12); position: sticky; top: 0; z-index: 50; }
.nav-wrap { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.brand img { width: 62px; height: 62px; object-fit: cover; border-radius: 50%; background: #fff; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-name { font-family: var(--serif); font-size: 1.22rem; letter-spacing: .11em; text-transform: uppercase; }
.brand-tag { color: var(--brass-light); font-size: .68rem; letter-spacing: .19em; text-transform: uppercase; margin-top: 7px; }
nav ul { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 8px 24px; margin: 0; padding: 0; list-style: none; }
nav a { color: #d8d5ce; font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; padding: 10px 0; border-bottom: 1px solid transparent; }
nav a:hover, nav a:focus-visible, nav a[aria-current="page"] { color: #fff; border-color: var(--brass-light); }

.hero { min-height: 680px; display: grid; align-items: center; color: #fff; position: relative; overflow: hidden; background: radial-gradient(circle at 80% 45%, rgba(146,121,68,.3), transparent 28%), linear-gradient(115deg, #171716 0 56%, #292925 56%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: repeating-linear-gradient(90deg, transparent 0 21px, #fff 22px), repeating-linear-gradient(0deg, transparent 0 21px, #fff 22px); mask-image: linear-gradient(to left, #000, transparent 63%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .75fr; gap: 80px; align-items: center; padding-block: 86px; }
.eyebrow { color: var(--brass); font-size: .76rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; margin: 0 0 18px; }
.hero .eyebrow { color: var(--brass-light); }
h1, h2, h3 { font-family: var(--serif); line-height: 1.12; font-weight: 500; }
h1 { margin: 0 0 22px; font-size: clamp(3rem, 7vw, 6.1rem); letter-spacing: -.035em; max-width: 850px; }
.hero-copy { max-width: 620px; color: #d0cdc5; font-size: 1.12rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 12px 22px; border: 1px solid var(--brass); background: var(--brass); color: #fff; text-decoration: none; font-size: .77rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; transition: .2s ease; }
.button:hover, .button:focus-visible { background: #aa8e51; border-color: #aa8e51; transform: translateY(-1px); }
.button.secondary { background: transparent; border-color: rgba(255,255,255,.4); }
.button.secondary:hover, .button.secondary:focus-visible { background: #fff; color: var(--ink); border-color: #fff; }
.hero-seal { justify-self: center; width: min(100%, 380px); padding: 28px; background: rgba(255,255,255,.95); border-radius: 50%; box-shadow: 0 30px 70px rgba(0,0,0,.3); }

.trust-bar { background: var(--brass); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.25); font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.trust-item:last-child { border: 0; }
.section { padding-block: 100px; }
.section.alt { background: var(--paper-dark); }
.section.dark { background: var(--charcoal); color: #fff; }
.section-head { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: end; margin-bottom: 50px; }
h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); margin: 0; letter-spacing: -.025em; }
.section-head p { color: var(--muted); margin: 0; max-width: 620px; }
.dark .section-head p { color: #c6c2b9; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 235px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.24); }
.service-number { color: var(--brass); font-family: var(--serif); font-size: .9rem; }
.service-card h3 { margin: 38px 0 10px; font-size: 1.45rem; }
.service-card p { color: var(--muted); font-size: .94rem; margin: 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-copy p { color: var(--muted); }
.craft-panel { min-height: 470px; padding: 48px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; background: linear-gradient(145deg, rgba(0,0,0,.05), rgba(0,0,0,.72)), radial-gradient(circle at 25% 25%, #a18b60, #34332f 52%, #171716); position: relative; overflow: hidden; }
.craft-panel::before { content: "EI"; position: absolute; right: -12px; top: -72px; font: 260px/1 var(--serif); color: rgba(255,255,255,.06); }
.craft-panel strong { font: 2rem/1.25 var(--serif); max-width: 430px; }
.craft-panel span { color: var(--brass-light); margin-top: 15px; font-size: .73rem; letter-spacing: .16em; text-transform: uppercase; }
.text-link { color: var(--brass); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; text-decoration-thickness: 1px; text-underline-offset: 5px; font-size: .78rem; }

.page-hero { background: var(--charcoal); color: #fff; padding-block: 86px; }
.page-hero h1 { font-size: clamp(2.7rem, 6vw, 5rem); margin-bottom: 18px; }
.page-hero p { color: #c7c3ba; max-width: 700px; margin: 0; font-size: 1.08rem; }
.content { padding-block: 80px 110px; }
.prose { max-width: 760px; }
.prose h2 { margin: 48px 0 16px; font-size: 2rem; }
.prose h3 { margin: 34px 0 8px; font-size: 1.35rem; }
.prose p, .prose li { color: var(--muted); }
.prose a { color: #6f5829; }
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.badge { border: 1px solid var(--line); padding: 9px 13px; font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }

.gallery { display: grid; gap: 50px; }
.project { border: 1px solid var(--line); background: #f8f6f0; }
.photo-pair { display: grid; grid-template-columns: 1fr 1fr; }
.photo-placeholder { min-height: 320px; display: grid; place-items: center; position: relative; overflow: hidden; background: radial-gradient(circle at 50% 40%, #5c5b55, #222220 72%); color: #d7d0bf; }
.photo-placeholder::after { content: ""; width: 74%; height: 18px; border: 3px solid rgba(196,171,112,.35); border-left-width: 35px; border-radius: 2px 15px 15px 2px; box-shadow: -70px 16px 0 -5px rgba(196,171,112,.2); transform: rotate(-5deg); }
.photo-placeholder span { position: absolute; top: 22px; left: 22px; padding: 7px 10px; background: rgba(0,0,0,.55); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.photo-placeholder.after { background: radial-gradient(circle at 50% 40%, #817251, #272724 72%); }
.project-copy { padding: 30px 34px 34px; display: grid; grid-template-columns: .5fr 1.5fr; gap: 35px; }
.project-copy h2 { font-size: 1.8rem; }
.project-copy p { color: var(--muted); margin: 0; }
.gallery-note { padding: 20px 24px; border-left: 3px solid var(--brass); background: var(--paper-dark); color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.contact-card { background: var(--charcoal); color: #fff; padding: 40px; }
.contact-card p { color: #c4c0b7; }
.contact-card a { color: var(--brass-light); }
.steps { counter-reset: steps; display: grid; gap: 24px; }
.step { counter-increment: steps; padding: 0 0 24px 60px; border-bottom: 1px solid var(--line); position: relative; }
.step::before { content: "0" counter(steps); position: absolute; left: 0; top: 0; color: var(--brass); font-family: var(--serif); }
.step h2 { font-size: 1.35rem; margin-bottom: 8px; }
.step p { margin: 0; color: var(--muted); }

.cta { padding-block: 78px; background: var(--brass); color: #fff; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 35px; }
.cta h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
.cta .button { border-color: #fff; background: #fff; color: var(--ink); flex: 0 0 auto; }
.site-footer { background: #151515; color: #bdb9b0; padding: 65px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr; gap: 50px; padding-bottom: 48px; }
.footer-logo { width: 82px; border-radius: 50%; background: #fff; margin-bottom: 18px; }
.site-footer h2 { color: #fff; font-size: 1rem; font-family: var(--sans); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer p, .site-footer a { color: #bdb9b0; font-size: .9rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: #fff; }
.legal { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; font-size: .78rem; }
.legal p { margin: 0; }
.construction-notice { margin: 0 0 28px; padding: 16px 18px; border: 1px solid rgba(196,171,112,.55); background: rgba(146,121,68,.12); color: #efe8d8 !important; font-weight: 700; }
.footer-status { margin: 0 0 24px; padding: 14px 18px; border-left: 3px solid var(--brass-light); background: rgba(255,255,255,.06); color: #ded9ce !important; font-size: .88rem !important; }

:focus-visible { outline: 3px solid var(--brass-light); outline-offset: 4px; }
@media (max-width: 900px) {
  .nav-wrap { padding-block: 14px; flex-direction: column; }
  nav ul { justify-content: center; }
  .hero-grid, .section-head, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-seal { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .brand img { width: 52px; height: 52px; }
  .brand-tag { display: none; }
  nav ul { gap: 2px 14px; }
  nav a { font-size: .69rem; }
  .hero-grid { padding-block: 64px; }
  .section { padding-block: 72px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.25); }
  .service-grid, .photo-pair, .project-copy, .footer-grid { grid-template-columns: 1fr; }
  .photo-placeholder { min-height: 235px; }
  .cta-inner, .legal { align-items: flex-start; flex-direction: column; }
  .footer-grid > :first-child { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }
