:root {
  --ink: #080808;
  --ink-soft: #131210;
  --paper: #f7f5f0;
  --paper-deep: #ebe6dd;
  --stone: #d7c8b3;
  --sand: #c89550;
  --sand-light: #e7c792;
  --muted: #8f887e;
  --line: rgba(8, 8, 8, .16);
  --shell: min(1280px, calc(100vw - 80px));
}

* { 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.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .022;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 999; padding: 10px 16px; background: var(--sand); color: var(--ink); font-weight: 800; }
.skip-link:focus { top: 12px; }

.utility-bar { background: var(--sand); color: var(--ink); font-size: .7rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.utility-inner { min-height: 32px; display: flex; align-items: center; gap: 12px; }
.utility-inner a { margin-left: auto; text-decoration: none; }
.utility-line { width: 28px; height: 1px; background: rgba(8,8,8,.55); }

.site-header { position: sticky; top: 0; z-index: 40; color: white; background: rgba(8,8,8,.97); border-bottom: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(14px); }
.header-inner { height: 78px; display: flex; align-items: center; gap: 36px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; min-width: max-content; }
.brand img { width: 50px; height: 50px; object-fit: cover; }
.brand-type { display: grid; line-height: 1; }
.brand-type strong { font-family: "Nimbus Sans Narrow", "Arial Narrow", "DejaVu Sans", sans-serif; font-size: 1.26rem; letter-spacing: .04em; font-weight: 800; }
.brand-type small { margin-top: 7px; color: var(--sand-light); font-size: .61rem; font-weight: 800; letter-spacing: .25em; }
.site-nav { display: flex; gap: 30px; margin-left: auto; }
.site-nav a { position: relative; color: #e9e5de; text-decoration: none; font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--sand); transition: right .25s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.menu-toggle { display: none; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 26px; color: var(--ink); background: var(--sand); border: 1px solid var(--sand); text-decoration: none; font-size: .78rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); background: var(--sand-light); }
.button-small { min-height: 44px; padding-inline: 18px; font-size: .72rem; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: white; text-decoration: none; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.45); padding-bottom: 4px; }
.text-link span { color: var(--sand); transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px,-3px); }

.hero { overflow: hidden; color: white; background: var(--ink); }
.hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 54px; min-height: 690px; padding-block: 42px; }
.hero-copy { position: relative; z-index: 2; padding: 44px 0; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 24px; color: var(--sand-light); font-size: .74rem; line-height: 1.2; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 4px; height: 4px; margin: 0 9px 2px; background: var(--sand); transform: rotate(45deg); }
.eyebrow.dark { color: #76562c; }
.hero h1, .section h2, .contact h2 { margin: 0; font-family: "Nimbus Sans Narrow", "Arial Narrow", "DejaVu Sans", sans-serif; font-weight: 800; letter-spacing: -.045em; line-height: .9; text-transform: uppercase; }
.hero h1 { max-width: 680px; font-size: clamp(4rem, 5.35vw, 6.1rem); }
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em, .contact h2 em { color: var(--sand); font-style: normal; }
.hero-lede { max-width: 560px; margin: 27px 0 0; color: #c8c3bb; font-size: 1.06rem; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; margin-top: 31px; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.17); }
.trust-row div { display: grid; gap: 2px; }
.trust-row strong { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.trust-row span { color: #96918a; font-size: .74rem; line-height: 1.35; }

.hero-visual { position: relative; margin: 0; min-width: calc((100vw - var(--shell)) / 2 + 100%); min-height: 606px; overflow: hidden; border: 1px solid rgba(255,255,255,.17); border-left: 3px solid var(--sand); }
.hero-visual::before { content: ""; position: absolute; z-index: 2; top: 19px; right: 19px; width: 70px; height: 70px; border-top: 2px solid var(--sand); border-right: 2px solid var(--sand); }
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.7) contrast(1.03); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,8,8,.26), transparent 40%), linear-gradient(0deg, rgba(8,8,8,.76), transparent 42%); }
.hero-visual figcaption { position: absolute; left: 28px; bottom: 26px; display: grid; gap: 2px; padding: 13px 18px 12px; border-left: 3px solid var(--sand); background: rgba(8,8,8,.82); backdrop-filter: blur(6px); }
.hero-visual figcaption span { color: var(--sand-light); font-size: .7rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.hero-visual figcaption strong { font-size: 1rem; letter-spacing: .02em; }
.hero-rule { height: 50px; display: flex; align-items: center; justify-content: center; gap: 24px; overflow: hidden; color: rgba(8,8,8,.82); background: var(--sand); font-size: .7rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; white-space: nowrap; }
.hero-rule i { flex: 0 0 5px; width: 5px; height: 5px; background: rgba(8,8,8,.58); transform: rotate(45deg); }

.section { padding: 104px 0; }
.section-heading { display: grid; grid-template-columns: 1.2fr .55fr; gap: 80px; align-items: end; margin-bottom: 54px; }
.section h2 { font-size: clamp(3rem, 4.6vw, 5.25rem); }
.section-heading > p { max-width: 470px; margin: 0 0 5px; color: #5f5a53; font-size: 1.02rem; }

.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.service { position: relative; display: block; min-height: 268px; padding: 38px 40px; background: #fff; transition: background .25s ease, transform .25s ease; }
.service:hover { padding: 38px 40px; background: #f1eadf; transform: translateY(-3px); }
.service-number { display: block; margin: 0 0 50px; color: #956528; font-size: .72rem; font-weight: 900; letter-spacing: .18em; }
.service > div { display: block; }
.service h3 { max-width: 470px; margin: 0 0 16px; font-family: "Nimbus Sans Narrow", "Arial Narrow", "DejaVu Sans", sans-serif; font-size: clamp(1.8rem, 2.35vw, 2.55rem); line-height: .98; font-weight: 800; letter-spacing: -.03em; text-transform: uppercase; }
.service p { max-width: 590px; margin: 0; color: #666057; }
.service-arrow { position: absolute; top: 39px; right: 40px; width: 9px; height: 9px; overflow: hidden; color: transparent; background: var(--sand); transform: rotate(45deg); }
.capability-strip { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.capability-strip span { padding: 9px 13px; color: #514b43; background: transparent; border: 1px solid rgba(8,8,8,.2); font-size: .69rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }

.work { color: white; background: var(--ink-soft); }
.work-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 48px; }
.work-heading > p { max-width: 350px; margin: 0 0 4px; color: #a6a098; }
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 250px; grid-auto-flow: dense; gap: 14px; }
.project { position: relative; grid-column: span 4; grid-row: span 1; margin: 0; overflow: hidden; background: #24211d; }
.project-large { grid-column: span 8; grid-row: span 2; }
.project-wide { grid-column: span 8; }
.project-tall { grid-column: span 4; grid-row: span 2; }
.project img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) contrast(1.04); transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.project::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.86), transparent 52%); }
.project:hover img { transform: scale(1.035); filter: saturate(.95) contrast(1.05); }
.project figcaption { position: absolute; z-index: 2; left: 25px; bottom: 22px; display: grid; }
.project figcaption span { color: var(--sand-light); font-size: .68rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.project figcaption strong { font-size: 1.15rem; }

.process { background: var(--paper-deep); border-top: 1px solid rgba(8,8,8,.08); }
.process-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.process-intro { position: sticky; top: 130px; align-self: start; }
.process-intro p:last-child { max-width: 490px; color: #615b52; }
.steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.steps li { display: grid; grid-template-columns: 72px 1fr; gap: 25px; padding: 36px 0; border-bottom: 1px solid var(--line); }
.steps li > span { color: #9a6c30; font-size: .72rem; font-weight: 900; letter-spacing: .14em; }
.steps h3 { margin: 0 0 8px; font-family: "Nimbus Sans Narrow", "Arial Narrow", "DejaVu Sans", sans-serif; font-size: 2rem; line-height: 1; font-weight: 800; letter-spacing: -.025em; text-transform: uppercase; }
.steps p { max-width: 580px; margin: 0; color: #635d54; }

.about { color: white; background: #0b0b0a; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; align-items: center; }
.about-logo { position: relative; display: grid; place-items: center; min-height: 500px; padding: 3vw; border: 1px solid rgba(255,255,255,.12); background: radial-gradient(circle at 50% 42%, rgba(199,154,91,.14), transparent 58%), #050505; }
.about-logo::before, .about-logo::after { content: ""; position: absolute; width: 54px; height: 54px; border-color: var(--sand); border-style: solid; }
.about-logo::before { left: -1px; top: -1px; border-width: 3px 0 0 3px; }
.about-logo::after { right: -1px; bottom: -1px; border-width: 0 3px 3px 0; }
.about-logo img { width: 100%; max-width: 600px; }
.about-copy p:not(.eyebrow) { max-width: 660px; color: #b9b3aa; }
.about-copy .text-link { margin-top: 18px; }

.area { padding-block: 90px; }
.area-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: center; }
.locations { display: flex; flex-wrap: wrap; gap: 10px; }
.locations span { padding: 11px 16px; border: 1px solid rgba(8,8,8,.22); font-size: .78rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }

.contact { padding: 105px 0; color: var(--ink); background: var(--sand); border-top: 0; }
.contact-inner { display: grid; grid-template-columns: 1fr .9fr; gap: 110px; align-items: end; }
.contact h2 { font-size: clamp(4rem, 6.7vw, 7.5rem); }
.contact .eyebrow { color: #49331a; }
.contact h2 em { color: #fff7ea; }
.contact-actions { display: grid; gap: 22px; }
.contact-link { display: grid; gap: 2px; padding-bottom: 16px; border-bottom: 1px solid rgba(8,8,8,.24); text-decoration: none; }
.contact-link span { color: #50381d; font-size: .68rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.contact-link strong { font-size: clamp(1.3rem,2.2vw,2rem); overflow-wrap: anywhere; }
.contact-link.email strong { font-size: clamp(1rem,1.55vw,1.35rem); }
.button-light { justify-self: start; margin-top: 10px; color: white; background: var(--ink); border-color: var(--ink); }
.button-light:hover, .button-light:focus-visible { color: var(--ink); background: #fff7ea; border-color: #fff7ea; }

.site-footer { color: #a49e95; background: #060606; border-top: 1px solid rgba(255,255,255,.1); }
.footer-inner { min-height: 130px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; font-size: .75rem; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: white; font-family: "Nimbus Sans Narrow", "Arial Narrow", "DejaVu Sans", sans-serif; font-size: 1rem; font-weight: 800; line-height: 1.1; letter-spacing: .05em; }
.footer-brand img { width: 44px; height: 44px; object-fit: cover; }
.footer-brand small { color: var(--sand); font-family: Inter, sans-serif; font-size: .52rem; letter-spacing: .2em; }
.footer-inner p { margin: 0; }
.footer-inner p:last-child { text-align: right; }
.mobile-actions { display: none; }

.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 40px, 1100px); }
  .site-nav { gap: 20px; }
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: .95fr 1.05fr; gap: 32px; }
  .hero-copy { padding-right: 0; }
  .trust-row { grid-template-columns: 1fr; gap: 10px; }
  .trust-row div { grid-template-columns: 145px 1fr; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 30px, 760px); }
  body { padding-bottom: 58px; }
  .utility-inner { justify-content: center; }
  .utility-inner span:first-child, .utility-line, .utility-inner a { display: none; }
  .header-inner { height: 72px; }
  .brand img { width: 44px; height: 44px; }
  .brand-type strong { font-size: 1.08rem; }
  .menu-toggle { position: relative; display: grid; place-content: center; gap: 5px; width: 46px; height: 46px; margin-left: auto; padding: 0; color: white; background: transparent; border: 1px solid rgba(255,255,255,.18); }
  .menu-toggle span:not(.sr-only) { display: block; width: 21px; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: absolute; left: 0; right: 0; top: 72px; display: grid; gap: 0; margin: 0; padding: 8px 20px 22px; background: #090909; border-bottom: 1px solid rgba(255,255,255,.12); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform .25s ease, opacity .2s ease; }
  .site-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero-grid { grid-template-columns: 1fr; gap: 0; min-height: auto; width: 100%; padding: 0; }
  .hero-copy { width: var(--shell); margin-inline: auto; padding: 68px 0 58px; }
  .hero h1 { font-size: clamp(3.75rem, 13vw, 5.6rem); }
  .hero-lede { font-size: 1rem; }
  .trust-row { margin-top: 44px; }
  .hero-visual { min-width: 0; width: 100%; min-height: 0; height: 500px; margin: 0; border-left: 0; border-block: 1px solid rgba(255,255,255,.17); }
  .hero-visual > img { object-position: center; }
  .hero-shade { background: linear-gradient(0deg, rgba(8,8,8,.72), transparent 55%); }
  .section { padding: 82px 0; }
  .section-heading, .work-heading, .process-grid, .about-grid, .area-grid, .contact-inner { grid-template-columns: 1fr; gap: 38px; }
  .section-heading { display: grid; margin-bottom: 40px; }
  .section h2 { font-size: clamp(2.8rem, 11vw, 4.6rem); }
  .service-list { grid-template-columns: 1fr; }
  .service { min-height: 0; padding: 34px; }
  .service:hover { padding: 34px; }
  .service-number { margin-bottom: 34px; }
  .service-arrow { top: 35px; right: 35px; }
  .work-heading { display: grid; }
  .work-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 260px; }
  .project, .project-large, .project-wide, .project-tall { grid-column: span 1; grid-row: span 1; }
  .project-large, .project-tall { grid-row: span 2; }
  .process-intro { position: static; }
  .about-logo { max-width: 540px; min-height: 390px; }
  .contact h2 { font-size: clamp(4rem, 15vw, 6.3rem); }
  .footer-inner { min-height: 170px; grid-template-columns: 1fr 1fr; }
  .footer-inner > p:nth-child(2) { display: none; }
  .mobile-actions { position: fixed; z-index: 50; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: .7fr 1.3fr; height: 58px; box-shadow: 0 -8px 25px rgba(0,0,0,.24); }
  .mobile-actions a { display: grid; place-items: center; color: white; background: #161513; text-decoration: none; font-size: .78rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
  .mobile-actions a:last-child { color: var(--ink); background: var(--sand); }
}

@media (max-width: 560px) {
  .utility-bar { font-size: .61rem; }
  .brand-type small { letter-spacing: .17em; }
  .hero-copy { padding-top: 54px; }
  .hero-actions { align-items: stretch; gap: 20px; }
  .hero-actions .button { width: 100%; }
  .trust-row div { grid-template-columns: 1fr; }
  .hero-visual { height: 390px; }
  .hero-visual figcaption { left: 22px; bottom: 22px; }
  .hero-rule { justify-content: flex-start; padding-left: 20px; }
  .section { padding: 68px 0; }
  .service { padding: 30px 26px; }
  .service:hover { padding: 30px 26px; }
  .service-arrow { top: 31px; right: 27px; }
  .service h3 { font-size: 1.65rem; }
  .service p { font-size: .94rem; }
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: 330px; }
  .project, .project-large, .project-wide, .project-tall { grid-column: 1; grid-row: auto; }
  .steps li { grid-template-columns: 42px 1fr; gap: 14px; }
  .locations span { flex: 1 1 calc(50% - 10px); text-align: center; }
  .contact { padding: 78px 0; }
  .contact-actions { gap: 18px; }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; padding-block: 28px; }
  .footer-inner p:last-child { text-align: left; }
}

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