:root {
  /* --black: #0b0b0b; */
  --black: #0a1e3a;
  --white: #ffffff;
  --grey: #6b6b6b;
  --light-bg: #f7f7f7;
  --line: #dddddd;
  --container: min(1200px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-compact {
  padding: 64px 0;
}

.text-center {
  text-align: center;
}

.max-copy {
  max-width: 700px;
}

.eyebrow {
  margin-bottom: 24px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a1a1a1;
}

.hero {
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid #202020;
}

.hero-inner {
  min-height: 92vh;
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 0 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-logo {
  max-width: 200px;
  height: auto;
  /* border-radius: 20px; */
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(44px, 8vw, 76px);
  margin-bottom: 24px;
}

.hero .lead {
  max-width: 640px;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.45;
  color: #f4f4f4;
}

.hero .support {
  max-width: 640px;
  margin-top: 24px;
  color: #b7b7b7;
}

.btn {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 30px;
  border: 1px solid currentColor;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-light {
  color: var(--white);
  background: transparent;
}

.btn-light:hover {
  color: var(--black);
  background: var(--white);
}

.subtext {
  border-bottom: 1px solid var(--line);
  background: var(--light-bg);
}

.statement {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.35;
}

.statement-small {
  margin-bottom: 24px;
  font-size: clamp(28px, 3.3vw, 44px);
}

section h2 {
  font-size: clamp(34px, 4.2vw, 52px);
  margin-bottom: 22px;
}

section p {
  color: #2a2a2a;
}

.process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.grid-four {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.process-item {
  padding: 0 20px;
  min-height: 190px;
  border-right: 1px solid var(--line);
}

.process-item:last-child {
  border-right: 0;
}

.process-item h3 {
  font-size: 34px;
  margin-bottom: 12px;
}

.process-item p {
  color: var(--grey);
  font-size: 17px;
}

.selected-work {
  background: var(--light-bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.work-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.work-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  border: 1px solid #e4e4e4;
}

.work-card h3 {
  font-size: 32px;
  margin-bottom: 10px;
}

.work-card h3 span {
  display: block;
  margin-top: 6px;
  font-size: 19px;
  color: var(--grey);
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.work-card p {
  color: #393939;
  font-size: 16px;
}

.work-link {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, transform 180ms ease;
}

.work-link:hover {
  border-color: currentColor;
  transform: translateY(-1px);
}

.work-note {
  margin-top: 32px;
  color: var(--grey);
}

.audience {
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.split h2 {
  margin-bottom: 14px;
}

.split p,
.split li {
  color: #2a2a2a;
}

.split ul {
  margin: 0;
  padding-left: 20px;
}

.why-us {
  background: var(--white);
}

.final-cta {
  padding: 140px 0;
  background: var(--black);
  color: var(--white);
}

.final-cta p {
  color: #a6a6a6;
  margin-top: 8px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--black);
  color: #8f8f8f;
  padding: 48px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.footer-left {
  flex: 1;
}

.footer-brand {
  color: #d5d5d5;
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 8px 0;
}

.footer-tagline-small {
  color: #7f7f7f;
  font-size: 14px;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.divider {
  color: #5f5f5f;
}

.footer-contact {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.footer-contact p {
  margin: 0;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #2a2a2a;
}

.footer-copyright p {
  margin: 0 0 12px 0;
  font-size: 14px;
  color: #8f8f8f;
}

.footer-legal {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.footer-tagline-main {
  text-align: center;
  padding-top: 24px;
}

.footer-tagline-main p {
  color: #a6a6a6;
  font-size: 15px;
  margin: 0;
  font-style: italic;
}

@media (max-width: 1100px) {
  .grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .process-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 24px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 17px;
  }

  .container {
    width: min(100%, calc(100% - 32px));
  }

  .section {
    padding: 72px 0;
  }

  .section-compact {
    padding: 52px 0;
  }

  .hero-inner {
    min-height: 84vh;
    padding: 84px 0;
  }

  .hero .lead {
    font-size: 23px;
  }

  .btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }

  .grid-four,
  .split {
    grid-template-columns: 1fr;
  }

  .process-item {
    min-height: auto;
  }

  .site-footer {
    padding: 32px 0;
  }

  .footer-content {
    gap: 24px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .footer-left {
    width: 100%;
  }

  .footer-brand {
    font-size: 15px;
  }

  .footer-tagline-small {
    font-size: 13px;
  }

  .footer-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .divider {
    font-size: 12px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .footer-contact p {
    font-size: 13px;
  }

  .footer-bottom {
    padding-bottom: 16px;
  }

  .footer-copyright p {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 8px;
  }

  .footer-tagline-main {
    padding-top: 16px;
  }

  .footer-tagline-main p {
    font-size: 13px;
  }
}
