:root {
  --color-white: #ffffff;
  --color-black: #0c0806;
  --color-gray: #5e534a;
  --color-gray-light: #8a7f75;
  --color-border: #d8d0c8;
  --color-orange: #da915f;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --max-width: 400px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page {
  overflow-x: hidden;
}

.fade-in {
  animation: fadeIn 0.6s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
}

.hero {
  height: 100svh;
  max-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  background: var(--color-white);
}

.hero__inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__logo-link {
  display: inline-flex;
  margin-bottom: 1rem;
  flex-shrink: 0;
  background: transparent;
}

.hero__logo {
  width: 36px;
  height: auto;
  display: block;
}

.hero__photo {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  margin-bottom: 1rem;
}

.hero__name {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 5.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero__role {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray);
}

.hero__text {
  margin: 0.875rem 0 0;
  max-width: 20rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-gray);
}

.hero__rule {
  width: 100%;
  max-width: 16rem;
  margin: 1rem 0 0.875rem;
  border: none;
  border-top: 1px solid var(--color-border);
}

.hero__actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.625rem 1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.btn--primary {
  background: var(--color-black);
  color: var(--color-white);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-black);
  border: 1.5px solid var(--color-black);
}

.btn--ghost {
  background: var(--color-white);
  color: var(--color-gray);
  border: 1.5px solid var(--color-border);
}

.btn--wide {
  max-width: 15rem;
}

.hero__footer {
  margin-top: 1rem;
}

.hero__tagline {
  margin: 0;
  font-size: 0.5625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gray-light);
}

.hero__copy {
  margin: 0.2rem 0 0;
  font-size: 0.5625rem;
  color: var(--color-gray-light);
}

.screen {
  min-height: 85svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.75rem;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--color-white);
}

.quote {
  margin: 0;
  max-width: 26rem;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--color-black);
  font-variation-settings: "SOFT" 0, "WONK" 1;
}

.quote__accent {
  color: var(--color-orange);
}

.features {
  width: 100%;
  max-width: 20rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 1.5rem;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}

.feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--color-gray);
}

.feature__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-black);
}

.screen--vision {
  max-width: none;
  width: 100%;
  padding-inline: 1.25rem;
}

.vision {
  margin: 0;
  width: 100%;
  max-width: 40rem;
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 6vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--color-black);
  font-variation-settings: "SOFT" 0, "WONK" 1;
}

.screen--cta {
  min-height: 60svh;
  gap: 1.5rem;
}

.cta__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  font-variation-settings: "SOFT" 0, "WONK" 1;
}

.contact-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem 2.5rem;
  background: var(--color-white);
}

.contact-page__back {
  align-self: flex-start;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray);
}

.contact-page__title {
  margin: 0 0 2rem;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.contact-page__list {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.contact-page__item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-page__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-gray-light);
}

.contact-page__value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-black);
}

.contact-page__footer {
  margin-top: auto;
  padding-top: 3rem;
  text-align: center;
}

.contact-page__footer p {
  margin: 0;
  font-size: 0.5625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gray-light);
}

.contact-page__footer p + p {
  margin-top: 0.2rem;
  text-transform: none;
  letter-spacing: 0;
}

@media (max-height: 700px) {
  .hero {
    padding: 1rem 1.25rem;
  }

  .hero__logo-link {
    margin-bottom: 0.75rem;
  }

  .hero__logo {
    width: 32px;
  }

  .hero__photo {
    width: 90px;
    height: 90px;
    margin-bottom: 0.75rem;
  }

  .hero__text {
    font-size: 0.75rem;
    margin-top: 0.625rem;
  }

  .hero__rule {
    margin: 0.75rem 0 0.625rem;
  }

  .hero__actions {
    gap: 0.375rem;
  }

  .btn {
    min-height: 2.5rem;
    font-size: 0.75rem;
  }

  .hero__footer {
    margin-top: 0.75rem;
  }
}

@media (min-width: 480px) {
  .hero__name {
    font-size: 1.875rem;
  }
}
