@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');


:root {
  --bg: #faf6f5;
  --ink: #241718;
  --muted: #75686a;
  --accent: #b3262e;
  --accent-light: #f3dfe0;
  --card: #ffffff;
  --line: #dec9ca;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

.site-header {
  max-width: 1180px;
  margin: auto;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--ink);
  text-decoration: none;
  font: 700 28px "Space Grotesk", sans-serif;
}

.logo span, h1 span { color: var(--accent); }

nav { display: flex; gap: 30px; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}
nav a:hover, nav a.active { color: var(--ink); }

.hero {
  max-width: 1180px;
  min-height: 690px;
  margin: auto;
  padding: 70px 32px 110px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 90px;
  align-items: center;
}

.eyebrow, .tag {
  color: var(--accent);
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
}

h1 {
  margin: 10px 0 24px;
  font: 700 clamp(64px, 9vw, 120px)/.9 "Space Grotesk", sans-serif;
  letter-spacing: -.055em;
}

.intro {
  max-width: 520px;
  color: var(--muted);
  font-size: 20px;
  margin-bottom: 34px;
}

.button {
  display: inline-block;
  background: var(--ink);
  color: white;
  text-decoration: none;
  padding: 15px 22px;
  border-radius: 6px;
  font-weight: 700;
}
.button:hover { background: var(--accent); }

.photo-card {
  aspect-ratio: 4/5;
  background: var(--accent-light);
  border-radius: 18px;
  padding: 16px;
  transform: rotate(2deg);
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  border: 2px dashed #8bb8aa;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--accent);
}

.camera-icon {
  width: 58px;
  height: 58px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 34px;
  margin-bottom: 18px;
}

.photo-placeholder p { font-weight: 700; margin: 0; }
.photo-placeholder small { max-width: 190px; color: var(--muted); }

.quick-intro {
  background: var(--ink);
  color: white;
  padding: 80px max(32px, calc((100% - 1116px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.quick-intro h2 {
  font: 600 40px/1.1 "Space Grotesk", sans-serif;
  margin: 10px 0;
}
.quick-intro p:last-child { color: #ded0d1; max-width: 520px; }

footer {
  max-width: 1180px;
  margin: auto;
  padding: 28px 32px;
  color: var(--muted);
  font-size: 14px;
}

/* Journey */
.journey-page {
  max-width: 1000px;
  margin: auto;
  padding: 70px 32px 110px;
}
.page-heading { max-width: 760px; margin-bottom: 100px; }
.page-heading h1 { font-size: clamp(58px, 8vw, 100px); }
.page-heading > p:last-child { color: var(--muted); font-size: 19px; max-width: 650px; }

.timeline {
  position: relative;
  padding: 10px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 150px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 60px 1fr;
  gap: 0;
  margin-bottom: 70px;
}
.year {
  padding-top: 25px;
  color: var(--accent);
  font: 700 18px "Space Grotesk", sans-serif;
  text-align: right;
  padding-right: 28px;
}
.timeline-dot {
  width: 18px;
  height: 18px;
  background: var(--bg);
  border: 5px solid var(--accent);
  border-radius: 50%;
  margin: 26px auto 0;
  z-index: 1;
}
.timeline-card {
  background: var(--card);
  padding: 28px 32px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(20,34,31,.06);
}
.timeline-card h2 {
  margin: 4px 0 8px;
  font: 600 28px "Space Grotesk", sans-serif;
}
.timeline-card p:last-child { color: var(--muted); margin-bottom: 0; }
.timeline-card .tag { margin: 0; font-size: 10px; }
.future .timeline-card { border: 2px dashed var(--line); background: transparent; box-shadow: none; }

@media (max-width: 760px) {
  .site-header { padding: 22px; }
  nav { gap: 16px; font-size: 14px; }
  .hero { padding: 45px 22px 75px; grid-template-columns: 1fr; gap: 45px; }
  .photo-card { max-width: 430px; width: 100%; margin: auto; }
  .quick-intro { padding: 60px 22px; grid-template-columns: 1fr; gap: 25px; }
  footer { padding: 24px 22px; }
  .journey-page { padding: 45px 22px 75px; }
  .page-heading { margin-bottom: 60px; }
  .timeline::before { left: 10px; }
  .timeline-item { grid-template-columns: 35px 1fr; }
  .year { grid-column: 2; grid-row: 1; text-align: left; padding: 0 0 8px; }
  .timeline-dot { grid-column: 1; grid-row: 2; margin: 30px auto 0; }
  .timeline-card { grid-column: 2; grid-row: 2; padding: 24px; }
}
