:root {
  --bg: #0a0a0a;
  --bg-elevated: #121212;
  --ink: #f3efe6;
  --muted: #a39a8a;
  --gold: #b88e4f;
  --gold-bright: #d4a85c;
  --gold-deep: #8a6836;
  --line: rgba(184, 142, 79, 0.28);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", sans-serif;
  --max: 1120px;
  --header-h: 74px;
  --section-y: clamp(5rem, 9vw, 6.75rem);
  --section-x: clamp(1.25rem, 4vw, 2.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0;
}

p {
  margin: 0;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.55) 70%, transparent);
  backdrop-filter: blur(8px);
  transition: background 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.94);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.7vw, 1.15rem);
  letter-spacing: 0.05em;
  color: var(--gold-bright);
  font-weight: 600;
  white-space: nowrap;
}

.brand-text span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--gold-bright);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.header-cta {
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #120e08;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), filter 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-sm {
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
}

.btn-ghost {
  background: transparent;
  color: var(--gold-bright);
  border: 1px solid var(--gold);
}

.btn-ghost:hover {
  filter: none;
  background: rgba(184, 142, 79, 0.1);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 2rem) 1.25rem 4rem;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.06);
  animation: heroDrift 22s var(--ease) infinite alternate;
  filter: saturate(0.85) contrast(1.05);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.72) 0%, rgba(8, 8, 8, 0.55) 35%, rgba(8, 8, 8, 0.82) 70%, rgba(8, 8, 8, 0.96) 100%),
    radial-gradient(ellipse 55% 50% at 50% 42%, rgba(184, 142, 79, 0.16), transparent 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(184, 142, 79, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 142, 79, 0.35) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(8, 8, 8, 0);
  border: 1px solid transparent;
  box-shadow: none;
  overflow: hidden;
}

.hero-content.is-built {
  background: rgba(8, 8, 8, 0.38);
  border-color: rgba(184, 142, 79, 0.18);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  transition:
    background 0.4s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.hero-content.is-resetting {
  transition: none;
}

/* Frame draws like scaffolding */
.hero-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hf {
  position: absolute;
  background: var(--gold);
  opacity: 0;
  transform-origin: center;
}

.hf-t,
.hf-b {
  left: 0;
  width: 0;
  height: 1px;
}

.hf-t { top: 0; }
.hf-b { bottom: 0; }

.hf-l,
.hf-r {
  top: 0;
  height: 0;
  width: 1px;
}

.hf-l { left: 0; }
.hf-r { right: 0; }

.hero-content.is-building .hf-t {
  animation: drawX 0.5s var(--ease) 0.05s forwards;
}
.hero-content.is-building .hf-r {
  animation: drawY 0.5s var(--ease) 0.32s forwards;
}
.hero-content.is-building .hf-b {
  animation: drawX 0.5s var(--ease) 0.58s forwards;
}
.hero-content.is-building .hf-l {
  animation: drawY 0.5s var(--ease) 0.84s forwards;
}

.hero-content.is-built .hf {
  opacity: 0 !important;
  transition: opacity 0.35s ease;
}

@keyframes drawX {
  from { width: 0; opacity: 0.9; }
  to { width: 100%; opacity: 0.9; }
}

@keyframes drawY {
  from { height: 0; opacity: 0.9; }
  to { height: 100%; opacity: 0.9; }
}

.build-piece {
  opacity: 0;
  transform: translateY(28px) scale(0.96);
}

.hero-content.is-building .build-piece {
  animation: buildPiece 0.65s var(--ease) forwards;
  animation-delay: calc(1.05s + (var(--build, 1) - 1) * 0.14s);
}

.hero-content.is-built .build-piece {
  opacity: 1;
  transform: none;
  animation: none;
}

@keyframes buildPiece {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  60% {
    opacity: 1;
    transform: translateY(-4px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-logo {
  width: min(200px, 48vw);
  height: auto;
  margin: 0 auto 1.1rem;
  filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.65));
  display: block;
}

.hero-name {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.35rem;
}

.hero-tag {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  color: var(--ink);
  margin-bottom: 1.1rem;
}

.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: #d9d2c4;
  max-width: 38rem;
  margin: 0 auto 1rem;
  line-height: 1.5;
}

.hero-offer {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 auto 2rem;
  max-width: 40rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.scroll-cue span {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: cue 1.6s var(--ease) infinite;
}

@keyframes cue {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

@keyframes heroDrift {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.08) translateY(-1.5%); }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.48s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: var(--section-y) var(--section-x);
  max-width: var(--max);
  margin: 0 auto;
}

.section + .section {
  border-top: 1px solid rgba(184, 142, 79, 0.14);
}

.section-head {
  max-width: 38rem;
  margin-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.section h2 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  margin-bottom: 0.9rem;
}

.section-lead {
  color: var(--muted);
  font-size: 1.02rem;
}

/* Services */
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  align-items: start;
  background: #0e0e0e;
  transition: background 0.3s ease;
}

.service-item:hover {
  background: #141210;
}

.service-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  padding-top: 0.15rem;
}

.service-item h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  margin-bottom: 0.45rem;
}

.service-item p {
  color: var(--muted);
  max-width: none;
  font-size: 0.95rem;
}

/* Projects */
.projects {
  max-width: var(--max);
}

.projects .section-head {
  max-width: 42rem;
}

.project-story {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(3.25rem, 6.5vw, 4.75rem);
  padding-left: 0.35rem;
}

.project-story::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0.55rem;
  bottom: 8.5rem;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    #e0b35a 0%,
    #d4a85c 28%,
    #c4894a 55%,
    #b88e4f 78%,
    #a67c3d 100%
  );
  box-shadow: 0 0 14px rgba(212, 168, 92, 0.25);
}

.project-story::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 0.55rem;
  bottom: 8.5rem;
  width: 8px;
  border-radius: 999px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 42%,
    rgba(255, 236, 190, 0.05) 48%,
    rgba(255, 244, 210, 0.95) 50%,
    rgba(255, 236, 190, 0.05) 52%,
    transparent 58%,
    transparent 100%
  );
  background-size: 100% 220%;
  background-repeat: no-repeat;
  animation: threadShine 9.5s linear infinite;
  mix-blend-mode: screen;
  opacity: 0.9;
  filter: blur(0.2px);
}

@keyframes threadShine {
  0% {
    background-position: 0 -40%;
  }
  100% {
    background-position: 0 140%;
  }
}

.project-chapter {
  --branch-w: 5cm;
  --icon-w: 30px;
  --copy-gap: 0.85rem;
  --rail-inset: calc(var(--icon-w) + var(--branch-w) + var(--copy-gap));
  --chapter-accent: #d4a85c;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.project-chapter:nth-child(1) {
  --chapter-accent: #e0b35a;
}

.project-chapter:nth-child(2) {
  --chapter-accent: #d4a85c;
}

.project-chapter:nth-child(3) {
  --chapter-accent: #d4a85c;
}

.chapter-head {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 56rem;
}

.chapter-icon {
  position: relative;
  z-index: 1;
  flex: 0 0 var(--icon-w);
  display: grid;
  place-items: center;
  width: var(--icon-w);
  height: var(--icon-w);
  color: var(--chapter-accent, var(--gold-bright));
  background: var(--bg);
  border: 1px solid color-mix(in srgb, var(--chapter-accent, var(--gold)) 70%, transparent);
  box-shadow: 0 0 12px color-mix(in srgb, var(--chapter-accent, var(--gold)) 28%, transparent);
}

.chapter-icon svg {
  width: 16px;
  height: 16px;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.chapter-branch {
  flex: 0 0 var(--branch-w);
  width: var(--branch-w);
  min-width: var(--branch-w);
  height: 4px;
  margin-top: 13px;
  background: var(--chapter-accent, var(--gold));
  border-radius: 999px;
}

.chapter-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  padding-left: var(--copy-gap);
}

.project-chapter > .project-block {
  margin-left: var(--rail-inset);
  max-width: calc(100% - var(--rail-inset));
}

.chapter-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.15rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: var(--chapter-accent, var(--gold-bright));
  text-transform: none;
}

.chapter-text {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.project-block-head {
  margin-bottom: 1.15rem;
  max-width: 40rem;
}

.project-block-head h4 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.45rem;
}

.project-block-head > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.55rem;
}

.project-story-line {
  color: #cfc6b4 !important;
  font-size: 1.02rem !important;
  line-height: 1.5;
  max-width: 38rem;
}

.project-status {
  display: inline-block;
  margin-right: 0.55rem;
  padding: 0.15rem 0.55rem;
  border: 1px solid var(--line);
  color: var(--gold-bright);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: 0.1em;
}

.project-closing {
  margin: 3.25rem 0 0;
  margin-left: calc(30px + 5cm + 0.85rem);
  padding-top: 2rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  border-top: 1px solid rgba(184, 142, 79, 0.22);
}

.project-closing a {
  display: inline-block;
  margin-top: 0.65rem;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(184, 142, 79, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.project-closing a:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.project-photos {
  display: grid;
  gap: 0.75rem;
}

.project-photos img {
  width: 100%;
  height: auto;
  display: block;
  background: #0a0a0a;
}

.project-photos-1 {
  grid-template-columns: min(100%, 860px);
}

.project-photos-2 {
  grid-template-columns: 1fr 1fr;
}

.project-photos-3 {
  grid-template-columns: 1fr 1fr;
}

.project-photos-3 img:nth-child(1) {
  grid-column: 1 / -1;
  max-width: 920px;
}

/* Experience */
.experience {
  max-width: none;
  padding-left: var(--section-x);
  padding-right: var(--section-x);
}

.experience-panel {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(184, 142, 79, 0.12), transparent 55%),
    linear-gradient(180deg, #121212, #0d0d0d);
  border: 1px solid var(--line);
}

.experience-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.experience-copy blockquote {
  margin: 1.75rem 0 0;
  padding: 0;
  border: none;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.55rem;
  color: var(--gold-bright);
}

.experience-stats {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat {
  background: #101010;
  padding: 1.25rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--gold-bright);
  font-weight: 600;
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Contact */
.contact-panel {
  display: grid;
  gap: 2.25rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(184, 142, 79, 0.1), transparent 60%);
  transition: border-color 0.25s ease, transform 0.25s var(--ease);
}

.contact-link:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-value {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--gold-bright);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form .full,
.full-btn {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  font-size: 1rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
  background: #101010;
  border: 1px solid var(--line);
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-note.is-success {
  color: var(--gold-bright);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(2.25rem, 5vw, 3rem) var(--section-x) 2.25rem;
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  text-align: center;
  background: #080808;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.footer-brand span,
.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.15rem;
}

/* Responsive */
@media (max-width: 900px) {
  .experience-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.25s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(184, 142, 79, 0.12);
  }

  .nav-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .brand-text span {
    display: none;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 3rem 1fr;
    padding: 1.4rem 1.15rem;
  }

  .contact-cards,
  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .project-chapter {
    --branch-w: min(5cm, 28vw);
    --copy-gap: 0.65rem;
  }

  .project-story::before,
  .project-story::after {
    bottom: 9.5rem;
  }

  .project-closing {
    margin-left: calc(30px + min(5cm, 28vw) + 0.65rem);
  }

  .project-photos-2,
  .project-photos-3 {
    grid-template-columns: 1fr;
  }

  .project-photos-3 img:nth-child(1) {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .build-piece,
  .hf,
  .hero-content,
  .hero-bg,
  .scroll-cue span,
  .project-story::after {
    animation: none !important;
  }

  .project-story::after {
    display: none;
  }
  .reveal,
  .build-piece {
    opacity: 1;
    transform: none;
  }
  .hero-content,
  .hero-content.is-built {
    background: rgba(8, 8, 8, 0.38);
    border-color: rgba(184, 142, 79, 0.18);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  }
  .hf { display: none; }
}
