:root {
  --red: #c91f2f;
  --red-dark: #9f1724;
  --yellow: #f7d34f;
  --yellow-soft: #fff4c7;
  --green: #294f3a;
  --green-soft: #e9f1e7;
  --ink: #213027;
  --muted: #65736a;
  --cream: #fffdf7;
  --white: #ffffff;
  --line: rgba(33, 48, 39, 0.10);
  --shadow: 0 20px 55px rgba(33, 48, 39, 0.13);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 247, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

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

.nav-cta {
  padding: 11px 18px;
  background: var(--red);
  color: var(--white);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.65rem;
  cursor: pointer;
}

.hero {
  padding: 82px 0 72px;
  background:
    radial-gradient(circle at 15% 15%, rgba(247, 211, 79, 0.23), transparent 33%),
    linear-gradient(180deg, #fffdf7 0%, #f5f6ea 100%);
  overflow: hidden;
}

.hero-grid,
.about-grid,
.academic-grid,
.outdoors-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 5.8vw, 5rem);
  letter-spacing: -0.04em;
}

h1 span {
  color: var(--red);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.7vw, 3.25rem);
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.hero-text {
  max-width: 640px;
  font-size: 1.14rem;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 28px rgba(201, 31, 47, 0.22);
}

.button-secondary {
  background: var(--white);
  border: 1px solid var(--line);
}

.button-light {
  color: var(--red-dark);
  background: var(--white);
  margin-top: 18px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-row div {
  min-width: 122px;
  padding-right: 20px;
  border-right: 1px solid var(--line);
}

.trust-row div:last-child {
  border-right: 0;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-size: 1.05rem;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.79rem;
}

.hero-image-wrap {
  position: relative;
  max-width: 500px;
  margin-left: auto;
}

.hero-image-frame {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
  border: 10px solid var(--white);
  transform: rotate(1.4deg);
}

.hero-image-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.logo-badge {
  position: absolute;
  right: -90px;

  bottom: 530px;
  width: 182px;
  height: 182px;
  padding: 8px;
  border-radius: 50%;
  background: var(--yellow); 
  border: 5px solid var(--white);
  box-shadow: 0 14px 30px rgba(33, 48, 39, 0.18);
}

.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-note {
  position: absolute;
  top: 28px;
  right: -22px;
  padding: 14px 18px;
  border-radius: 18px;
  background: var(--yellow);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(33, 48, 39, 0.16);
  transform: rotate(-3deg);
}

.floating-note span {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
}

.section {
  padding: 100px 0;
}

.section-soft {
  background: var(--green-soft);
}

.section-red {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(247, 211, 79, 0.18), transparent 30%),
    linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
}

.section-yellow {
  background: var(--yellow-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.centered > p:last-child {
  color: var(--muted);
}

.photo-stack {
  position: relative;
  min-height: 600px;
}

.photo-main,
.photo-small {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.photo-main {
  top: 0;
  left: 0;
  width: 76%;
  height: 500px;
}

.photo-small {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 270px;
  border: 9px solid var(--green-soft);
}

.section-copy > p {
  color: var(--muted);
}

.section-copy > p:last-of-type {
  margin-bottom: 22px;
}

.signature {
  display: inline-block;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.signature span {
  color: var(--red);
  padding: 0 4px;
}

.cards {
  display: grid;
  gap: 18px;
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(33, 48, 39, 0.06);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--yellow-soft);
  font-size: 1.45rem;
}

.card p,
.support-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.eyebrow-light {
  color: var(--yellow);
}

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

.section-red h2 {
  max-width: 700px;
}

.section-red p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 640px;
}

.support-list {
  display: grid;
  gap: 12px;
}

.support-item {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.support-item p {
  color: rgba(255, 255, 255, 0.78);
}

.support-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--red-dark);
  font-weight: 800;
}

.outdoors-photo {
  position: relative;
}

.outdoors-photo img {
  width: 100%;
  min-height: 610px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.image-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 15px 18px;
  border-radius: 15px;
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(7px);
  font-weight: 700;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 26px 0;
}

.mini-grid > div {
  padding: 15px;
  border-radius: 16px;
  background: var(--green-soft);
}

.mini-grid strong,
.mini-grid span {
  display: block;
}

.mini-grid span {
  color: var(--muted);
  font-size: 0.86rem;
}

.closing-line {
  font-weight: 700;
}

.quote-wrap {
  max-width: 900px;
  text-align: center;
}

.quote-mark {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--red);
  font-size: 6rem;
  line-height: 0.55;
}

blockquote {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

blockquote span {
  color: var(--red);
}

.quote-wrap p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  padding-top: 80px;
}

.contact-card {
  padding: 48px;
  border-radius: var(--radius-lg);
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-card .eyebrow {
  color: var(--yellow);
}

.contact-card h2 {
  max-width: 700px;
}

.contact-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 34px 0;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  text-decoration: none;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.13);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 1.25rem;
}

.contact-link small,
.contact-link strong {
  display: block;
}
/*aqui */
.contact-link small {
  color: rgba(255, 255, 255, 0.912);
  margin-bottom: 2px;
}

.contact-link strong {
  word-break: break-word;
}

.contact-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 30px 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .academic-grid,
  .outdoors-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero-image-wrap {
    margin: 0 auto;
    width: min(100%, 560px);
  }

  .photo-stack {
    min-height: 540px;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
  }

  .cards.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .outdoors-photo img {
    min-height: 480px;
  }
}

@media (max-width: 740px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

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

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 8px 6px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    padding-top: 52px;
  }

  .logo-badge {
    width: 100px;
    height: 100px;
    left: -8px;
    bottom: 10px;
  }

  .floating-note {
    top: 15px;
    right: -8px;
  }

  .trust-row {
    gap: 12px;
  }

  .trust-row div {
    min-width: 100px;
    padding-right: 12px;
  }

  .section {
    padding: 76px 0;
  }

  .photo-stack {
    min-height: 500px;
  }

  .photo-main {
    width: 84%;
    height: 400px;
  }

  .photo-small {
    width: 48%;
    height: 210px;
  }

  .cards.four,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .support-item {
    grid-template-columns: 44px 1fr;
  }

  .support-number {
    width: 42px;
    height: 42px;
    font-size: 0.82rem;
  }

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

  .contact-card {
    padding: 30px 22px;
  }

  .contact-footer,
  .footer-wrap {
    flex-direction: column;
  }
}
