@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --background: #f8f7f4;
  --foreground: #1f1c17;
  --muted-foreground: #6b6455;
  --border: #d9d4c8;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

.page { min-height: 100vh; }

.container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@media (min-width: 768px) {
  .container { padding: 3rem 2.5rem; }
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.logo { height: 7rem; width: auto; }
@media (min-width: 768px) { .logo { height: 9rem; } }

.header-email {
  display: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
}
.header-email:hover { color: var(--muted-foreground); }
@media (min-width: 768px) { .header-email { display: inline; } }

.intro { padding: 4rem 0; }
@media (min-width: 768px) { .intro { padding: 6rem 0; } }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  margin: 0;
}

.headline {
  margin: 1rem 0 0;
  max-width: 48rem;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) { .headline { font-size: 2.25rem; } }
@media (min-width: 1024px) { .headline { font-size: 3rem; } }

.lede {
  margin: 1.5rem 0 0;
  max-width: 42rem;
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.7;
}
@media (min-width: 768px) { .lede { font-size: 1.125rem; } }

.visual {
  margin-top: 3rem;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0.625rem;
  display: block;
}

.contact {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
@media (min-width: 768px) { .contact { padding: 4rem 0; } }

.contact-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin: 0 0 0.5rem;
}

address {
  font-style: normal;
  font-size: 1.125rem;
  line-height: 1.6;
}

.email {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  text-underline-offset: 4px;
}
.email:hover { text-decoration: underline; }

.footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
@media (min-width: 768px) {
  .footer { flex-direction: row; align-items: center; justify-content: space-between; }
}
