:root {
  color-scheme: light;
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #f5f1f4;
  color: #171717;
}

* { box-sizing: border-box; }

body {
  min-width: 0;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 10;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: #171717;
  color: #fff;
  transform: translateY(-180%);
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2.75rem) clamp(1.5rem, 6vw, 6rem);
}

.brand {
  display: block;
  flex: 0 0 auto;
  width: clamp(9rem, 15vw, 13rem);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

nav a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-button {
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  background: #171717;
  color: #fff;
}

.contact-main {
  display: grid;
  flex: 1;
  min-height: 68vh;
  place-items: center;
  padding: clamp(7rem, 15vw, 14rem) clamp(1.5rem, 8vw, 8rem);
  text-align: center;
}

.contact-copy { max-width: 60rem; }

.eyebrow {
  margin: 0 0 1.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 36rem;
  margin: 2.5rem auto 0;
  color: #555;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.7;
}

.email-link {
  display: inline-block;
  margin-top: 2.75rem;
  padding-bottom: 0.22rem;
  border-bottom: 2px solid currentColor;
  font-size: clamp(1.55rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-decoration: none;
}

nav a:focus-visible,
.brand:focus-visible,
.email-link:focus-visible,
footer a:focus-visible {
  outline: 3px solid #171717;
  outline-offset: 6px;
}

.nav-button:focus-visible { outline-color: #6bdde1; }

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1.5rem, 6vw, 6rem) 3rem;
  color: #555;
  font-size: 0.82rem;
}

footer p { margin: 0; }

@media (max-width: 540px) {
  .site-header { align-items: flex-start; }
  .brand { width: 8.5rem; }
  nav { align-items: flex-end; flex-direction: column; gap: 0.85rem; }
  .contact-main { min-height: 62vh; }
  footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .skip-link { transition: none; }
}
