* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f3ed;
  --bg-alt: #ffffff;
  --text: #25272b;
  --muted: #5f6670;
  --accent: #c5a16f;
  --accent-soft: #eadfce;
  --navy: #112747;
  --border: #e7ddcf;
  --shadow: 0 18px 50px rgba(17, 39, 71, 0.12);
  --soft-card: rgba(255, 255, 255, 0.72);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(197, 161, 111, 0.08), transparent 32rem),
    linear-gradient(180deg, #fbf8f3 0%, var(--bg) 100%);
  line-height: 1.7;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 80px 0 70px;
}

.hero-inner {
  max-width: 940px;
}

.profile-image {
  width: 178px;
  height: 178px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 10px solid var(--accent-soft);
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-weight: 700;
  font-size: 0.78rem;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.55rem, 5.8vw, 5.3rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
  color: var(--text);
  max-width: 940px;
  margin: 0 auto 28px;
}

.hero-subtitle {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: var(--muted);
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 28px rgba(17, 39, 71, 0.18);
}

.btn.secondary {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--accent);
}

.btn.inline {
  margin-top: 16px;
}

.section {
  padding: 92px 0;
  border-top: 1px solid var(--border);
}

.section.alternate {
  background: rgba(255, 255, 255, 0.48);
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 54px;
  align-items: center;
}

.grid.reverse {
  grid-template-columns: 1.08fr 1fr;
}

.text-block h2,
.connect h2,
.section-intro h2,
.feature-box h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.text-block p,
.connect p,
.section-intro p,
.feature-box p {
  font-size: 1.06rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.section-intro {
  max-width: 850px;
  margin-bottom: 40px;
}

.image-card {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}

.image-card img {
  display: block;
  width: 100%;
  height: auto;
}

.clean-list {
  list-style: none;
  margin: 24px 0 20px;
}

.clean-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: #3d4650;
  font-size: 1.04rem;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.card-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.insight-card,
.testimonial-card,
.quote-panel,
.feature-box {
  border: 1px solid var(--border);
  background: var(--soft-card);
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(17, 39, 71, 0.08);
}

.insight-card {
  padding: 28px;
}

.card-label {
  display: inline-flex;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.insight-card h3 {
  color: var(--navy);
  font-size: 1.26rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.insight-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.feature-box {
  padding: 48px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.88), rgba(234,223,206,0.44));
}

.testimonial-card {
  padding: 28px;
}

.testimonial-card p {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.55;
  margin-bottom: 16px;
}

.testimonial-card footer {
  color: var(--muted);
  font-size: 0.92rem;
}

.quote-panel {
  padding: 42px;
  background: var(--navy);
  color: #fff;
}

.quote-panel p {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.45;
  color: #fff;
}

.connect {
  padding: 94px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.connect-inner {
  max-width: 820px;
}

footer {
  padding: 36px 0 50px;
  text-align: center;
  color: #7b818a;
  border-top: 1px solid var(--border);
}

@media (max-width: 960px) {
  .card-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .grid,
  .grid.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reverse .image-card {
    order: 2;
  }

  .reverse .text-block {
    order: 1;
  }

  .section {
    padding: 64px 0;
  }

  .profile-image {
    width: 148px;
    height: 148px;
  }
}

@media (max-width: 680px) {
  .card-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .feature-box,
  .quote-panel,
  .insight-card,
  .testimonial-card {
    border-radius: 20px;
    padding: 24px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .button-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .eyebrow {
    letter-spacing: 0.22em;
  }
}


.section-buttons {
  justify-content: flex-start;
  margin-top: 20px;
}

.feature-card {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.feature-card h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
  color: var(--navy);
}

.feature-card p {
  color: var(--muted);
  font-size: 1.03rem;
  max-width: 760px;
}

.eyebrow.compact {
  margin-bottom: 10px;
  font-size: 0.72rem;
}

.publication-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.publication-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
}

.publication-card h3 {
  color: var(--navy);
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.publication-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.callout-section {
  background: var(--navy);
  color: #fff;
}

.callout-inner {
  max-width: 860px;
  text-align: center;
}

.callout-section .eyebrow {
  color: var(--accent-soft);
}

.callout-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.callout-section p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.callout-section .btn.primary {
  background: #fff;
  color: var(--navy);
  box-shadow: none;
}

.callout-section .btn.secondary {
  color: #fff;
  border-color: var(--accent-soft);
}

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

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

  .section-buttons {
    justify-content: center;
  }
}

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

  .feature-card {
    padding: 24px;
  }
}
