:root {
  --bg: #f5eddc;
  --bg-deep: #ead4ba;
  --surface: rgba(255, 250, 241, 0.78);
  --surface-strong: #fff8ee;
  --text: #1f2430;
  --muted: #596171;
  --line: rgba(31, 36, 48, 0.12);
  --accent: #0f766e;
  --accent-deep: #0a4f49;
  --highlight: #c66e2b;
  --shadow: 0 24px 80px rgba(41, 51, 66, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100svh;
  color: var(--text);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 18%, rgba(15, 118, 110, 0.18), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(198, 110, 43, 0.2), transparent 20%),
    linear-gradient(135deg, #f8f2e7 0%, var(--bg) 45%, var(--bg-deep) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(14px);
  opacity: 0.4;
  pointer-events: none;
}

body::before {
  top: -8rem;
  right: -6rem;
  background: rgba(15, 118, 110, 0.22);
}

body::after {
  bottom: -8rem;
  left: -7rem;
  background: rgba(198, 110, 43, 0.2);
}

.page-shell {
  display: grid;
  min-height: 100svh;
  max-height: 100svh;
  padding: 20px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  gap: 20px;
  align-items: stretch;
  width: min(1180px, 100%);
  min-height: calc(100svh - 40px);
  max-height: calc(100svh - 40px);
  margin: auto;
}

.hero-copy,
.hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy::after,
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 34%);
  pointer-events: none;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
}

.eyebrow,
.proof-label,
.profile-kicker,
dt,
.verification-bar span {
  font-family: "Avenir Next", "Franklin Gothic Medium", sans-serif;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 700;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 10ch;
  font-size: clamp(2.7rem, 4.8vw, 4.5rem);
  line-height: 0.92;
}

.intro {
  max-width: 58ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.verification-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.verification-bar span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.proof-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 248, 238, 0.86);
}

.proof-card-wide {
  grid-column: 1 / -1;
}

.proof-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-card strong,
.proof-card a {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.45;
  text-decoration: none;
  word-break: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fffefb;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-deep);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.34);
}

.hero-visual {
  display: grid;
  grid-template-rows: minmax(0, 0.98fr) minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
}

.image-frame {
  min-height: 0;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(15, 118, 110, 0.16), rgba(198, 110, 43, 0.14));
  border: 1px solid rgba(15, 118, 110, 0.12);
  overflow: hidden;
}

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

.profile-card {
  padding: 6px 6px 2px;
}

.profile-kicker {
  margin: 0 0 12px;
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  line-height: 1.08;
}

.profile-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.profile-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
}

.profile-list div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

dd a {
  color: var(--text);
  text-decoration: none;
}

@media (max-width: 980px) {
  .page-shell {
    padding: 18px;
    min-height: auto;
    max-height: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
  }

  .hero-copy {
    padding: 30px;
    display: block;
  }

  .hero-visual {
    padding: 18px;
    grid-template-rows: auto;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-card-wide {
    grid-column: auto;
  }

  .hero-actions .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
  }

  .intro,
  .proof-card strong,
  .proof-card a,
  dd {
    font-size: 0.98rem;
  }

  .image-frame {
    min-height: 220px;
  }
}
