:root {
  --ink: #1f2a2c;
  --ink-soft: #3c4c50;
  --accent: #cf5c36;
  --accent-dark: #ab4826;
  --cream: #f7f1e8;
  --mist: #eef3f4;
  --sea: #1f6f78;
  --sand: #f0dfc9;
  --shadow: 0 20px 60px rgba(12, 20, 24, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(120deg, #f6efe4 0%, #e7f1f0 45%, #fdf7ef 100%);
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(31, 111, 120, 0.18), transparent 70%);
  top: -120px;
  right: -140px;
  z-index: -2;
}

body::after {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(207, 92, 54, 0.18), transparent 70%);
  bottom: -160px;
  left: -100px;
}

.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 24px 48px;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Georgia", serif;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 2vw + 2rem, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 1.2vw + 1.6rem, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 12px;
  line-height: 1.6;
  color: var(--ink-soft);
}

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

a:hover {
  color: var(--accent-dark);
}

ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 64px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-aside {
  display: grid;
  gap: 18px;
  align-items: start;
}

.hero-photo {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 42, 44, 0.08);
  width: 100%;
  max-width: 320px;
}

.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--sea);
  font-weight: 700;
}

.hero-subtitle {
  font-weight: 500;
}

.lead {
  font-size: 1.05rem;
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(207, 92, 54, 0.22);
  color: #fff;
}

.button.ghost {
  background: transparent;
  border: 1px solid rgba(31, 42, 44, 0.2);
  color: var(--ink);
  box-shadow: none;
}

.hero-links {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sea);
  font-weight: 600;
}

.hero-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}

.card-header {
  margin-bottom: 16px;
}

.card-title {
  font-weight: 700;
  color: var(--ink);
}

.card-subtitle {
  font-size: 0.95rem;
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}

.pill-list li {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--mist);
  font-weight: 600;
  color: var(--ink);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  border-top: 1px solid rgba(31, 42, 44, 0.1);
  padding-top: 16px;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sea);
}

.stat-value {
  font-weight: 700;
  color: var(--ink);
}

.section {
  margin-bottom: 64px;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 28px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.photo-text {
  max-width: 520px;
}

.photo-frame {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 42, 44, 0.08);
  width: 100%;
  max-width: 360px;
}

.photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.timeline {
  display: grid;
  gap: 24px;
}

.timeline article {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 42, 44, 0.08);
}

.timeline-meta {
  font-weight: 600;
  color: var(--sea);
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 42, 44, 0.08);
  box-shadow: var(--shadow);
}

.muted {
  color: rgba(31, 42, 44, 0.6);
  font-size: 0.95rem;
}

.list {
  display: grid;
  gap: 18px;
}

.list > div {
  padding: 20px;
  border-radius: 18px;
  background: #fffaf4;
  border: 1px solid rgba(207, 92, 54, 0.15);
}

.list a {
  color: var(--accent-dark);
  font-weight: 600;
}

.split {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact {
  margin-bottom: 40px;
}

.contact-card {
  padding: 26px;
  border-radius: 22px;
  background: var(--sand);
  box-shadow: var(--shadow);
  border: 1px solid rgba(207, 92, 54, 0.18);
}

.contact-card strong {
  color: var(--ink);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 42, 44, 0.1);
  color: var(--ink-soft);
}

.footer a {
  font-weight: 600;
  color: var(--sea);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .page {
    padding: 48px 20px 40px;
  }

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

  .hero-photo,
  .photo-frame {
    max-width: 280px;
    margin: 0 auto;
  }

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

  .footer {
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
