:root {
  --bg: #121212;
  --bg-soft: #1a1a19;
  --sand: #e7d9ca;
  --sand-deep: #d0b69d;
  --line: rgba(231, 217, 202, 0.14);
  --text: #f8f1eb;
  --muted: rgba(248, 241, 235, 0.72);
  --charcoal: #272321;
  --copper: #cb7746;
  --copper-soft: rgba(203, 119, 70, 0.18);
  --teal: #9ed0df;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  --container: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(203, 119, 70, 0.18), transparent 28%),
    linear-gradient(180deg, #181716 0%, #121212 44%, #111111 100%);
  color: var(--text);
  font-family: "Instrument Sans", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 80%);
  opacity: 0.45;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-header,
.intro,
.services,
.projects,
.process,
.proof,
.service-area,
.faq,
.cta,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  backdrop-filter: blur(20px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 -999px;
  background: rgba(18, 18, 18, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--copper), #f3bf96);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  box-shadow: 0 0 28px rgba(203, 119, 70, 0.4);
}

.brand-copy {
  display: grid;
  gap: 2px;
  font-size: 0.78rem;
}

.brand-copy strong {
  font-size: 0.95rem;
}

.brand-copy span {
  color: var(--muted);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-call {
  color: var(--text);
}

.hero {
  min-height: calc(100svh - 84px);
  padding: 36px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: end;
  gap: 48px;
  width: min(1320px, calc(100vw - 48px));
  margin: 0 auto;
}

.hero-copy {
  max-width: 560px;
  padding: 72px 0 24px;
}

.eyebrow,
.section-label {
  color: var(--sand-deep);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.intro h2,
.section-head h2,
.cta h2 {
  margin: 14px 0 0;
  font-family: "Newsreader", serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(3rem, 5.8vw, 5.4rem);
  max-width: 10ch;
}

.hero-text {
  max-width: 34rem;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.84rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--sand);
  color: #171514;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 54px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-meta dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sand-deep);
  margin-bottom: 8px;
}

.hero-meta dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.hero-visual {
  position: relative;
}

.hero-stage {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  overflow: hidden;
  min-height: 760px;
  box-shadow: var(--shadow);
}

.hero-stage::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.04) 0%, rgba(10, 10, 10, 0.22) 62%, rgba(10, 10, 10, 0.48) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: center;
}

.hero-brief {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  max-width: 340px;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(16, 16, 16, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.hero-brief-kicker {
  display: inline-block;
  color: var(--sand-deep);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-brief strong {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.45;
}

.hero-brief p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-caption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: right;
}

.intro,
.services,
.projects,
.process,
.proof,
.service-area,
.faq,
.cta {
  padding: 120px 0 0;
}

.intro-grid,
.section-head,
.proof-head {
  display: grid;
  gap: 20px;
}

.intro-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: start;
  margin-top: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.intro h2,
.section-head h2,
.cta h2 {
  font-size: clamp(2.3rem, 4vw, 4.3rem);
}

.intro-body p,
.process-step p,
.service-item p,
.cta p,
.faq-item p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.feature-list li {
  padding-left: 22px;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  background: var(--copper);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item {
  padding: 28px 24px 34px 0;
  min-height: 280px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.service-item:last-child {
  border-right: 0;
}

.service-number,
.process-step span {
  display: inline-block;
  color: var(--copper);
  font-size: 0.88rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.service-item h3,
.process-step h3 {
  margin: 18px 0 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.projects {
  display: grid;
  gap: 36px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.project-card {
  display: grid;
  gap: 18px;
}

.project-visual {
  position: relative;
  aspect-ratio: 0.84;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.28));
}

.project-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.32));
}

.project-copy {
  padding-right: 12px;
}

.project-kicker {
  display: inline-block;
  color: var(--sand-deep);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.project-copy h3 {
  margin: 12px 0 0;
  font-size: 1.45rem;
  line-height: 1.15;
}

.project-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 20px;
  margin-top: 18px;
}

.gallery-note {
  margin: 2px 0 0;
  max-width: 48rem;
  color: var(--muted);
  line-height: 1.7;
}

.gallery-tile {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  min-height: 220px;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-tile-wide {
  min-height: 280px;
}

.process-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.process-step,
.proof-stats,
.testimonial-list,
.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-step {
  padding-top: 24px;
}

.proof-stats {
  display: grid;
  gap: 0;
}

.proof-stats div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-stats strong {
  font-family: "Newsreader", serif;
  font-size: 2.1rem;
}

.proof-stats span {
  max-width: 16rem;
  color: var(--muted);
  text-align: right;
  line-height: 1.6;
}

.testimonial-list {
  display: grid;
  gap: 0;
}

.testimonial-list blockquote {
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.7;
}

.testimonial-list cite {
  display: block;
  margin-top: 16px;
  color: var(--sand-deep);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-style: normal;
}

.faq-list {
  margin-top: 32px;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.city-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-size: 1.08rem;
  line-height: 1.5;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--copper);
  font-size: 1.6rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 22px;
  max-width: 48rem;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 36px;
  align-items: end;
  padding-bottom: 120px;
}

.cta-actions {
  justify-content: flex-start;
}

.cta-actions p {
  margin: 0;
  max-width: 20rem;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.site-footer strong,
.site-footer a {
  color: var(--text);
}

.site-footer p {
  margin: 8px 0 0;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transition:
    transform 700ms cubic-bezier(0.2, 0.9, 0.2, 1),
    opacity 700ms ease;
  will-change: transform, opacity;
}

.reveal[data-reveal="up"] {
  transform: translateY(34px);
}

.reveal[data-reveal="left"] {
  transform: translateX(-34px);
}

.reveal[data-reveal="right"] {
  transform: translateX(34px);
}

.reveal[data-reveal="scale"] {
  transform: scale(0.96);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .intro-grid,
  .cta,
  .process-grid,
  .proof-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-tile-wide {
    grid-column: 1 / -1;
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-item:nth-child(2) {
    border-right: 0;
  }

  .site-header {
    gap: 20px;
  }

  .site-nav {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero {
    min-height: unset;
  }

  .hero-copy {
    padding-top: 36px;
  }

  .hero-visual {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .hero-stage,
  .hero-photo {
    min-height: 620px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  body::before {
    background-size: 48px 48px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    font-size: 0.84rem;
    gap: 12px;
  }

  .hero-grid {
    width: var(--container);
    gap: 28px;
  }

  .hero h1 {
    max-width: 8ch;
  }

  .hero-meta,
  .service-list {
    grid-template-columns: 1fr;
  }

  .service-item,
  .service-item:nth-child(2) {
    border-right: 0;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-tile-wide {
    grid-column: auto;
  }

  .intro,
  .services,
  .projects,
  .process,
  .proof,
  .service-area,
  .faq,
  .cta {
    padding-top: 88px;
  }

  .cta {
    padding-bottom: 88px;
  }

  .hero-caption {
    text-align: left;
  }

  .hero-brief {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .hero-stage,
  .hero-photo {
    min-height: 500px;
  }

  .proof-stats div {
    flex-direction: column;
  }

  .proof-stats span {
    max-width: none;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button {
    transition: none;
  }
}
