* {
  box-sizing: border-box;
}

:root {
  --bg: #f3efea;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-soft: rgba(255, 255, 255, 0.92);
  --text: #2f2a28;
  --muted: #736b66;
  --border: #ddd4ce;
  --accent: #1d6b84;
  --accent-dark: #145163;
  --shadow: 0 14px 34px rgba(28, 35, 39, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 15px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(18, 45, 59, 0.12), rgba(18, 45, 59, 0.18)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80")
      center top / cover no-repeat fixed;
}

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

a {
  color: inherit;
}

.page-shell {
  width: min(760px, calc(100% - 1rem));
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.hero {
  margin-bottom: 0.9rem;
}

.hero-card,
.contact-card,
.resources-card {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-card {
  background: var(--surface);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.46);
  text-align: center;
  padding: 1.5rem 1.15rem 1.45rem;
}

.avatar-ring {
  width: 88px;
  height: 88px;
  margin: 0 auto 0.9rem;
  padding: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.eyebrow,
.section-label {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

h1,
h2 {
  margin-top: 0;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.3rem);
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  margin-bottom: 0.6rem;
}

.hero-copy,
.section-copy,
.resource-text {
  color: var(--muted);
}

.hero-copy {
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.55;
}

.section {
  margin-top: 0.85rem;
}

.contact-card {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  padding: 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: end;
  justify-content: space-between;
}

.contact-copy {
  max-width: 520px;
}

.contact-cta {
  flex-shrink: 0;
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.contact-cta:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.resources-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  padding: 1.1rem;
}

.resources-head {
  margin-bottom: 0.7rem;
}

.links-list {
  display: grid;
  gap: 0.55rem;
}

.resource-item {
  display: block;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.8rem 0.9rem;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.resource-item:hover,
.secondary-button:hover {
  transform: translateY(-1px);
  opacity: 0.98;
}

.resource-title {
  display: block;
  font-weight: 700;
  font-size: 0.96rem;
  margin-bottom: 0.15rem;
}

.resource-text {
  display: block;
  font-size: 0.88rem;
}

.secondary-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.secondary-button {
  display: block;
  text-align: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.9rem 1rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

@media (max-width: 700px) {
  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-cta {
    width: 100%;
    text-align: center;
  }

  .secondary-actions {
    grid-template-columns: 1fr;
  }
}