:root {
  color-scheme: light;
  --bg: #eef3f5;
  --surface: #ffffff;
  --surface-muted: #e3ebee;
  --text: #1b2730;
  --muted: #5e707b;
  --accent: #284f63;
  --accent-soft: #d7e3e8;
  --border: rgba(27, 39, 48, 0.1);
  --shadow: 0 24px 70px rgba(27, 39, 48, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #f8fbfc 0%, var(--bg) 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  width: min(1100px, calc(100% - 48px));
  margin-inline: auto;
}

.page {
  display: grid;
  min-height: 100vh;
  align-items: center;
}

.intro-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  padding: 48px 0;
  align-items: stretch;
}

.intro-copy,
.photo-frame,
.contact-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.intro-copy {
  padding: clamp(32px, 5vw, 52px);
}

.photo-frame {
  margin: 0;
  overflow: hidden;
  min-height: 320px;
  background: var(--surface-muted);
}

.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

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

h3 {
  font-size: 1.2rem;
}

.lead {
  margin: 18px 0 24px;
  font-size: 1.12rem;
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #f7fbfd;
  font-weight: 600;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.contact-card {
  padding: 22px;
  background: linear-gradient(180deg, rgba(215, 227, 232, 0.4), rgba(255, 255, 255, 0.96));
}

.contact-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
}

.contact-card p + p {
  margin-top: 10px;
}

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

@media (max-width: 900px) {
  .intro-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page {
    width: min(100%, calc(100% - 24px));
  }

  .intro-card {
    padding-top: 18px;
    gap: 18px;
  }

  .intro-copy,
  .photo-frame,
  .contact-card {
    border-radius: 22px;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
