:root {
  --navy: #0a0a0a;
  --navy-deep: #000;
  --ink: #222;
  --muted: #666;
  --paper: #f7f6f2;
  --white: #fff;
  --gold: #c8a56a;
  --line: rgba(0, 0, 0, 0.14);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.14);
  --radius: 4px;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Poppins", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.topbar {
  border-bottom: 1px solid rgba(200,165,106,.28);
  background: linear-gradient(90deg, #050505, #151515 50%, #050505);
  color: rgba(255,255,255,.82);
  font-size: .73rem;
}
.topbar-inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.contact-strip, .socials { display: flex; align-items: center; gap: 4px; }
.socials { padding-left: 12px; border-left: 1px solid rgba(255,255,255,.16); }
.topbar a {
  display: inline-flex;
  min-height: 30px;
  padding: 5px 10px;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}
.topbar a:hover { background: rgba(255,255,255,.1); color: var(--white); text-decoration: none; transform: translateY(-1px); }
.topbar a.admin-team-tab {
  flex: none;
  border: 1px solid #e66f5c;
  border-radius: 2px;
  background: #e66f5c;
  color: #080808;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.topbar a.admin-team-tab:hover { background: #bc4e3f; color: #fff; }
.topbar-icon { flex: none; color: var(--gold); font-size: 17px; line-height: 1; }
.topbar-brand-icon { width: 17px; height: 17px; flex: none; fill: currentColor; color: var(--gold); }
.topbar-label { line-height: 1.2; }
.contact-strip a:first-child > span:first-child { font-size: 17px; }
.contact-strip a:first-child > span:first-child::before { content: none; }
.contact-strip a:first-child > span:first-child { font-size: 17px; }
.contact-strip a:first-child > span:first-child::before { content: "☎"; font-size: .78rem; }

.contact-strip a:first-child > span:first-child::before { content: none; }

.site-header {
  position: relative;
  z-index: 50;
  background: rgba(0, 0, 0, .97);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.nav-inner {
  width: min(1200px, calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 16px;
}
.brand { flex: none; display: block; width: 290px; padding-block: 2px; }
.brand img { width: 100%; height: auto; object-fit: contain; object-position: left center; }
.brand img { filter: none; mix-blend-mode: normal; }
.site-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}
.site-nav a {
  position: relative;
  display: block;
  padding: 9px 13px;
  color: var(--white);
  font-family: var(--serif);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}
.site-nav a::after {
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.site-nav a:hover { color: #fff; opacity: .82; transform: translateY(-1px); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav a[aria-current="page"] { color: var(--white); }
.mobile-admin-link { display: none; }
.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.55);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: clamp(520px, 68vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy) center / cover no-repeat;
}
.home-hero {
  min-height: clamp(600px, 76vh, 820px);
  align-items: center;
  background-image: linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.67) 34%, rgba(0,0,0,.28) 60%, rgba(0,0,0,.04) 82%), url("images/homepage-hero-replacement.jpg");
}
.home-hero::before { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.3), transparent 48%); content: ""; pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 690px; padding-block: 100px 78px; }
.home-hero .hero-content { width: min(1120px, calc(100% - 40px)); max-width: none; margin-inline: auto; padding-block: 80px 96px; }
.home-hero .hero-content > * { max-width: 620px; }
.home-hero h1 { max-width: 610px; text-shadow: 0 3px 22px rgba(0,0,0,.4); }
.home-hero .hero-lead { text-shadow: 0 2px 16px rgba(0,0,0,.68); }
.hero-location { margin: 0 0 38px; color: rgba(255,255,255,.82); font-size: .69rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.hero-location span { margin-inline: 8px; color: var(--gold); }
.eyebrow { margin: 0 0 12px; color: var(--gold); font-size: 0.73rem; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; font-family: var(--serif); line-height: 1.08; }
h1 { margin-bottom: 20px; font-size: clamp(3rem, 5.4vw, 5rem); font-weight: 500; letter-spacing: -0.025em; }
h2 { font-size: 48px !important; }
.hero-lead { max-width: 620px; margin: 0 0 30px; font-size: clamp(1rem, 2vw, 1.2rem); line-height: 1.65; text-shadow: 0 2px 14px rgba(0,0,0,.42); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid var(--navy);
  border-radius: 2px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--serif);
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: .035em;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.button:hover { background: var(--navy-deep); color: var(--white); transform: translateY(-2px); }
.button-light { border-color: var(--white); background: var(--white); color: var(--navy); }
.button-light:hover { border-color: var(--white); background: var(--navy-deep); color: var(--white); }
.button-outline { border-color: rgba(255,255,255,.8); background: transparent; color: var(--white); }
.button-outline:hover { background: var(--white); color: var(--navy); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: .93rem;
  font-weight: 700;
  text-decoration: none;
}
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link-light { color: var(--white); }
.about-conversation-button { margin-top: 14px; padding: 16px 28px; border: 4px solid #000; border-radius: 2px; transition: background 180ms ease, color 180ms ease, transform 180ms ease; }
.about-conversation-button:hover { background: #000; color: #fff; transform: translateY(-2px); }
.scroll-cue { position: absolute; z-index: 2; right: 34px; bottom: 28px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.75); font-size: .63rem; font-weight: 700; letter-spacing: .17em; text-decoration: none; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue i { display: block; width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); }

.section { padding-block: clamp(70px, 9vw, 118px); }
.section-soft { background: var(--paper); }
.intro { max-width: 860px; margin-inline: auto; text-align: center; }
.intro h2, .section-heading h2 { margin-bottom: 24px; color: var(--navy); font-size: clamp(2.2rem, 3.8vw, 3.3rem); font-weight: 500; }
.intro p { margin: 0; color: #444; font-family: var(--serif); font-size: clamp(1.12rem, 1.8vw, 1.4rem); line-height: 1.68; }
.section-heading { max-width: 680px; margin-bottom: 46px; }
.section-heading p { color: var(--muted); }
.intro-section { padding-bottom: clamp(64px, 7vw, 90px); }
.intro-section .intro { max-width: 780px; }
.proof-grid { margin-top: clamp(50px, 7vw, 78px); display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.proof-item { min-height: 150px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; padding: 28px; text-align: center; }
.proof-item + .proof-item { border-left: 1px solid var(--line); }
.proof-item strong { color: var(--navy); font-family: var(--serif); font-size: clamp(1.65rem, 2.8vw, 2.35rem); font-weight: 400; }
.proof-item span { color: var(--muted); font-size: .75rem; font-weight: 600; letter-spacing: .055em; text-transform: uppercase; }
.heading-row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.heading-row > div { max-width: 690px; }
.heading-row > div h2 { margin-bottom: 0; }
.heading-note { max-width: 330px; margin: 0 0 5px; font-size: .9rem; line-height: 1.7; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-card { position: relative; min-height: 500px; overflow: hidden; color: var(--white); box-shadow: var(--shadow); }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 600ms ease; }
.service-card:hover img { transform: scale(1.025); }
.service-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.9), rgba(0,0,0,.06) 72%); content: ""; }
.service-card-content { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; padding: 36px 38px; }
.service-card h3 { margin-bottom: 12px; font-size: clamp(1.85rem, 3vw, 2.5rem); font-weight: 500; }
.service-card p { max-width: 500px; margin: 0 0 18px; font-size: .9rem; }
.service-index { position: absolute; right: 38px; bottom: calc(100% - 7px); color: var(--gold); font-family: var(--serif); font-size: .77rem; letter-spacing: .12em; }
.service-link { display: inline-flex; align-items: center; gap: 9px; color: var(--white); font-family: var(--serif); font-size: .86rem; font-weight: 700; text-decoration: none; }
.service-link span { color: var(--gold); transition: transform 180ms ease; }
.service-link:hover span { transform: translateX(4px); }

.feature { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(40px, 7vw, 90px); }
.feature.reverse { grid-template-columns: .95fr 1.05fr; }
.feature.reverse .feature-media { order: 2; }
.feature-media { position: relative; }
.feature-media::before { position: absolute; z-index: -1; inset: 24px -24px -24px 24px; border: 1px solid var(--gold); content: ""; }
.feature-media img { width: 100%; height: auto; object-fit: contain; box-shadow: var(--shadow); }
.feature-copy h2 { color: var(--navy); font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 500; }
.feature-copy p { color: var(--muted); }
.page-opening { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); align-items: start; gap: clamp(50px, 9vw, 120px); }
.lead-copy { width: 100%; max-width: 760px; }
.page-opening-full { grid-template-columns: minmax(0, 1fr); }
.page-opening-full .lead-copy { width: 100%; max-width: none; }
.page-opening-full .lead-copy h2,
.page-opening-full .lead-copy > p:not(.eyebrow) { max-width: none; }
.lead-copy > .eyebrow { margin: 0 0 14px; }
.lead-copy h2 { max-width: 18ch; margin: 0 0 26px; color: var(--navy); font-size: clamp(2.2rem, 4vw, 3.5rem) !important; font-weight: 400; line-height: 1.15; }
.lead-copy > p:not(.eyebrow) { max-width: 70ch; margin: 0; color: #555; font-size: 1.03rem; line-height: 1.78; }
.lead-copy > p:not(.eyebrow) + p:not(.eyebrow) { margin-top: 16px; }
.lead-copy > .button,
.lead-copy > .text-link { margin-top: 30px; }
.page-aside { padding: 30px; border-top: 2px solid var(--gold); background: var(--paper); }
.page-aside h3 { margin-bottom: 18px; color: var(--navy); font-size: 1.25rem; }
.page-aside p { margin-bottom: 0; color: var(--muted); font-size: .88rem; }
.aside-list { margin: 0; padding: 0; list-style: none; }
.aside-list li { display: flex; justify-content: space-between; gap: 20px; padding-block: 13px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.aside-list strong { color: var(--navy); font-family: var(--serif); font-size: 1rem; text-transform: none; letter-spacing: 0; }
.principles-grid, .capability-grid, .process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.principle, .capability, .process-step { position: relative; padding: 30px; border: 1px solid var(--line); background: var(--white); }
.principle span, .capability span, .process-step span { display: block; margin-bottom: 24px; color: var(--gold); font-family: var(--serif); font-size: .75rem; letter-spacing: .12em; }
.principle h3, .capability h3, .process-step h3 { margin-bottom: 12px; color: var(--navy); font-size: 1.28rem; font-weight: 400; }
.principle p, .capability p, .process-step p { margin: 0; color: var(--muted); font-size: .88rem; }
.capability-grid { grid-template-columns: repeat(2, 1fr); }
.capability { min-height: 225px; }
.capability:last-child:nth-child(odd) { grid-column: span 2; }
.process-step::after { position: absolute; top: 42px; right: -18px; width: 18px; height: 1px; background: var(--gold); content: ""; }
.process-step:last-child::after { display: none; }
.content-heading { max-width: 720px; margin-bottom: 46px; }
.content-heading h2 { margin-bottom: 15px; color: var(--navy); font-size: clamp(2.1rem, 3.8vw, 3.25rem); font-weight: 400; }
.content-heading > p:last-child { color: var(--muted); }
.page-quote { margin: 0; padding: clamp(35px, 6vw, 64px); border-left: 2px solid var(--gold); background: var(--navy); color: var(--white); }
.page-quote p { margin: 0; font-family: var(--serif); font-size: clamp(1.35rem, 2.8vw, 2.1rem); line-height: 1.48; }
.page-quote cite { display: block; margin-top: 18px; color: var(--gold); font-size: .69rem; font-style: normal; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-copy h2 { color: var(--navy); font-size: clamp(2.1rem, 3.5vw, 3rem); font-weight: 400; }
.contact-note { margin-top: 36px; padding: 22px; border-left: 2px solid var(--gold); background: var(--paper); color: var(--muted); font-size: .85rem; }
.editorial-section { overflow: hidden; }
.feature-editorial { grid-template-columns: 1.18fr .82fr; gap: clamp(50px, 9vw, 130px); }
.feature-media-only { grid-template-columns: minmax(0, 760px); justify-content: center; }
.feature-media-only .editorial-media { width: 100%; margin-left: 0; }
.feature-media-only .editorial-media img { height: auto !important; object-fit: contain !important; }
.feature-editorial .feature-copy { position: relative; padding: 44px 0 44px 22px; }
.feature-editorial .feature-copy::before { position: absolute; top: 0; bottom: 0; left: 0; width: 1px; background: linear-gradient(transparent, var(--gold) 18%, var(--gold) 82%, transparent); content: ""; }
.editorial-media { margin-left: -6vw; }
.editorial-media::before { inset: 32px -32px -32px 32px; }
.workshop-feature-media,
.workshop-page .feature-media { height: auto; min-height: 0; aspect-ratio: 3 / 2; align-self: center; }
.workshop-feature-media img,
.workshop-page .feature-media img { display: block; width: 100%; height: 100% !important; max-height: none; aspect-ratio: auto; object-fit: cover; object-position: center; }
.image-marker { position: absolute; z-index: 2; right: -18px; bottom: -18px; padding: 10px 14px; background: var(--navy); color: var(--white); font-size: .63rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.selected-section { padding-top: 40px; background: var(--white); }
.selected-section .heading-row { align-items: center; }
.project-strip { display: grid; grid-template-columns: 1.08fr .82fr 1fr; align-items: end; gap: 18px; }
.project-strip-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.project-strip-two .project-image { height: 520px; }
.project-card { margin: 0; }
.project-image { height: 410px; overflow: hidden; background: var(--paper); }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms ease; }
.project-card:hover img { transform: scale(1.025); }
.project-card figcaption { display: grid; gap: 5px; padding: 16px 3px 0; }
.project-card figcaption span { color: var(--gold); font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.project-card figcaption strong { color: var(--navy); font-family: var(--serif); font-size: .94rem; font-weight: 400; }

.team-page-main { background: #f0efec; }
.team-heading { padding: clamp(72px, 9vw, 118px) 0 clamp(54px, 7vw, 82px); text-align: center; }
.team-heading-inner { max-width: 760px; }
.team-heading h1 { margin-bottom: 20px; color: var(--navy); font-size: clamp(3rem, 6vw, 5rem); }
.team-heading p:last-child { max-width: 650px; margin: 0 auto; color: var(--muted); font-size: 1.05rem; }
.team-roster-section { position: relative; isolation: isolate; padding-bottom: clamp(88px, 10vw, 138px); }
.team-roster-section::before { position: absolute; z-index: -1; inset: clamp(105px, 11vw, 155px) 0 0; background: #0a0a0a; content: ""; }
.team-roster-panel { position: relative; padding: clamp(24px, 4.5vw, 54px); border-top: 3px solid var(--gold); background: #fff; box-shadow: 0 28px 75px rgba(0,0,0,.16); }
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 3.2vw, 42px) clamp(20px, 2.8vw, 32px); }
.team-card { min-width: 0; margin: 0; padding: 12px 12px 22px; border: 1px solid rgba(0,0,0,.1); background: #f7f6f2; text-align: center; transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease; }
.team-card:hover { border-color: rgba(200,165,106,.72); box-shadow: 0 16px 34px rgba(0,0,0,.1); transform: translateY(-4px); }
.team-photo { aspect-ratio: 4 / 4.65; overflow: hidden; background: #e5e3df; }
.team-photo img { width: 100%; height: 100% !important; object-fit: cover; object-position: center; transition: transform 500ms ease; }
.team-card:hover .team-photo img { transform: scale(1.025); }
.team-card h2 { position: relative; z-index: 1; width: calc(100% - 28px); min-height: 42px; display: grid; place-items: center; margin: -15px auto 0; padding: 9px 10px; border: 1px solid rgba(0,0,0,.1); background: #fff; color: var(--navy); box-shadow: 0 7px 18px rgba(0,0,0,.08); font-family: var(--sans); font-size: clamp(.68rem, .82vw, .76rem) !important; font-weight: 700; letter-spacing: .115em; line-height: 1.35; text-transform: uppercase; }
.team-information-section { background: var(--white); }
.team-information { max-width: 820px; text-align: center; }
.team-information h2 { margin-bottom: 24px; color: var(--navy); font-size: clamp(2.3rem, 4.6vw, 3.6rem); }
.team-information p:not(.eyebrow) { color: #555; font-size: 1.02rem; line-height: 1.85; }

.page-hero { min-height: 470px; align-items: end; background-position: center; }
.page-hero::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.68) 38%, rgba(0,0,0,.16) 74%); content: ""; }
.page-hero .hero-content { width: min(1120px, calc(100% - 40px)); max-width: none; margin-inline: auto; padding-block: 90px 70px; }
.page-hero .hero-content > * { max-width: 680px; }
.page-hero h1, .page-hero .hero-lead { text-shadow: 0 3px 20px rgba(0,0,0,.46); }
.page-hero h1 { font-size: clamp(3rem, 5.6vw, 4.8rem); }
.about-hero { background-image: url("images/Kinghorn-High-Resolution-34-of-50-1.jpg"); }
.build-hero { min-height: clamp(600px, 76vh, 820px); align-items: center; background-image: url("images/1173-copy.jpg"); }
.build-hero .hero-content { padding-block: 70px; }
.extension-hero { background-image: url("images/Kinghorn-High-Resolution-24-of-50.jpg"); }
.workshop-hero { background-image: url("images/09d251cf-a54e-46b3-b2f8-c8bc29475f0d.jpeg"); background-position: center 42%; }
.contact-hero { background-image: url("images/Kinghorn-High-Resolution-34-of-50-1.jpg"); }

.prose { max-width: 820px; }
.prose h2, .legal h2 { color: var(--navy); font-size: clamp(1.8rem, 3vw, 2.35rem); font-weight: 500; line-height: 1.18; }
.prose p, .prose li, .legal p, .legal li { color: #555; }
.check-list { display: grid; gap: 18px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before { position: absolute; left: 0; top: .15em; color: var(--gold); font-size: 1.25em; content: "✓"; }
.check-list strong { color: var(--navy); }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery figure { margin: 0; overflow: hidden; background: var(--paper); }
.gallery img { width: 100%; height: 320px; object-fit: cover; object-position: center; transition: transform 500ms ease; }
.extensions-page .gallery img { object-fit: cover !important; }
.gallery-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.build-gallery img { height: 330px !important; }
.gallery figure:hover img { transform: scale(1.025); }
.gallery .wide { grid-column: span 2; }

.cta { padding-block: 58px; background: var(--navy-deep); color: var(--white); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta h2 { max-width: 720px; margin: 0; font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-weight: 500; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 8vw, 100px); }
.contact-details { margin: 28px 0 0; padding: 0; list-style: none; }
.contact-details li { margin-bottom: 18px; }
.contact-details a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 4px; }
.contact-form { padding: clamp(26px, 5vw, 50px); background: var(--paper); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; margin-bottom: 7px; color: var(--navy); font-size: .86rem; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #b7bac4;
  border-radius: 0;
  background: var(--white);
  padding: 11px 13px;
  color: var(--ink);
}
.field textarea { min-height: 150px; resize: vertical; }
.form-status { min-height: 1.6em; margin: 14px 0 0; color: var(--navy); font-weight: 600; }
.form-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

.legal { max-width: 780px; }
.legal h1 { color: var(--navy); font-size: clamp(2.75rem, 5vw, 4.2rem); }
.legal h2 { margin-top: 50px; }
.legal h3 { margin-top: 32px; color: var(--navy); font-size: 1.45rem; }
.privacy-page .legal h1 { font-size: clamp(1.4rem, 2.5vw, 2.1rem); }
.privacy-page .legal h2 { font-size: 24px !important; }

.site-footer { position: relative; background: #050505; color: rgba(255,255,255,.78); }
.site-footer::before { position: absolute; top: 0; right: 0; left: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold) 18%, var(--gold) 82%, transparent); content: ""; opacity: .75; }
.footer-main { padding-block: 66px; display: grid; grid-template-columns: 1.2fr .8fr .8fr; align-items: start; gap: 60px; }
.footer-main > div { align-self: start; }
.footer-main > div > :first-child { margin-top: 0; }
.footer-main > div:first-child > p { margin-bottom: 0; }
.footer-intro > p { max-width: 390px; color: rgba(255,255,255,.66); font-size: .88rem; }
.footer-intro address { margin-top: 18px; font-style: normal; font-size: .82rem; line-height: 1.65; }
.footer-kicker { margin: 0; color: var(--gold); font-size: .64rem; font-weight: 700; line-height: 1.68; letter-spacing: .12em; text-transform: uppercase; }
.footer-main h2 { margin: 0; color: var(--gold); font-family: var(--sans); font-size: .64rem !important; font-weight: 700; line-height: 1.68; letter-spacing: .12em; text-transform: uppercase; }
.footer-main ul { margin: 0; padding: 0; list-style: none; }
.footer-main li { margin-bottom: 8px; }
.footer-main a { text-decoration: none; }
.footer-main a:hover { color: var(--white); text-decoration: underline; }
.footer-main .footer-cta { margin-top: 14px; color: var(--navy); }
.footer-main .footer-cta:hover { color: var(--white); text-decoration: none; }
.footer-social { display: flex; gap: 16px; margin-top: 22px; font-size: .76rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom-inner { position: relative; min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .76rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.admin-link { opacity: .62; font-size: .69rem; letter-spacing: .04em; text-transform: uppercase; }
.admin-link[aria-expanded="true"] { color: var(--gold); opacity: 1; }
.footer-admin-login { width: 0; max-width: 0; max-height: 0; flex: 0 1 0; overflow: hidden; opacity: 0; visibility: hidden; transition: max-width 320ms ease, opacity 220ms ease; }
.footer-admin-login.is-open { width: auto; max-width: 650px; max-height: 52px; flex: 1 1 650px; overflow: visible; opacity: 1; visibility: visible; }
.footer-admin-login-form { position: relative; width: 100%; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.footer-admin-login-form label { min-width: 120px; flex: 1 1 170px; }
.footer-admin-login-form input { width: 100%; height: 42px; padding: 8px 11px; border: 1px solid rgba(255,255,255,.24); border-radius: 6px; outline: 0; background: #171717; color: #fff; font: 500 .76rem var(--sans); }
.footer-admin-login-form input::placeholder { color: rgba(255,255,255,.5); }
.footer-admin-login-form input:focus { border-color: #e66f5c; box-shadow: 0 0 0 3px rgba(230,111,92,.18); }
.footer-admin-submit, .footer-admin-close { min-height: 42px; padding: 9px 15px; border: 1px solid rgba(255,255,255,.22); border-radius: 6px; color: #fff; font: 600 .7rem var(--sans); cursor: pointer; }
.footer-admin-submit { border-color: #e66f5c; background: #e66f5c; }
.footer-admin-submit:hover { border-color: #bc4e3f; background: #bc4e3f; color: #fff; }
.footer-admin-submit:disabled { cursor: wait; opacity: .7; }
.footer-admin-close { background: transparent; }
.footer-admin-close:hover { border-color: rgba(255,255,255,.5); background: #fff; color: #111; }
.footer-admin-status { position: absolute; right: 0; bottom: calc(100% + 8px); display: none; margin: 0; padding: 7px 10px; border: 1px solid rgba(230,111,92,.45); border-radius: 5px; background: #171717; color: #f1a79b; font-size: .67rem; font-weight: 600; box-shadow: 0 8px 24px rgba(0,0,0,.28); }
.footer-admin-status:not(:empty) { display: block; }
.footer-admin-auth-bridge { position: fixed; width: 1px; height: 1px; inset: auto auto 0 0; border: 0; opacity: 0; pointer-events: none; }

[data-reveal] { transition: opacity 620ms ease, transform 620ms ease; }
[data-reveal].reveal-pending { opacity: 0; transform: translateY(24px); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

.admin-page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 24px;
  background: radial-gradient(circle at top, #252525 0, var(--navy-deep) 44%, #000 100%);
}
.admin-page::before {
  position: absolute;
  z-index: -1;
  inset: 0 30% 0 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='72' viewBox='0 0 84 72'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1'%3E%3Cpath d='M21 1 41 12.5v23L21 47 1 35.5v-23L21 1ZM63 25l20 11.5v23L63 71 43 59.5v-23L63 25Z'/%3E%3C/g%3E%3C/svg%3E");
  background-position: left bottom;
  background-size: 84px 72px;
  content: "";
  opacity: .2;
  -webkit-mask-image: linear-gradient(to top, #000 0%, #000 8%, transparent 50%);
  mask-image: linear-gradient(to top, #000 0%, #000 8%, transparent 50%);
  pointer-events: none;
}
.auth-card {
  position: relative;
  z-index: 1;
  width: min(370px, 100%);
  padding: clamp(28px, 5vw, 38px);
  background: var(--white);
  box-shadow: 0 22px 70px rgba(0,0,0,.32);
}
.auth-brand { margin-bottom: 20px; color: var(--navy); font-family: var(--sans); font-size: 1.18rem; font-weight: 800; letter-spacing: -.04em; text-decoration: none; }
.auth-brand span { color: var(--gold); }
.auth-brand .admin-brand-suffix { color: inherit; opacity: .5; }
.auth-card h1 { margin-bottom: 7px; color: var(--navy); font-size: 2rem; }
.auth-card > p { margin: 0 0 20px; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.auth-card .field { margin-bottom: 14px; }
.auth-card .field label { margin-bottom: 5px; font-size: .79rem; }
.auth-card .field input { min-height: 43px; padding: 8px 11px; }
.auth-card .button { width: 100%; cursor: pointer; }
.auth-note { margin: 16px 0 0 !important; font-size: .7rem !important; line-height: 1.5 !important; text-align: center; }
.back-link { display: block; margin-top: 13px; color: var(--navy); font-size: .75rem; text-align: center; }

@media (max-width: 1080px) {
  .nav-inner { padding-block: 17px; }
  .brand { width: 220px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    z-index: 1;
    top: 100%;
    right: 0;
    left: 0;
    max-height: calc(100dvh - 155px);
    padding: 14px 20px calc(20px + env(safe-area-inset-bottom));
    overflow-y: auto;
    background: var(--navy-deep);
    border-top: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 18px 36px rgba(0,0,0,.3);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }
  .site-nav.open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
  .site-nav ul {
    width: min(1120px, 100%);
    margin-inline: auto;
    padding: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }
  .site-nav li + li { border-top: 1px solid rgba(255,255,255,.1); }
  .site-nav .mobile-admin-link { display: list-item; }
  .site-nav a { min-height: 48px; padding: 13px 16px; font-size: 1rem; }
  .site-nav a::after { right: 16px; bottom: 8px; left: 16px; }
}

@media (max-width: 940px) {
  .nav-inner { padding-block: 17px; }
  .brand { width: 220px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    z-index: 1;
    top: 100%;
    right: 0;
    left: 0;
    /* Leaves room for the contact bar and header, including in landscape. */
    max-height: calc(100dvh - 155px);
    padding: 14px 20px calc(20px + env(safe-area-inset-bottom));
    overflow-y: auto;
    background: var(--navy-deep);
    border-top: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 18px 36px rgba(0,0,0,.3);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }
  .site-nav.open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
  .site-nav ul {
    width: min(1120px, 100%);
    margin-inline: auto;
    padding: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }
  .site-nav li + li { border-top: 1px solid rgba(255,255,255,.1); }
  .site-nav .mobile-admin-link { display: list-item; }
  .site-nav a { min-height: 48px; padding: 13px 16px; font-size: 1rem; }
  .site-nav a::after { right: 16px; bottom: 8px; left: 16px; }
  .services-grid, .feature, .feature.reverse, .contact-layout { grid-template-columns: 1fr; }
  .page-opening { grid-template-columns: 1fr; }
  .principles-grid, .process-grid { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
  .feature.reverse .feature-media { order: initial; }
  .service-card { min-height: 480px; }
  .heading-row { align-items: start; flex-direction: column; gap: 20px; }
  .feature-editorial { grid-template-columns: 1fr; }
  .editorial-media { margin-left: 0; }
  .feature-editorial .feature-copy { padding: 20px 0 20px 22px; }
  .project-strip { grid-template-columns: 1fr 1fr; }
  .project-card:last-child { grid-column: span 2; width: 66%; justify-self: center; }
  .project-strip-two .project-card:last-child { grid-column: auto; width: auto; justify-self: stretch; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > :first-child { grid-column: span 2; }
}

@media (max-width: 640px) {
  body { line-height: 1.65; }
  .container { width: min(100% - 30px, 1120px); }
  .topbar-inner { min-height: 42px; justify-content: center; }
  .contact-strip { width: 100%; justify-content: space-between; gap: 8px; }
  .contact-strip a { min-width: 0; font-size: .68rem; }
  .contact-strip a:last-child span { max-width: 205px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .socials { display: none; }
  .nav-inner { gap: 14px; padding-block: 14px; }
  .brand { width: min(205px, calc(100vw - 95px)); }
  .site-nav { padding-inline: 15px; }
  .home-hero { min-height: 660px; background-position: 41% center; }
  .hero-content { padding-block: 80px 55px; }
  .home-hero .hero-content { width: min(100% - 30px, 1120px); padding-block: 64px 72px; }
  .hero-location { margin-bottom: 28px; font-size: .62rem; }
  .scroll-cue { display: none; }
  h1 { font-size: clamp(2.75rem, 12vw, 3.7rem); line-height: 1.06; }
  .page-hero h1 { font-size: clamp(2.65rem, 11vw, 3.4rem); }
  .hero-lead { font-size: 1rem; line-height: 1.6; }
  .eyebrow { font-size: .7rem; letter-spacing: .15em; }
  .intro h2, .section-heading h2 { font-size: 2.05rem; line-height: 1.18; }
  .intro p { font-size: 1.08rem; line-height: 1.72; }
  .feature-copy h2 { font-size: 2.2rem; line-height: 1.15; }
  .lead-copy h2 { margin-bottom: 20px; font-size: 2.05rem !important; line-height: 1.18; }
  .lead-copy > p:not(.eyebrow) { font-size: .98rem; line-height: 1.72; }
  .lead-copy > .button, .lead-copy > .text-link { margin-top: 24px; }
  .content-heading h2, .contact-copy h2 { font-size: 2.05rem; line-height: 1.18; }
  .service-card h3 { font-size: 1.95rem; }
  .legal h1 { font-size: 2.45rem; line-height: 1.12; }
  .prose h2, .legal h2 { font-size: 1.72rem; line-height: 1.22; }
  .legal h3 { font-size: 1.28rem; }
  .cta h2 { font-size: 1.9rem; line-height: 1.18; }
  .admin-page { padding: 18px; }
  .admin-page::before { right: 0; background-size: 72px 62px; }
  .auth-card { width: min(350px, 100%); padding: 28px; }
  .auth-card h1 { font-size: 1.9rem; }
  .button-row .button { width: 100%; }
  .home-hero .button-row { align-items: stretch; flex-direction: column; }
  .home-hero .text-link { justify-content: center; padding-block: 12px; }
  .section { padding-block: 72px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { min-height: 118px; }
  .proof-item + .proof-item { border-top: 1px solid var(--line); border-left: 0; }
  .services-grid { gap: 18px; }
  .service-card { min-height: 430px; }
  .service-card-content { padding: 28px; }
  .feature { gap: 50px; }
  .feature-media::before { inset: 14px -10px -14px 10px; }
  .feature-editorial .feature-copy { padding: 8px 0 8px 17px; }
  .image-marker { right: -6px; bottom: -9px; }
  .selected-section { padding-top: 18px; }
  .project-strip { grid-template-columns: 1fr; gap: 36px; }
  .project-card:last-child { grid-column: auto; width: 100%; }
  .project-strip-two .project-image { height: 350px; }
  .team-heading { padding-top: 68px; }
  .team-grid { grid-template-columns: 1fr; gap: 42px; }
  .team-roster-section::before { inset-block-start: 80px; }
  .team-roster-panel { padding: 16px; }
  .team-card { max-width: 370px; width: 100%; margin-inline: auto; padding: 10px 10px 20px; }
  .team-card h2 { font-size: .69rem !important; }
  .project-tall .project-image, .project-short .project-image, .project-medium .project-image { height: 350px; }
  .page-hero { min-height: 390px; }
  .build-hero { min-height: 660px; }
  .page-hero .hero-content { padding-block: 75px 50px; }
  .build-hero .hero-content { padding-block: 60px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery .wide { grid-column: auto; }
  .gallery img { height: 290px; }
  .build-gallery img { height: 290px !important; }
  .cta-inner { align-items: stretch; flex-direction: column; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability, .capability:last-child:nth-child(odd) { grid-column: auto; min-height: 0; }
  .principle, .capability, .process-step { padding: 25px; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-main > :first-child { grid-column: auto; }
  .footer-bottom-inner { padding-block: 20px; align-items: flex-start; flex-direction: column; }
  .footer-bottom-inner.admin-login-open { min-height: 70px; padding-block: 14px; align-items: center; flex-direction: row; }
  .footer-bottom-inner.admin-login-open > span,
  .footer-bottom-inner.admin-login-open > .footer-links { display: none; }
  .footer-admin-login.is-open { width: 100%; max-width: none; flex: 1 1 auto; }
}

@media (max-width: 560px) {
  .footer-admin-login-form { gap: 5px; }
  .footer-admin-login-form label { min-width: 0; }
  .footer-admin-login-form label:first-child { flex-basis: 130px; }
  .footer-admin-login-form label:nth-child(2) { flex-basis: 95px; }
  .footer-admin-login-form input { padding-inline: 8px; font-size: .69rem; }
  .footer-admin-submit, .footer-admin-close { padding-inline: 9px; font-size: .64rem; }
}

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