:root {
  --bg: #f7f0df;
  --paper: rgba(255, 250, 241, 0.88);
  --ink: #17384b;
  --muted: #516c79;
  --gold: #d49a1f;
  --deep-gold: #8b5e12;
  --jade: #157c63;
  --jade-soft: #dff5eb;
  --line: rgba(23, 56, 75, 0.12);
  --shadow: 0 24px 60px rgba(34, 42, 52, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 216, 127, 0.42), transparent 28%),
    linear-gradient(180deg, #f9f4e8 0%, #f5ecdb 42%, #efe5cf 100%);
}

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: auto -10vw -12vh auto;
  width: 52vw;
  height: 52vw;
  background: radial-gradient(circle, rgba(21, 124, 99, 0.14), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero,
.section {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding: 28px 0 72px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 248, 235, 0.6)),
    url("assets/ornament-bg.png") center top / cover no-repeat;
  opacity: 0.22;
  pointer-events: none;
}

.topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 6px 28px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(138, 87, 19, 0.16);
  background: rgba(255, 255, 255, 0.88);
}

.brand-mark strong {
  display: block;
  font-size: 1.1rem;
}

.eyebrow,
.kicker,
.role-tag,
.stat-label {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
}

.eyebrow,
.stat-label,
.role-tag {
  color: var(--jade);
}

.ghost-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
}

.hero-copy {
  padding: 18px 4px 0;
}

.kicker {
  color: var(--deep-gold);
  margin: 0 0 18px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 6rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.35rem, 4vw, 4rem);
  max-width: 13ch;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.15;
}

.lead,
.story-panel p,
.benefit-card p,
.showcase-copy p,
.cta-panel p,
.role-card li {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.lead {
  max-width: 60ch;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, #1a8f72, #11614f);
  box-shadow: 0 14px 30px rgba(17, 97, 79, 0.24);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(23, 56, 75, 0.12);
}

.hero-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 500;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(212, 154, 31, 0.12);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.visual-card {
  position: absolute;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.visual-card-main {
  inset: 0 72px 56px 0;
  background: #f1e2c4;
}

.visual-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card-side {
  right: 0;
  bottom: 0;
  width: 290px;
  padding: 24px;
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
}

.visual-card-side strong {
  display: block;
  margin: 10px 0 12px;
  font-size: 1.4rem;
  line-height: 1.15;
}

.visual-card-side p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 78px 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.story-grid,
.roles-grid,
.showcase,
.cta-panel,
.benefit-grid {
  display: grid;
}

.story-grid {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.story-panel,
.benefit-card,
.role-card,
.cta-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.accent-panel {
  background: linear-gradient(145deg, rgba(16, 96, 80, 0.95), rgba(16, 83, 69, 0.88));
  color: white;
}

.accent-panel h3,
.accent-panel li {
  color: white;
}

.accent-panel ul,
.role-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.accent-panel li,
.role-card li {
  margin-bottom: 10px;
}

.benefit-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(252, 245, 229, 0.92));
}

.benefit-index {
  display: inline-flex;
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  color: var(--deep-gold);
}

.roles-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.role-card {
  position: relative;
  overflow: hidden;
}

.role-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -28% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 154, 31, 0.18), transparent 70%);
}

.showcase {
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.showcase-media {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-copy {
  padding: 18px 0;
}

.cta {
  padding-bottom: 96px;
}

.cta-panel {
  gap: 16px;
  text-align: center;
  justify-items: center;
  background:
    linear-gradient(140deg, rgba(255, 247, 229, 0.95), rgba(236, 248, 242, 0.95));
}

.cta-panel h2 {
  max-width: 15ch;
}

.cta-panel p {
  max-width: 60ch;
  margin: 0;
}

@media (max-width: 1120px) {
  .hero-grid,
  .story-grid,
  .showcase,
  .benefit-grid,
  .roles-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 520px;
  }

  .visual-card-main {
    inset: 0 40px 44px 0;
  }
}

@media (max-width: 760px) {
  .hero,
  .section {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 50px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 18px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-visual {
    min-height: 420px;
  }

  .visual-card-main {
    inset: 0 0 78px 0;
  }

  .visual-card-side {
    position: absolute;
    width: auto;
    left: 20px;
    right: 20px;
    bottom: 0;
  }

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

  .story-panel,
  .benefit-card,
  .role-card,
  .cta-panel {
    padding: 22px;
  }
}
