:root {
  --black: #090909;
  --white: #ffffff;
  --cream: #f7f6f2;
  --yellow: #ffc20a;
  --text: #151515;
  --muted: #686868;
  --line: #d9d9d2;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
}

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

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

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  height: 76px;
  padding: 0 34px;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-cta {
  border: 1px solid rgba(255,255,255,.55);
  padding: 9px 13px;
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: .12em;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 22%, rgba(255,255,255,.35) 0 2px, transparent 3px),
    radial-gradient(circle at 38% 40%, rgba(255,255,255,.28) 0 3px, transparent 4px),
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.25) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 65%, rgba(255,255,255,.3) 0 4px, transparent 5px);
  background-size: 180px 160px, 230px 220px, 270px 230px, 310px 260px;
  opacity: .7;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
  background: rgba(255,255,255,.25);
}

.hero-glow-one {
  width: 220px;
  height: 220px;
  right: 8%;
  bottom: -80px;
}

.hero-glow-two {
  width: 120px;
  height: 120px;
  left: 5%;
  top: 20px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 600;
  margin: 0 0 14px;
}

.eyebrow.dark {
  color: #686868;
}

.hero h1,
.section h2,
.person h3 {
  font-family: "Playfair Display", Georgia, serif;
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 7vw, 88px);
  line-height: .98;
  font-weight: 500;
  color: white;
  max-width: 780px;
  letter-spacing: -0.04em;
}

.hero-copy {
  margin-top: 30px;
  max-width: 670px;
  line-height: 1.65;
  color: rgba(255,255,255,.95);
  font-size: 15px;
}

.section {
  padding: 86px 0;
}

.services h2 {
  max-width: 930px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  margin: 8px 0 58px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.mini-label {
  display: inline-block;
  background: var(--yellow);
  padding: 6px 28px;
  font-size: 8px;
  letter-spacing: .16em;
  font-weight: 600;
}

.mini-label.light {
  background: #e8e8e4;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 300px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-icon {
  margin-bottom: auto;
  font-size: 40px;
  font-weight: 200;
  color: #666;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 500;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.statement-wrap {
  text-align: center;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
}

.statement {
  font-family: "Playfair Display", Georgia, serif;
  max-width: 840px;
  margin: 18px auto 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.team-section {
  padding-top: 68px;
}

.team-heading {
  font-size: clamp(38px, 5vw, 60px);
  margin: 0 0 28px;
  font-weight: 600;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.person img {
  aspect-ratio: 4/5;
  object-fit: cover;
  background: #ddd;
}

.person h3 {
  margin: 12px 0 2px;
  font-size: 20px;
  font-weight: 500;
}

.person p {
  margin: 0;
  font-size: 10px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.contact-section {
  padding-top: 110px;
  padding-bottom: 110px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.contact-copy h2 {
  margin: 8px 0 18px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.contact-copy p {
  max-width: 480px;
  color: #5f5f5f;
  line-height: 1.65;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #bdbdb7;
  border-radius: 4px;
  background: transparent;
  padding: 12px 13px;
  font: inherit;
  font-size: 14px;
}

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

button {
  border: 0;
  background: var(--black);
  color: var(--white);
  padding: 15px 18px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  opacity: .86;
}

footer {
  background: var(--black);
  color: var(--white);
}

.footer-inner {
  min-height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

@media (max-width: 820px) {
  .site-header {
    padding: 0 20px;
  }

  .service-grid,
  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    gap: 38px;
  }

  .service-card {
    min-height: 230px;
  }

  .contact-grid {
    gap: 50px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    height: 66px;
  }

  .hero {
    min-height: 380px;
  }

  .hero-inner {
    padding: 62px 0;
  }

  .section {
    padding: 66px 0;
  }

  .services h2 {
    margin-bottom: 38px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-cta {
    font-size: 9px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
}

.footer-contact {
  padding: 58px 0 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.footer-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 600;
}
.footer-contact p {
  max-width: 430px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  font-size: 13px;
}
.footer-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-details .footer-label {
  color: rgba(255,255,255,.55);
  font-size: 10px;
  letter-spacing: .16em;
  margin: 0 0 4px;
}
.footer-details a { font-size: 15px; }
.footer-bottom {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
@media (max-width: 820px) {
  .footer-contact { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .footer-bottom { flex-direction: column; justify-content: center; gap: 8px; }
}
