/* ===================== Tokens ===================== */
:root {
  --bg:        #fdfcf8;
  --ink:       #1E1F1A;
  --teal:      #2F8B80;
  --yellow:    #FBB304;
  --red:       #E8481B;
  --green:     #6FB02A;
  --border:    #ece8df;
  --muted:     #5A5C54;

  --font-display: 'Fredoka', sans-serif;
  --font-body:    'Nunito Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --maxw: 1080px;

  --teal-grad: linear-gradient(#3CA293, #2F8B80 60%, #287a70);
}

/* ===================== Base ===================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
a { color: inherit; }
::selection { background: var(--teal); color: #fff; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .2em;
}
.eyebrow--teal   { color: var(--teal); }
.eyebrow--yellow { color: var(--yellow); }
.eyebrow--red    { color: var(--red); }

/* ===================== Buttons ===================== */
.btn {
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 100px;
  display: inline-block;
}
.btn--pill {
  font-size: 14.5px;
  background: var(--teal-grad);
  color: #fff;
  padding: 11px 20px;
  box-shadow: 0 4px 0 #1f5d55, inset 0 1px 0 rgba(255,255,255,.28);
}
.btn--primary {
  background: var(--teal-grad);
  color: #fff;
  box-shadow: 0 5px 0 #1f5d55, 0 11px 16px rgba(31,93,85,.36), inset 0 1px 0 rgba(255,255,255,.28);
}
.btn--outline {
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--lg { font-size: 16px; }
.btn--primary.btn--lg { padding: 15px 30px; }
.btn--outline.btn--lg { padding: 13px 26px; }

/* ===================== Nav ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,252,248,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__brand {
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -.01em;
}
.nav__links { display: flex; gap: 6px; align-items: center; }
.nav__link {
  text-decoration: none;
  font-weight: 700;
  font-size: 14.5px;
  color: #3c3e38;
  padding: 8px 13px;
  border-radius: 100px;
}
.nav__link--accent { color: var(--teal); }

/* ===================== Hero ===================== */
.hero { position: relative; }
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#eef3f3 1px, transparent 1px),
    linear-gradient(90deg, #eef3f3 1px, transparent 1px);
  background-size: 34px 34px;
}
.hero__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px 28px 80px;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__portrait { position: relative; }
.hero__deco { position: absolute; z-index: 1; }
.hero__deco--dot {
  left: -16px; top: -16px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--yellow);
}
.hero__deco--square {
  right: -14px; bottom: -16px;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--red);
  transform: rotate(16deg);
}
.hero__img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 28%;
  display: block;
  z-index: 2;
  box-shadow: 0 24px 54px rgba(30,45,45,.16);
  border-radius: 22px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: -.025em;
  margin: 14px 0 0;
}
.hero__lede {
  font-size: 20px;
  line-height: 1.6;
  color: #3c3e38;
  margin: 22px 0 30px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ===================== Story ===================== */
.story { background: var(--ink); color: var(--bg); }
.story__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 92px 28px;
}
.story__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 14px 0 28px;
}
.story__p { font-size: 18px; line-height: 1.8; margin: 0 0 20px; }
.story__p--light { color: #d7dad1; }
.story__p--dim { color: #a8ab9f; margin-bottom: 36px; }
.chips { display: flex; gap: 14px; flex-wrap: wrap; }
.chip {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: #cfd3cd;
  border: 1px solid #34352c;
  padding: 9px 16px;
  border-radius: 100px;
}

/* ===================== Focus ===================== */
.focus {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 92px 28px;
}
.focus__head { margin-bottom: 48px; }
.focus__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 42px;
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 14px 0 0;
}
.focus__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 34px;
}
.card__icon {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 18px;
}
.card__icon--yellow { background: var(--yellow); }
.card__icon--teal   { background: var(--teal); }
.card__icon--green  { background: var(--green); }
.card__icon--red    { background: var(--red); }
.card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 8px;
}
.card__p { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0; }

/* ===================== Quote ===================== */
.quote { background: var(--yellow); }
.quote__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 88px 28px;
  text-align: center;
}
.quote__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 38px;
  line-height: 1.25;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--ink);
}
.quote__attr {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .14em;
  color: #7a5500;
  margin: 28px 0 0;
}

/* ===================== Speaking ===================== */
.speaking {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 92px 28px;
}
.speaking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.speaking__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 14px 0 18px;
}
.speaking__p {
  font-size: 17px;
  line-height: 1.7;
  color: #3c3e38;
  margin: 0 0 26px;
  max-width: 460px;
}
.topics {
  background: #f4f8f4;
  border: 1px solid #d9ead0;
  border-radius: 22px;
  padding: 38px;
}
.topics__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: #3d7a23;
  margin-bottom: 18px;
}
.topics__list { display: flex; flex-direction: column; gap: 14px; }
.topic {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}
.topic__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: none;
}
.topic__dot--yellow { background: var(--yellow); }
.topic__dot--teal   { background: var(--teal); }
.topic__dot--green  { background: var(--green); }
.topic__dot--red    { background: var(--red); }

/* ===================== Footer ===================== */
.footer { background: var(--ink); color: #cfd3cd; }
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 54px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--bg);
}
.footer__role {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  color: #6b6d63;
  margin: 8px 0 0;
}
.footer__actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.footer__visit {
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: #cfd3cd;
  border: 1px solid #34352c;
  padding: 10px 18px;
  border-radius: 100px;
}
.footer__email {
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  background: var(--yellow);
  color: var(--ink);
  padding: 11px 20px;
  border-radius: 100px;
}
.footer__bar { border-top: 1px solid #34352c; }
.footer__bar-inner { max-width: var(--maxw); margin: 0 auto; padding: 18px 28px; }
.footer__copy {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  color: #6b6d63;
}

/* ===================== Responsive ===================== */
@media (max-width: 860px) {
  .nav__inner { flex-wrap: wrap; }
  .nav__links { order: 3; width: 100%; justify-content: flex-start; flex-wrap: wrap; }

  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px 56px; }
  .hero__title { font-size: 46px; }

  .focus__grid { grid-template-columns: 1fr; }
  .focus__title { font-size: 34px; }

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

  .quote__text { font-size: 28px; }
  .story__title { font-size: 32px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 40px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; }
}
