@import url("https://fonts.googleapis.com/css2?family=Archivo+Expanded:wght@500;700&family=Space+Grotesk:wght@400;500;700&display=swap");

:root {
  --bg: #fff6f0;
  --ink: #18141f;
  --muted: #625a64;
  --accent: #ff633d;
  --accent-deep: #ff4324;
  --bright: #ffd5c6;
  --panel: rgba(255, 255, 255, 0.86);
  --line: rgba(24, 20, 31, 0.1);
  --shadow: 0 28px 68px rgba(73, 39, 25, 0.15);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 99, 61, 0.08) 0 20%, transparent 20% 100%),
    linear-gradient(180deg, #fffaf5 0%, #f8efe7 100%);
}

.topbar,
.hero,
.section,
.footer {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 18px;
}

.brand,
.nav a,
.footer-link {
  color: var(--ink);
  text-decoration: none;
}

.brand,
h1,
h2,
h3,
.cta {
  font-family: "Archivo Expanded", sans-serif;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero {
  padding: 18px 0 4px;
}

.hero-intro {
  max-width: 760px;
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

h1, h2, h3, strong, p { margin-top: 0; }

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 5vw, 5.05rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.15;
}

p, li, input, textarea {
  font-size: 0.98rem;
  line-height: 1.78;
  color: var(--muted);
}

.hero-stage {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 0;
  align-items: stretch;
}

.hero-image {
  padding: 18px;
  background: linear-gradient(135deg, rgba(255, 99, 61, 0.16), rgba(255, 255, 255, 0.94));
  border-radius: 36px 0 0 36px;
  box-shadow: var(--shadow);
}

.hero-image img,
.wall-photo img,
.studio-photo img,
.action-photo img {
  display: block;
  width: 100%;
  border-radius: 24px;
}

.cta-slab,
.metric-ribbon article,
.launch-card,
.wall-stats article,
.studio-steps article,
.brief-panel,
.contact-card,
.faq-grid article {
  box-shadow: var(--shadow);
}

.cta-slab {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 34px;
  border-radius: 0 36px 36px 0;
  background: #1a1622;
  color: #fff7f2;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, #ff764f 0%, #ff502f 100%);
  color: #fff7f2;
}

.metric-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.metric-ribbon article,
.launch-card,
.wall-stats article,
.studio-steps article,
.brief-panel,
.contact-card,
.faq-grid article {
  padding: 22px;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.metric-ribbon span,
.studio-steps span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
}

.section { padding: 74px 0 0; }

.section-copy,
.wall-copy,
.studio-head {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.launch-card.tall {
  grid-row: span 2;
  background: linear-gradient(180deg, rgba(255, 99, 61, 0.16), rgba(255, 255, 255, 0.9));
}

.launch-card.wide {
  grid-column: span 2;
  background: #1a1622;
}

.launch-card.wide h3,
.launch-card.wide p {
  color: #fff7f2;
}

.wall-layout,
.studio-strip,
.action-gallery,
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.wall-stats,
.studio-steps,
.faq-grid {
  display: grid;
  gap: 16px;
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--accent);
}

.brief-panel {
  background: #1a1622;
}

.brief-panel h2,
.brief-panel p {
  color: #fff7f2;
}

.contact-form {
  display: grid;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(24, 20, 31, 0.12);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-details {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 28px 0 42px;
}

@media (max-width: 1100px) {
  .hero-stage,
  .wall-layout,
  .studio-strip,
  .action-gallery,
  .contact-section,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .launch-grid,
  .metric-ribbon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 24px, 100%); }
  .topbar,
  .footer { flex-direction: column; align-items: flex-start; }
  .metric-ribbon,
  .launch-grid { grid-template-columns: 1fr; }
  .hero-image { border-radius: 28px 28px 0 0; }
  .cta-slab { border-radius: 0 0 28px 28px; }
  .launch-card.wide { grid-column: span 1; }
}
