:root {
  --ink: #1c2b2a;
  --ink-soft: #556361;
  --cream: #f7f3ec;
  --sand: #e8ddce;
  --paper: #fffdf9;
  --green: #204c48;
  --green-dark: #153b39;
  --terracotta: #d57950;
  --gold: #d9ad6b;
  --line: rgba(28, 43, 42, 0.13);
  --shadow: 0 24px 70px rgba(26, 49, 46, 0.14);
  --radius: 24px;
  --serif: "Inter", Arial, sans-serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(21, 59, 57, 0.94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.nav-wrap,
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-wrap {
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.main-nav a {
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--gold);
}

.main-nav .nav-cta {
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 30px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 790px;
  height: 100svh;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: url("assets/hero-maggie.jpg") center / cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 32, 31, 0.88) 0%, rgba(12, 32, 31, 0.63) 42%, rgba(12, 32, 31, 0.1) 100%),
    linear-gradient(0deg, rgba(10, 28, 27, 0.52), transparent 48%);
}

.hero-road {
  position: absolute;
  right: -70px;
  bottom: -50px;
  width: 39vw;
  height: 52vh;
  border-left: 2px solid rgba(255, 255, 255, 0.17);
  border-radius: 65% 0 0;
  transform: rotate(-7deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 0;
  transform: translateY(20px);
}

.hero-channel-name {
  display: inline-block;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--terracotta);
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 0.96;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);
}

.hero-channel-name strong {
  color: var(--gold);
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-eyebrow {
  color: #edbd86;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 820px;
  margin-top: 58px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 1.02;
}

h1 em,
h2 em {
  color: var(--gold);
  font-weight: 700;
  font-style: normal;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.6;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: #fff;
  background: var(--terracotta);
}

.button-primary:hover {
  background: #c7663e;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #fff;
}

.button-ghost:hover,
.button-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.scroll-hint {
  position: absolute;
  z-index: 1;
  bottom: 34px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-hint i {
  position: relative;
  display: block;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-hint i::after {
  position: absolute;
  top: -40%;
  left: 0;
  width: 1px;
  height: 40%;
  content: "";
  background: #fff;
  animation: scroll-line 2s infinite;
}

@keyframes scroll-line {
  to {
    top: 100%;
  }
}

.section {
  padding: 130px 0;
}

.intro {
  background: var(--paper);
}

.intro-grid,
.maggie-grid,
.types-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 85px;
  align-items: center;
}

.intro-grid {
  align-items: start;
}

h2 {
  margin-bottom: 21px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.04;
}

.intro-copy,
.maggie-copy,
.types-heading {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.lead {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.65;
}

.section-heading h2 strong {
  color: var(--terracotta);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 15px;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.numbers {
  background: var(--green);
  color: #fff;
}

.numbers-wrap {
  display: grid;
  min-height: 280px;
  grid-template-columns: 1.15fr 0.7fr 0.7fr;
  gap: 38px;
  align-items: center;
}

.numbers h2 {
  max-width: 480px;
  margin: 0;
  color: #fff;
  font-size: 38px;
}

.stat {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.stat strong {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 5px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(54px, 5.2vw, 71px);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.stat small {
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.stat span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.maggie {
  background: var(--cream);
}

.maggie-grid {
  gap: 95px;
}

.maggie-image {
  position: relative;
}

.image-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  right: -35px;
  bottom: 40px;
  display: flex;
  width: 184px;
  min-height: 122px;
  align-items: flex-start;
  gap: 10px;
  padding: 21px;
  border-radius: 18px;
  background: var(--terracotta);
  box-shadow: 0 20px 40px rgba(124, 66, 41, 0.25);
  color: #fff;
}

.floating-note span {
  color: #f9d0b0;
  font-size: 29px;
  line-height: 0.7;
}

.floating-note p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-transform: uppercase;
}

.maggie-copy p {
  max-width: 530px;
}

.maggie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.maggie-tags span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-opportunities {
  background: var(--green-dark);
  color: #fff;
}

.opportunities-heading {
  max-width: 770px;
  margin: 0 auto 58px;
  text-align: center;
}

.opportunities-heading h2 {
  color: #fff;
}

.opportunities-heading p:last-child {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.opportunity-card {
  min-height: 275px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.opportunity-card.featured {
  background: var(--terracotta);
}

.card-number {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.featured .card-number {
  color: #f5d0ab;
}

.opportunity-card h3 {
  margin: 65px 0 10px;
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.015em;
}

.opportunity-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 14px;
  line-height: 1.7;
}

.featured p {
  color: rgba(255, 255, 255, 0.88);
}

.partnership-types {
  background: var(--paper);
}

.types-grid {
  gap: 100px;
}

.types-heading {
  align-self: start;
}

.types-list {
  border-top: 1px solid var(--line);
}

.type-item {
  display: flex;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.type-icon {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  place-items: center;
  border-radius: 50%;
  background: rgba(213, 121, 80, 0.12);
  color: var(--terracotta);
  font-size: 15px;
}

.type-item h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: -0.015em;
}

.type-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.ebook {
  background: #f27a00;
  background: linear-gradient(135deg, #f58a00 0%, #d95f00 100%);
}

.ebook-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.ebook-heading .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.ebook-heading h2 {
  color: #fff;
  margin-bottom: 14px;
}

.ebook-heading p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.ebook-banner {
  display: block;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 28px 80px rgba(97, 43, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ebook-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 92px rgba(97, 43, 0, 0.34);
}

.ebook-banner img {
  width: 100%;
}

.ebook-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.contact {
  position: relative;
  display: flex;
  min-height: 610px;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.contact-image,
.contact-overlay {
  position: absolute;
  inset: 0;
}

.contact-image {
  background: url("assets/beto-sammy-optimized.jpg") center / cover;
}

.contact-overlay {
  background: linear-gradient(90deg, rgba(13, 43, 41, 0.96) 0%, rgba(13, 43, 41, 0.82) 48%, rgba(13, 43, 41, 0.28) 100%);
}

.contact-content {
  position: relative;
  z-index: 1;
}

.contact h2 {
  max-width: 700px;
  color: #fff;
  font-size: clamp(49px, 6vw, 76px);
}

.contact p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 17px;
  line-height: 1.7;
}

.button-whatsapp {
  background: #52a979;
  color: #fff;
}

.button-whatsapp:hover {
  background: #438f65;
}

.button-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.47);
}

.social-links {
  display: flex;
  gap: 24px;
  margin-top: 36px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: var(--gold);
}

.site-footer {
  padding: 22px 0;
  background: #112e2d;
  color: #fff;
}

.site-footer .brand-logo {
  width: 54px;
  height: 54px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .section {
    padding: 92px 0;
  }

  .menu-toggle {
    z-index: 2;
    display: grid;
    gap: 5px;
    padding: 8px 0 8px 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    background: rgba(21, 59, 57, 0.99);
    font-size: 17px;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .menu-open .main-nav {
    visibility: visible;
    opacity: 1;
  }

  .menu-open .site-header {
    backdrop-filter: none;
  }

  .hero {
    min-height: 680px;
    background-position: 70% center;
  }

  .hero-road {
    display: none;
  }

  .intro-grid,
  .maggie-grid,
  .types-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .numbers-wrap {
    grid-template-columns: repeat(2, 1fr);
    padding: 52px 0;
  }

  .numbers-intro {
    grid-column: 1 / -1;
  }

  .image-card img {
    height: 510px;
  }

  .floating-note {
    right: 18px;
  }

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

  .opportunity-card {
    min-height: 220px;
  }

  .opportunity-card h3 {
    margin-top: 45px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .hero {
    min-height: 730px;
    background-position: 74% center;
  }

  h1 {
    max-width: 620px;
    font-size: 44px;
  }

  .hero-channel-name {
    max-width: 520px;
    margin-bottom: 16px;
    font-size: 39px;
    letter-spacing: 0.025em;
    line-height: 1;
  }

  .hero-copy {
    font-size: 15px;
  }

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

  .scroll-hint {
    left: 16px;
    transform: none;
  }

  .scroll-hint span {
    display: none;
  }

  h2 {
    font-size: 45px;
  }

  .lead {
    font-size: 18px;
  }

  .numbers-wrap {
    display: block;
  }

  .numbers h2 {
    margin-bottom: 36px;
    font-size: 32px;
  }

  .stat {
    margin-top: 25px;
    padding: 0 0 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    border-left: 0;
  }

  .stat strong {
    flex-wrap: nowrap;
    font-size: 58px;
  }

  .stat small {
    font-size: 22px;
  }

  .image-card img {
    height: 430px;
  }

  .floating-note {
    right: 10px;
    bottom: 14px;
    width: 160px;
    min-height: 103px;
    padding: 17px;
  }

  .opportunities-heading {
    text-align: left;
  }

  .contact {
    min-height: 670px;
  }

  .contact h2 {
    font-size: 53px;
  }

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

  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }
}
