:root {
  --bg: #f6efe5;
  --bg-deep: #e5d4bf;
  --surface: rgba(255, 251, 246, 0.8);
  --surface-strong: rgba(255, 248, 240, 0.92);
  --ink: #1c1713;
  --muted: #5f5146;
  --line: rgba(28, 23, 19, 0.12);
  --accent: #b14e2f;
  --accent-deep: #7d3119;
  --teal: #0f3d44;
  --teal-soft: rgba(15, 61, 68, 0.09);
  --shadow: 0 24px 70px rgba(28, 23, 19, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #faf5ee 0%, var(--bg) 100%);
}

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

.ambient {
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
}

.ambient-one {
  top: -80px;
  right: -40px;
  width: 280px;
  height: 280px;
  background: rgba(177, 78, 47, 0.18);
}

.ambient-two {
  bottom: -40px;
  left: -40px;
  width: 340px;
  height: 340px;
  background: rgba(15, 61, 68, 0.14);
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 64px;
}

.topbar,
.hero,
.section,
.proof-strip,
.footer {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 24px;
  background: rgba(255, 251, 246, 0.72);
}

.nameplate {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.topbar-note {
  margin-top: 6px;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.55;
}

.status-pill,
.eyebrow,
.chip,
.project-links a,
.link-tile span {
  font-weight: 700;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(28, 23, 19, 0.12);
  color: var(--teal);
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.95fr);
  gap: 24px;
  margin-top: 18px;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(177, 78, 47, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(229, 212, 191, 0.84));
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(28, 23, 19, 0.1);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.hero p,
.section-copy,
.project p,
.review-card p,
.proof-card p,
.review-order li,
.footer span {
  color: var(--muted);
  line-height: 1.7;
}

.hero p {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 1.03rem;
}

.hero-lead {
  max-width: 760px;
  margin-top: 18px;
  color: var(--teal);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.65;
}

.hero-proof-note {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(15, 61, 68, 0.12);
  background: rgba(15, 61, 68, 0.08);
  color: var(--teal);
  font-weight: 700;
  line-height: 1.5;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cta-row-proof {
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.project:hover,
.review-card:hover,
.proof-card:hover,
.link-tile:hover {
  transform: translateY(-3px);
}

.button.primary {
  background: var(--accent);
  color: #fff9f5;
  box-shadow: 0 14px 30px rgba(177, 78, 47, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.button.ghost {
  background: rgba(15, 61, 68, 0.08);
  border-color: rgba(15, 61, 68, 0.14);
  color: var(--teal);
}

.signal-panel {
  display: grid;
  gap: 12px;
}

.signal-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(28, 23, 19, 0.09);
}

.signal-label,
.project-meta {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-card strong,
.project h3,
.review-card h3,
.section h2 {
  letter-spacing: -0.03em;
}

.signal-card strong {
  font-size: 1.02rem;
  line-height: 1.5;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 28px;
  background: rgba(255, 250, 244, 0.68);
}

.proof-card,
.project,
.review-card,
.link-tile {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.proof-card {
  min-height: 100%;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(28, 23, 19, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.proof-number {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--teal);
}

.section {
  margin-top: 18px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.62);
}

.section.compact {
  padding-bottom: 24px;
}

.section-head {
  margin-bottom: 16px;
}

.section h2 {
  margin: 0;
  font-size: 1.7rem;
}

.section-copy {
  margin: 0 0 16px;
}

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

.project {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.project:hover,
.review-card:hover,
.link-tile:hover {
  border-color: rgba(177, 78, 47, 0.34);
}

.project h3,
.review-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.project p,
.project ul {
  margin: 0;
}

.project ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.project-links a {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  border: 1px solid rgba(15, 61, 68, 0.1);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 24px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.review-card,
.review-order,
.link-tile {
  border: 1px solid var(--line);
}

.review-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.review-order {
  height: 100%;
  padding: 22px;
  border-radius: 24px;
  background: rgba(15, 61, 68, 0.06);
}

.flow-card {
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(15, 61, 68, 0.12);
  background: rgba(255, 255, 255, 0.62);
}

.flow-label {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-card strong {
  display: block;
  font-size: 1.04rem;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.flow-card p,
.shot-copy span {
  color: var(--muted);
  line-height: 1.65;
}

.flow-card p {
  margin: 10px 0 0;
}

.review-order ol {
  margin: 0;
  padding-left: 20px;
}

.review-order li + li {
  margin-top: 12px;
}

.stack-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.shot-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.shot-card:hover {
  transform: translateY(-3px);
  border-color: rgba(177, 78, 47, 0.34);
}

.shot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: rgba(15, 61, 68, 0.08);
}

.shot-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0d1117;
}

.shot-card-video {
  grid-column: 1 / -1;
}

.shot-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px 20px;
}

.shot-copy strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--teal-soft);
  border: 1px solid rgba(15, 61, 68, 0.12);
  color: var(--teal);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.link-tile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
}

.link-tile strong,
.footer strong {
  font-size: 1rem;
}

.link-tile span {
  color: var(--muted);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
  padding: 24px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1024px) {
  .hero,
  .split,
  .projects {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .shot-grid,
  .link-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 18px, 1160px);
    padding-top: 12px;
  }

  .topbar,
  .hero,
  .section,
  .footer {
    padding: 22px;
    border-radius: 22px;
  }

  .topbar {
    flex-direction: column;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .proof-strip {
    padding: 12px;
    border-radius: 22px;
  }
}
