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

:root {
  --blue: #3B72F5;
  --white: #ffffff;
  --side: 16rem;
}

body {
  background-color: var(--blue);
  color: var(--white);
  font-family: 'DM Serif Display', serif;
  min-height: 100vh;
}

a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  opacity: 0.75;
}

/* ── HOME ── */
body.home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 var(--side);
  position: relative;
  overflow: hidden;
}

.home-main {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}

.home-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(5rem, 15vw, 13rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  white-space: nowrap;
}

.home-nav {
  display: flex;
  gap: 3rem;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  text-transform: lowercase;
  white-space: nowrap;
}

.home-footer {
  position: fixed;
  bottom: 2rem;
  right: var(--side);
  font-size: 1rem;
  font-family: 'DM Serif Display', serif;
  opacity: 0.85;
  font-style: italic;
}

/* ── INNER PAGES ── */
body.inner {
  padding: 0;
}

.topnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem var(--side);
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 1.2rem;
  text-transform: lowercase;
}

/* ── ABOUT ── */
.about-section {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 5rem;
  padding: 2rem var(--side) 4rem;
  align-items: start;
}

.about-photo {
  width: 100%;
  display: block;
}

.about-text h1 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.9;
  text-transform: lowercase;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  line-height: 1.6;
  text-align: justify;
}

.about-section-2 {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 5rem;
  padding: 0 var(--side) 5rem;
  align-items: center;
  margin-top: -2rem;
}

.about-section-2 p {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  line-height: 1.6;
  text-align: justify;
}

.about-section-2 p + p {
  margin-top: 0.75rem;
}

.about-section-2 .contact-link {
  display: block;
  margin-top: 2rem;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 1.4rem;
  text-transform: lowercase;
}

.polaroid-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.polaroid {
  width: 100%;
}

.polaroid img {
  width: 100%;
  display: block;
}

/* ── CONTACT ── */
.contact-banner {
  width: calc(100% - var(--side) * 2);
  margin: 2rem auto 0;
  height: 380px;
  object-fit: cover;
  display: block;
}

.contact-body {
  padding: 3rem var(--side) 5rem;
}

.contact-body h1 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.9;
  text-transform: lowercase;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 2.5rem;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 1.4rem;
  text-transform: lowercase;
  flex-wrap: wrap;
}
