:root {
  --bg: #fbfaf6;
  --bg-deep: #111111;
  --text: #121212;
  --text-soft: #4b4b4b;
  --card: #ffffff;
  --line: #ddd7cc;
  --accent: #d07a1e;
  --accent-dark: #9a5610;
  --teal: #1f6f6b;
  --rose: #b54d5d;
  --moss: #657a3a;
  --blue: #355f8c;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(31, 111, 107, 0.13) 0%, transparent 34rem),
    linear-gradient(180deg, #fbfaf6 0%, #f5f0e8 100%);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, #faf7f2 85%, transparent);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand img {
  width: 130px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: clip;
}

.hero-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(12, 12, 12, 0.85) 20%, rgba(12, 12, 12, 0.45)),
    linear-gradient(to top, rgba(12, 12, 12, 0.6), transparent 55%);
}

.hero-content {
  position: relative;
  color: #f6f1e8;
  padding-block: 4rem;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  margin: 0 0 0.6rem;
  color: #e8be8d;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  max-width: 10ch;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-family: "Instrument Serif", serif;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 58ch;
  margin: 0 0 1.6rem;
  color: #efe2d0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #f19631);
  box-shadow: 0 10px 26px rgba(153, 85, 16, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(153, 85, 16, 0.34);
}

.section {
  padding: 5.5rem 0;
}

.section-label {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.72rem;
  color: var(--accent-dark);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-family: "Instrument Serif", serif;
  max-width: 18ch;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section-heading p {
  max-width: 35rem;
  margin: 0;
  color: var(--text-soft);
}

.service-board {
  margin-top: 2.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
}

.service-panel {
  grid-column: span 6;
  min-height: 26rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 18px 48px rgba(18, 18, 18, 0.07);
}

.service-panel.foundation {
  border-top-color: var(--teal);
}

.service-panel.social {
  border-top-color: var(--rose);
}

.service-panel.paid {
  border-top-color: var(--blue);
}

.service-panel.creative {
  border-top-color: var(--moss);
}

.panel-number {
  display: inline-block;
  margin-bottom: 1.1rem;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-panel h3 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}

.service-panel p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.service-panel ul {
  display: grid;
  gap: 0.78rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-panel li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.45;
}

.service-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: currentColor;
}

.workflow-strip {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #171717;
}

.workflow-strip div {
  min-height: 11rem;
  padding: 1.15rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.workflow-strip div:last-child {
  border-right: 0;
}

.workflow-strip span {
  display: block;
  margin-bottom: 0.55rem;
  color: #f4d3a7;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.workflow-strip p {
  margin: 0;
  color: #f2eee7;
  font-size: 0.95rem;
}

.about-wrap {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.35fr 1fr;
  align-items: center;
}

.about p {
  color: var(--text-soft);
}

.founder-photo {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.15);
}

.quote-card {
  background: var(--bg-deep);
  border-radius: 8px;
  color: #f0ece4;
  padding: 2rem;
  position: relative;
}

.quote-card p {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: #f0ece4;
}

.quote-card span {
  color: #dbbf94;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.contact {
  background: var(--bg-deep);
}

.contact-wrap {
  text-align: center;
}

.contact .section-label,
.contact h2,
.contact p {
  color: #f0ece4;
  margin-inline: auto;
}

.contact h2 {
  max-width: 20ch;
  margin-bottom: 1rem;
}

.contact p {
  max-width: 56ch;
  margin-bottom: 1.6rem;
}

.btn-light {
  color: var(--bg-deep);
  background: #f4d3a7;
}

.site-footer {
  background: #0a0a0a;
  border-top: 1px solid #242424;
}

.footer-wrap {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-wrap img {
  width: 106px;
}

.footer-wrap p {
  margin: 0;
  color: #cabca8;
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .about-wrap {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 1rem;
  }

  .service-panel {
    grid-column: span 1;
    min-height: auto;
  }

  .service-board {
    grid-template-columns: 1fr;
  }

  .workflow-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-strip div:nth-child(2) {
    border-right: 0;
  }

  .workflow-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 700px) {
  .nav-wrap {
    min-height: 70px;
  }

  .brand img {
    width: 112px;
  }

  .nav-links {
    gap: 0.8rem;
  }

  .nav-links a {
    font-size: 0.84rem;
  }

  .container {
    width: min(var(--max), calc(100% - 1.4rem));
  }

  .hero {
    min-height: 86vh;
  }

  .section {
    padding: 4rem 0;
  }

  .service-panel {
    padding: 1.1rem;
  }

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

  .workflow-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .workflow-strip div:last-child {
    border-bottom: 0;
  }

  .footer-wrap {
    min-height: 120px;
    flex-direction: column;
    justify-content: center;
  }
}
