:root {
  --hero-bg: #c9cdce;
  --about-bg: #e6ddca;
  --footer-bg: #eae9e8;
  --ink: #141414;
  --ink-soft: #2b2b2b;
  --btn-bg: #0d0d0d;
  --btn-ink: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--hero-bg);
  padding: 2.5rem clamp(1.5rem, 5vw, 5rem) clamp(3rem, 6vw, 6rem);
}

.hero__header {
  margin-bottom: clamp(2rem, 6vw, 5rem);
}

.brand {
  font-family: "Lora", Georgia, serif;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.hero__title {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  max-width: 34ch;
  color: var(--ink-soft);
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-bg);
  color: var(--btn-ink);
  text-decoration: none;
  font-size: 1rem;
  padding: 1.15rem 3rem;
  border-radius: 999px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.hero__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__photo {
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  flex: 0 0 auto;
}

/* ---------- About ---------- */
.about {
  background: var(--about-bg);
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.about__title {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.01em;
}

.about__text .about__lead {
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  line-height: 1.45;
  color: var(--ink);
  max-width: none;
  margin: 0 0 1.75rem;
}

.about__text p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
  max-width: 54ch;
}

.about__media {
  align-self: center;
}

.about__photo {
  width: 100%;
  height: auto;
  border-radius: 10px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--footer-bg);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 5vw, 5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__name {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  text-align: right;
}

.footer__contact a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__location {
  color: var(--ink-soft);
}

/* ---------- Responsive ---------- */
@media (max-width: 800px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__media {
    order: -1;
  }

  .hero__photo {
    max-width: 320px;
  }

  .about__inner {
    grid-template-columns: 1fr;
  }

  .about__media {
    position: static;
    order: -1;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__contact {
    align-items: flex-start;
    text-align: left;
  }
}
