:root {
  --yellow: #fff303;
  --ink: #232323;
  --max: 1440px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section-y: clamp(4.5rem, 10vw, 9rem);
  --border: 1.5px solid var(--ink);
  --ease: 220ms cubic-bezier(.2,.8,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--yellow);
}

body {
  margin: 0;
  background: var(--yellow);
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

::selection {
  background: var(--ink);
  color: var(--yellow);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--ink);
  color: var(--yellow);
  transform: translateY(-200%);
  transition: transform var(--ease);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -.02em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  aspect-ratio: 1;
  border: var(--border);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: -.04em;
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem 1rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.25rem;
  border: var(--border);
  background: var(--ink);
  color: var(--yellow);
  text-decoration: none;
  font-weight: 700;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.button:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-2px);
}

.button--outline {
  background: transparent;
  color: var(--ink);
}

.button--outline:hover {
  background: var(--ink);
  color: var(--yellow);
}

.button--compact {
  min-height: 2.8rem;
  padding: .6rem .9rem;
  font-size: .9rem;
}

.section,
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
}

.section--border { border-top: var(--border); }

.hero {
  min-height: min(760px, 78vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 1rem;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
}

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

h1 {
  max-width: 1100px;
  margin-bottom: 1.75rem;
  font-size: clamp(4.2rem, 10.8vw, 10.5rem);
  line-height: .82;
  letter-spacing: -.05em;
  font-weight: 800;
}

.hero-copy {
  max-width: 780px;
  margin-bottom: 2rem;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -.02em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  text-underline-offset: .28em;
  text-decoration-thickness: 1.5px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
  column-gap: clamp(2rem, 7vw, 8rem);
  align-items: start;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.section-heading .eyebrow { grid-column: 1 / -1; }

h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 6vw, 6rem);
  line-height: 1.05;
  letter-spacing: -.055em;
  font-weight: 800;
}

.section-heading > p:not(.eyebrow) {
  margin: .5rem 0 0;
  max-width: 36rem;
  font-size: 1.05rem;
}

.services {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: var(--border);
}

.services li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  align-items: baseline;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: var(--border);
}

.services span {
  font-size: .8rem;
  font-weight: 700;
}

.services strong {
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.contact-list {
  margin: 0;
  border-top: var(--border);
}

.contact-row {
  display: grid;
  grid-template-columns: minmax(7rem, .35fr) minmax(0, 1fr);
  gap: 2rem;
  padding: 1.2rem 0;
  border-bottom: var(--border);
}

.contact-row dt {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-row dd {
  margin: 0;
  font-size: clamp(1.15rem, 2.1vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -.02em;
  overflow-wrap: anywhere;
}

.contact-row a {
  text-decoration-thickness: 1.5px;
  text-underline-offset: .2em;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: var(--border);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 9rem;
  padding: 1.5rem;
  border-bottom: var(--border);
  text-decoration: none;
  font-size: clamp(1.8rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -.05em;
  transition: background var(--ease), color var(--ease);
}

.social-link:first-child { border-right: var(--border); }

.social-link:hover {
  background: var(--ink);
  color: var(--yellow);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}

.footer-brand strong { max-width: 11rem; line-height: 1.2; }

.footer-details address {
  margin: 0 0 1rem;
  font-style: normal;
}

.footer-details p,
.footer-social p { margin: 0 0 .7rem; }

.footer-details a,
.footer-social a {
  text-underline-offset: .2em;
  text-decoration-thickness: 1.3px;
}

.footer-meta {
  grid-column: 1 / -1;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: var(--border);
  font-size: .8rem;
  font-weight: 600;
}

@media (max-width: 860px) {
  .brand-name { display: none; }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-heading > p:not(.eyebrow) { margin-top: 0; }

  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --gutter: 1rem; --section-y: 4.25rem; }

  .site-header { align-items: flex-start; }
  .header-actions { justify-content: flex-end; }
  .button--compact { font-size: .78rem; min-height: 2.55rem; }

  .hero { min-height: auto; padding-top: 5.5rem; padding-bottom: 5.5rem; }
  h1 { font-size: clamp(3.3rem, 18vw, 5.8rem); }

  .services li { grid-template-columns: 2.4rem 1fr; }
  .contact-row { grid-template-columns: 1fr; gap: .45rem; }
  .social-links { grid-template-columns: 1fr; }
  .social-link:first-child { border-right: 0; }
  .social-link { min-height: 7rem; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
