:root {
  --ink: #0a0a09;
  --ink-soft: #12110f;
  --panel: #171614;
  --copper: #c8915c;
  --copper-light: #e1b683;
  --cream: #f1ebe2;
  --paper: #e9e2d8;
  --muted: #a9a39a;
  --line: rgba(225, 182, 131, 0.24);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--cream);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.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;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.65rem 1rem;
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus { transform: none; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 6.5rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 5rem);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-lockup {
  width: clamp(13rem, 18vw, 17.5rem);
  height: auto;
}

.nav-links { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 3.5rem); }
.nav-links a {
  position: relative;
  color: rgba(255,255,255,0.86);
  font-size: 0.83rem;
  font-weight: 550;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 1px;
  background: var(--copper-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image { object-fit: cover; object-position: center; z-index: -3; }
.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8,8,7,0.94) 0%, rgba(8,8,7,0.72) 39%, rgba(8,8,7,0.18) 72%, rgba(8,8,7,0.2) 100%),
    linear-gradient(0deg, rgba(8,8,7,0.8) 0%, transparent 36%);
}

.hero-content {
  width: min(45rem, calc(100% - 2.5rem));
  margin: 5.2rem 0 5rem clamp(1.25rem, 8vw, 9.5rem);
  padding: clamp(2rem, 5vw, 4.8rem) clamp(1.5rem, 4vw, 4rem);
  border-left: 1px solid var(--copper);
  background: linear-gradient(100deg, rgba(10,10,9,0.62), rgba(10,10,9,0.05));
  backdrop-filter: blur(2px);
}

.eyebrow {
  margin: 0 0 1.4rem;
  color: var(--copper-light);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.27em;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; }
h1 { max-width: 10ch; margin-bottom: 1.6rem; font-size: clamp(3.25rem, 6.6vw, 7.2rem); line-height: 0.95; letter-spacing: -0.035em; text-wrap: balance; }
h2 { margin-bottom: 1.4rem; font-size: clamp(2.45rem, 5vw, 5.6rem); line-height: 0.98; letter-spacing: -0.03em; text-wrap: balance; }
h3 { line-height: 1.25; }

.hero-copy { max-width: 37rem; margin-bottom: 2rem; color: rgba(255,255,255,0.78); font-size: clamp(1.03rem, 1.6vw, 1.28rem); }
.hero-copy strong { color: var(--cream); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  padding: 0.9rem 1.5rem;
  border: 1px solid transparent;
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--copper); color: #11100e; }
.button-primary:hover, .button-primary:focus-visible { background: var(--copper-light); }
.button-link { padding-inline: 0; border-bottom-color: rgba(255,255,255,0.45); }
.button-link:hover, .button-link:focus-visible { border-bottom-color: var(--copper-light); color: var(--copper-light); }

.hero-steps {
  position: absolute;
  right: clamp(1.25rem, 4vw, 5rem);
  bottom: 2.3rem;
  display: flex;
  gap: 2rem;
  color: rgba(255,255,255,0.62);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.7rem;
  width: 2rem;
  height: 3.6rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2rem;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 0.65rem;
  left: calc(50% - 2px);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--copper-light);
  animation: scroll 1.8s ease-in-out infinite;
}

@keyframes scroll { 0% { transform: translateY(0); opacity: 0; } 25% { opacity: 1; } 75% { opacity: 1; } 100% { transform: translateY(1.6rem); opacity: 0; } }

.section { padding: clamp(6rem, 11vw, 10rem) clamp(1.25rem, 7vw, 8rem); }
.offer { background: var(--paper); color: var(--ink); }
.section-heading { display: grid; grid-template-columns: 0.55fr 1.35fr 0.75fr; gap: 3rem; align-items: start; margin-bottom: clamp(3.5rem, 7vw, 6rem); }
.section-heading .eyebrow { padding-top: 0.65rem; color: #9a6537; }
.section-heading h2 { max-width: 16ch; }
.section-heading > p:last-child { max-width: 33rem; padding-top: 0.65rem; color: #625e58; }

.offer-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border-top: 1px solid rgba(10,10,9,0.22); }
.offer-card { min-height: 26rem; display: flex; flex-direction: column; padding: 2rem clamp(1rem, 2vw, 2rem); border-right: 1px solid rgba(10,10,9,0.2); transition: background 220ms ease, color 220ms ease; }
.offer-card:first-child { border-left: 1px solid rgba(10,10,9,0.2); }
.offer-card:hover { background: var(--ink-soft); color: var(--cream); }
.offer-number { color: #9a6537; font-size: 0.74rem; letter-spacing: 0.12em; }
.offer-card h3 { margin: auto 0 1rem; font-family: var(--serif); font-size: clamp(1.9rem, 2.5vw, 2.8rem); font-weight: 400; }
.offer-card p { color: #656059; }
.offer-card:hover p { color: #c8c1b8; }
.offer-card a { align-self: flex-start; margin-top: 1.25rem; padding-bottom: 0.22rem; border-bottom: 1px solid currentColor; font-size: 0.8rem; font-weight: 650; letter-spacing: 0.05em; text-decoration: none; text-transform: uppercase; }
.offer-card a span { color: var(--copper); }

.featured-projects { background: #dcd9d4; color: var(--ink); }
.featured-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.35fr 0.75fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}
.featured-heading .eyebrow { padding-top: 0.65rem; color: #845629; }
.featured-heading h2 { max-width: 15ch; }
.featured-heading > p:last-child { max-width: 32rem; padding-top: 0.65rem; color: #5d5a55; }
.project-stories { display: grid; gap: clamp(4rem, 8vw, 8rem); }
.project-story { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr); min-height: 35rem; background: var(--paper); }
.project-story:nth-child(even) { grid-template-columns: minmax(20rem, 0.85fr) minmax(0, 1.15fr); }
.project-story:nth-child(even) figure { order: 2; }
.project-story figure { min-height: 35rem; margin: 0; overflow: hidden; background: #c7c2bb; }
.project-story img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.75,.25,1); }
.project-story:hover img { transform: scale(1.025); }
.project-story-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.2rem, 5vw, 5rem); }
.project-index { color: #8a592d; font-size: 0.72rem; font-weight: 650; letter-spacing: 0.14em; }
.project-story h3 { margin: 1.2rem 0 1.25rem; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 400; line-height: 1.05; }
.project-story-copy > p { max-width: 35rem; color: #625e58; }
.project-story dl { margin: 2rem 0 0; border-top: 1px solid rgba(10,10,9,0.2); }
.project-story dl div { display: grid; grid-template-columns: 7rem 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(10,10,9,0.16); }
.project-story dt { color: #82542b; font-size: 0.7rem; font-weight: 650; letter-spacing: 0.1em; text-transform: uppercase; }
.project-story dd { margin: 0; font-size: 0.92rem; }

.gallery { background: #0c0b0a; }
.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}
.gallery-heading h2 { max-width: 11ch; margin-bottom: 0; }
.gallery-intro { max-width: 31rem; padding-bottom: 0.5rem; }
.gallery-intro > p { color: var(--muted); }
.gallery-intro .text-link { margin-top: 0.75rem; }

.gallery-grid {
  column-count: 3;
  column-gap: clamp(0.75rem, 1.4vw, 1.35rem);
}
.gallery-card {
  display: inline-block;
  width: 100%;
  min-width: 0;
  margin: 0 0 clamp(0.75rem, 1.4vw, 1.35rem);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cream);
  font: inherit;
  text-align: left;
  cursor: zoom-in;
  break-inside: avoid;
}
.gallery-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--panel);
}
.gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 600ms cubic-bezier(.2,.75,.25,1), filter 300ms ease;
}
.gallery-card figcaption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  background: linear-gradient(0deg, rgba(7,7,6,0.92), rgba(7,7,6,0));
}
.gallery-card figcaption span {
  color: var(--copper-light);
  font-size: 0.69rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.gallery-card figcaption strong {
  max-width: 16rem;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
  text-align: right;
}
.gallery-card:hover img,
.gallery-card:focus-visible img { transform: scale(1.035); filter: brightness(1.06); }
.gallery-card:focus-visible { outline-offset: 5px; }
.gallery-note { max-width: 45rem; margin: 2rem 0 0; color: #817c74; font-size: 0.85rem; }

.testimonials { background: var(--paper); color: var(--ink); }
.testimonials-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.35fr 0.75fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}
.testimonials-heading .eyebrow { padding-top: 0.65rem; color: #9a6537; }
.testimonials-heading h2 { max-width: 14ch; }
.testimonials-heading > p:last-child { max-width: 31rem; padding-top: 0.65rem; color: #625e58; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(10,10,9,0.22); }
.testimonial-card {
  min-height: 27rem;
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.7rem);
  border-right: 1px solid rgba(10,10,9,0.2);
}
.testimonial-card:first-child { border-left: 1px solid rgba(10,10,9,0.2); }
.testimonial-mark { height: 4rem; color: #9a6537; font-family: var(--serif); font-size: 5.5rem; line-height: 1; }
.testimonial-card blockquote { margin: auto 0 2.4rem; }
.testimonial-card blockquote p { margin: 0; font-family: var(--serif); font-size: clamp(1.45rem, 2.1vw, 2.15rem); line-height: 1.28; }
.testimonial-card footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.25rem; padding-top: 1.3rem; border-top: 1px solid rgba(10,10,9,0.16); }
.testimonial-card footer div { display: grid; gap: 0.1rem; }
.testimonial-card footer strong { font-size: 0.86rem; letter-spacing: 0.08em; text-transform: uppercase; }
.testimonial-card footer div span { color: #6b665f; font-size: 0.8rem; }
.testimonial-card footer a { color: #7f4f28; font-size: 0.72rem; font-weight: 650; letter-spacing: 0.06em; text-decoration: none; text-transform: uppercase; }
.testimonial-card footer a:hover,
.testimonial-card footer a:focus-visible { color: var(--ink); }
.testimonials-note { margin: 1.5rem 0 0; color: #746e66; font-size: 0.78rem; }

.gallery-lightbox {
  width: min(92vw, 92rem);
  max-width: none;
  padding: 0;
  border: 1px solid rgba(225,182,131,0.3);
  background: #090908;
  color: var(--cream);
  overflow: visible;
}
.gallery-lightbox::backdrop { background: rgba(0,0,0,0.9); backdrop-filter: blur(5px); }
.gallery-lightbox figure { margin: 0; }
.gallery-lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #050504;
}
.gallery-lightbox figcaption {
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  padding: 0.8rem 1.2rem;
  color: var(--copper-light);
  font-family: var(--serif);
  font-size: 1.1rem;
}
.gallery-close,
.gallery-arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  background: rgba(8,8,7,0.82);
  color: white;
  cursor: pointer;
}
.gallery-close { top: -1.2rem; right: -1.2rem; width: 3rem; height: 3rem; font-size: 1.8rem; line-height: 1; }
.gallery-arrow { top: 50%; width: 3.25rem; height: 3.25rem; font-size: 1.25rem; transform: translateY(-50%); }
.gallery-prev { left: -1.65rem; }
.gallery-next { right: -1.65rem; }
.gallery-close:hover,
.gallery-arrow:hover,
.gallery-close:focus-visible,
.gallery-arrow:focus-visible { border-color: var(--copper-light); color: var(--copper-light); }

.material-band { min-height: 8rem; display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 4vw, 4.5rem); padding: 2rem; background: var(--copper); color: var(--ink); }
.material-band p { margin: 0; font-family: var(--serif); font-size: clamp(1.3rem, 2.5vw, 2.5rem); letter-spacing: 0.14em; }
.material-band span { width: clamp(2rem, 8vw, 8rem); height: 1px; background: rgba(10,10,9,0.5); }

.process { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(28rem, 1.2fr); gap: clamp(4rem, 10vw, 11rem); background: var(--ink-soft); }
.process-intro { position: sticky; top: 3rem; align-self: start; }
.process-intro h2 { max-width: 9ch; }
.process-intro > p:not(.eyebrow) { max-width: 28rem; color: var(--muted); }
.text-link { display: inline-flex; gap: 1rem; margin-top: 1.25rem; padding-bottom: 0.35rem; border-bottom: 1px solid var(--copper); color: var(--copper-light); font-size: 0.86rem; font-weight: 650; letter-spacing: 0.04em; text-decoration: none; text-transform: uppercase; }

.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 4rem 1fr; gap: 1rem; padding: 2.7rem 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--copper); font-size: 0.74rem; letter-spacing: 0.12em; }
.process-list h3 { margin: 0 0 0.7rem; font-family: var(--serif); font-size: clamp(1.7rem, 2.8vw, 2.7rem); font-weight: 400; }
.process-list p { max-width: 35rem; margin-bottom: 0; color: var(--muted); }

.studio { display: grid; grid-template-columns: 1.08fr 0.92fr; min-height: 48rem; background: var(--paper); color: var(--ink); }
.studio-image-wrap { min-height: 42rem; overflow: hidden; }
.studio-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.studio-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(4rem, 8vw, 9rem); }
.studio-copy .eyebrow { color: #9a6537; }
.studio-copy h2 { max-width: 11ch; }
.studio-copy > p:not(.eyebrow) { max-width: 34rem; color: #5e5a53; }
.studio-points { margin: 2.2rem 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(10,10,9,0.24); }
.studio-points li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(10,10,9,0.18); }
.studio-points span { color: #9a6537; font-size: 0.72rem; }

.contact { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(4rem, 8vw, 9rem); padding: clamp(6rem, 11vw, 10rem) clamp(1.25rem, 7vw, 8rem); background: #0d0c0b; }
.contact-main h2 { max-width: 9ch; }
.contact-main > p:not(.eyebrow) { max-width: 37rem; margin-bottom: 2.2rem; color: var(--muted); }
.project-form { max-width: 46rem; display: grid; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.project-form label { display: grid; gap: 0.45rem; }
.project-form label > span { color: var(--copper-light); font-size: 0.72rem; font-weight: 650; letter-spacing: 0.1em; text-transform: uppercase; }
.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  min-height: 3.3rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(225,182,131,0.32);
  border-radius: 0;
  background: rgba(255,255,255,0.035);
  color: var(--cream);
  font: inherit;
}
.project-form textarea { min-height: 8.5rem; resize: vertical; }
.project-form select { color-scheme: dark; }
.project-form input[type="file"] {
  min-height: auto;
  padding: 0.45rem;
  border-style: dashed;
  cursor: pointer;
}
.project-form input[type="file"]::file-selector-button {
  min-height: 2.45rem;
  margin-right: 0.9rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--copper);
  background: transparent;
  color: var(--cream);
  font: inherit;
  cursor: pointer;
}
.project-form input[type="file"]::file-selector-button:hover { background: rgba(225,182,131,0.12); }
.project-form .form-honey { display: none; }
.file-field small { color: #8f8981; font-size: 0.78rem; line-height: 1.5; }
.file-list { display: grid; gap: 0.35rem; margin: -0.45rem 0 0; padding: 0; list-style: none; }
.file-list:empty { display: none; }
.file-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--cream);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}
.file-list li::before { content: '\2022'; position: absolute; left: 0.25rem; color: var(--copper-light); }
.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus { border-color: var(--copper-light); outline: 1px solid var(--copper-light); outline-offset: 1px; }
.project-form .button { justify-self: start; margin-top: 0.35rem; }
.project-form .button:disabled { cursor: wait; opacity: 0.65; }
.project-form .consent-field { display: grid; grid-template-columns: 1.15rem 1fr; align-items: start; gap: 0.75rem; cursor: pointer; }
.project-form .consent-field input { width: 1.15rem; min-height: 1.15rem; margin-top: 0.12rem; accent-color: var(--copper); }
.project-form .consent-field > span { color: var(--cream); font-size: 0.86rem; font-weight: 400; letter-spacing: 0; line-height: 1.5; text-transform: none; }
.privacy-details { color: #8f8981; font-size: 0.78rem; line-height: 1.6; }
.privacy-details summary { width: max-content; color: var(--copper-light); cursor: pointer; }
.privacy-details p { max-width: 43rem; margin: 0.75rem 0 0; }
.privacy-details a { color: var(--copper-light); }
.form-note { margin: 0; color: #8f8981; font-size: 0.78rem; }
.form-status { min-height: 1.2rem; margin: 0; color: var(--copper-light); font-size: 0.82rem; }
.contact-details { margin: 0; font-style: normal; border-top: 1px solid var(--line); }
.contact-details div { display: grid; grid-template-columns: 7rem 1fr; gap: 1rem; padding: 1.45rem 0; border-bottom: 1px solid var(--line); }
.contact-details span { color: var(--copper); font-size: 0.7rem; font-weight: 650; letter-spacing: 0.13em; }
.contact-details a, .contact-details p { margin: 0; color: var(--cream); font-size: 1.05rem; text-decoration: none; }
.contact-details small { display: block; margin-top: 0.55rem; color: #8f8981; font-size: 0.76rem; font-style: normal; line-height: 1.5; }
.contact-details a:hover { color: var(--copper-light); }

.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2.2rem clamp(1.25rem, 4vw, 5rem); border-top: 1px solid var(--line); background: #070706; }
.site-footer p, .back-top { margin: 0; color: #858078; font-size: 0.76rem; letter-spacing: 0.09em; text-decoration: none; text-transform: uppercase; }
.footer-meta { display: grid; gap: 0.45rem; text-align: center; }
.footer-meta p:last-child { font-size: 0.68rem; letter-spacing: 0.06em; }
.footer-brand { transform: scale(0.88); transform-origin: left center; }
.back-top span { color: var(--copper); }

.reveal { opacity: 0; transform: translateY(1.5rem); transition: opacity 620ms ease, transform 620ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 2px solid var(--copper-light); outline-offset: 4px; }

@media (max-width: 980px) {
  .menu-button {
    position: relative;
    z-index: 25;
    display: grid;
    place-content: center;
    gap: 0.45rem;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(255,255,255,0.32);
    border-radius: 50%;
    background: rgba(10,10,9,0.45);
  }
  .menu-button span:not(.sr-only) { display: block; width: 1.25rem; height: 1px; background: white; transition: transform 180ms ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 7rem 2rem;
    background: rgba(8,8,7,0.98);
    transform: translateX(100%);
    transition: transform 240ms ease;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-family: var(--serif); font-size: clamp(2rem, 7vw, 3.5rem); font-weight: 400; letter-spacing: 0; text-transform: none; }
  .hero-steps { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 0.4rem; }
  .section-heading > p:last-child { padding-top: 0; }
  .featured-heading { grid-template-columns: 1fr; gap: 0.4rem; }
  .featured-heading > p:last-child { padding-top: 0; }
  .project-story,
  .project-story:nth-child(even) { grid-template-columns: 1fr; }
  .project-story:nth-child(even) figure { order: 0; }
  .project-story figure { min-height: 28rem; }
  .gallery-heading { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { column-count: 2; }
  .testimonials-heading { grid-template-columns: 1fr; gap: 0.4rem; }
  .testimonials-heading > p:last-child { padding-top: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-height: 22rem; border-left: 1px solid rgba(10,10,9,0.2); border-bottom: 1px solid rgba(10,10,9,0.2); }
  .offer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .offer-card:nth-child(3) { border-left: 1px solid rgba(10,10,9,0.2); }
  .process { grid-template-columns: 1fr; }
  .process-intro { position: static; }
  .studio { grid-template-columns: 1fr; }
  .studio-image-wrap { min-height: 30rem; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { min-height: 5.5rem; padding-inline: 1.15rem; }
  .brand-lockup { width: 11.5rem; }
  .hero { min-height: 48rem; align-items: flex-end; }
  .hero-image { object-position: 63% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(8,8,7,0.97) 0%, rgba(8,8,7,0.76) 52%, rgba(8,8,7,0.28) 100%); }
  .hero-content { width: 100%; margin: 5rem 0 3.5rem; padding: 2.3rem 1.2rem; border-left: 0; border-top: 1px solid var(--copper); background: linear-gradient(0deg, rgba(10,10,9,0.78), transparent); }
  h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .hero-copy { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .button-link { width: fit-content; }
  .scroll-cue { display: none; }
  .section { padding-inline: 1.2rem; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { min-height: 21rem; border-left: 1px solid rgba(10,10,9,0.2); }
  .project-story figure { min-height: 20rem; }
  .project-story-copy { padding: 2.6rem 1.2rem; }
  .project-story dl div { grid-template-columns: 1fr; gap: 0.2rem; }
  .gallery-grid { column-count: 1; }
  .gallery-card figcaption { align-items: flex-start; flex-direction: column; gap: 0.3rem; }
  .gallery-card figcaption strong { text-align: left; }
  .testimonial-card { min-height: 20rem; }
  .testimonial-card footer { align-items: flex-start; flex-direction: column; }
  .gallery-lightbox { width: calc(100vw - 1rem); }
  .gallery-close { top: 0.5rem; right: 0.5rem; }
  .gallery-arrow { top: auto; bottom: 0.45rem; width: 2.7rem; height: 2.7rem; transform: none; }
  .gallery-prev { left: 0.5rem; }
  .gallery-next { right: 0.5rem; }
  .gallery-lightbox figcaption { justify-content: center; padding-inline: 3.5rem; text-align: center; }
  .material-band { min-height: 6rem; gap: 0.65rem; }
  .material-band p { font-size: 1rem; letter-spacing: 0.08em; }
  .material-band span { width: 1.5rem; }
  .process { grid-template-columns: minmax(0,1fr); gap: 3rem; }
  .process-list li { grid-template-columns: 2.6rem 1fr; }
  .studio-image-wrap { min-height: 22rem; }
  .studio-copy { padding: 5rem 1.2rem; }
  .contact { padding-inline: 1.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .project-form .button { width: 100%; }
  .contact-details div { grid-template-columns: 1fr; gap: 0.35rem; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .footer-meta { text-align: left; }
  .footer-brand { transform: none; }
}

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