:root {
  --ink: #142133;
  --muted: #657384;
  --line: #e1e8ef;
  --paper: #ffffff;
  --soft: #f7f8fb;
  --brand: #f58220;
  --brand-dark: #10294d;
  --accent: #f58220;
  --footer: #0b1f3a;
  --shadow: 0 18px 45px rgba(20, 33, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 33, 51, 0.08);
}

.topbar {
  color: #fff;
  background: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.topbar-inner,
.nav,
.section,
.intro-strip,
.contact-section,
.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.quick-links,
.top-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.quick-links a:first-child,
.quick-links a:nth-child(2) {
  color: var(--accent);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.18rem;
  font-weight: 900;
  white-space: nowrap;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  color: var(--brand-dark);
  background: #eaf7fb;
  box-shadow: inset 0 0 0 1px rgba(16, 41, 77, 0.08);
}

.brand-mark svg {
  width: 50px;
  height: 50px;
  overflow: visible;
}

.logo-globe,
.logo-line,
.logo-swoosh,
.logo-cap-line {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-cap {
  fill: var(--brand-dark);
}

.logo-cap-line {
  stroke-width: 2.2;
}

.logo-swoosh {
  stroke-width: 4.2;
}

.logo-globe {
  color: var(--brand);
  stroke-width: 3.1;
}

.logo-line {
  color: var(--brand);
  opacity: 0.92;
  stroke-width: 2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: #2f4054;
  font-size: 0.93rem;
  font-weight: 800;
}

.nav-links a,
.topbar a,
.footer a {
  transition: color 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.topbar a:hover,
.footer a:hover {
  color: var(--accent);
}

.call-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
  white-space: nowrap;
}

.nav-toggle,
.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 31, 58, 0.88), rgba(11, 31, 58, 0.58) 48%, rgba(11, 31, 58, 0.32)),
    linear-gradient(180deg, rgba(11, 31, 58, 0.12), rgba(11, 31, 58, 0.6));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 54px;
  align-items: center;
  padding: 90px 0;
}

.hero-copy {
  max-width: 760px;
}

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

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
}

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

.hero-lede {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button,
.hero-form button,
.contact-form button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button-primary,
.hero-form button,
.contact-form button {
  color: #10294d;
  background: var(--accent);
}

.button-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.12);
}

.hero-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-form h2 {
  margin-bottom: 4px;
  font-size: 1.55rem;
}

.hero-form label,
.contact-form label {
  display: grid;
  gap: 7px;
  color: #33475c;
  font-size: 0.92rem;
  font-weight: 850;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cbd8e4;
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

.intro-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: -54px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.intro-strip div {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.intro-strip div:last-child {
  border-right: 0;
}

.intro-strip strong {
  color: var(--brand);
  font-size: 1.55rem;
  line-height: 1;
}

.intro-strip span {
  color: var(--muted);
  font-weight: 750;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

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

.section-heading.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.about-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 470px;
}

.about-media img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.experience-badge {
  position: absolute;
  right: 24px;
  bottom: -28px;
  display: grid;
  gap: 4px;
  min-width: 210px;
  padding: 22px;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
}

.experience-badge strong {
  font-size: 1.8rem;
  line-height: 1;
}

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

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.mission-grid article,
.steps-grid article,
.destination-grid article,
.service-grid article,
.course-grid article,
.testimonial-grid figure {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(20, 33, 51, 0.06);
}

.mission-grid article {
  padding: 22px;
}

.text-link {
  display: inline-flex;
  color: var(--brand);
  font-weight: 900;
}

.steps-section,
.services-section,
.testimonials-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  background: var(--soft);
}

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

.steps-grid article {
  padding: 24px;
}

.steps-grid span,
.destination-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 1.9rem;
  font-weight: 950;
}

.steps-grid p,
.destination-grid p,
.service-grid p,
.course-grid p,
.testimonial-grid blockquote,
.why-card p,
.footer p {
  color: var(--muted);
}

.destination-grid article {
  min-height: 262px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.destination-grid article::before {
  content: "";
  position: absolute;
  inset: auto -30px -56px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.12);
}

.destination-grid a,
.service-grid a,
.course-grid a {
  margin-top: auto;
  color: var(--brand);
  font-weight: 900;
}

.intake-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--brand-dark);
}

.intake-band span {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 18px;
  color: #fff;
  background: var(--brand);
  text-align: center;
  font-weight: 950;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid article {
  display: grid;
  gap: 8px;
  padding: 26px;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
  font-weight: 950;
}

.why-section {
  padding-top: 70px;
}

.why-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  padding: 44px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 31, 58, 0.96), rgba(16, 41, 77, 0.86)),
    url("assets/hero-campus.png") center/cover;
}

.why-card .eyebrow,
.why-card p,
.why-card li {
  color: rgba(255, 255, 255, 0.9);
}

.why-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-card li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}

.why-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
}

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

.course-grid article {
  min-height: 142px;
  display: grid;
  align-content: space-between;
  padding: 24px;
}

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

.testimonial-grid figure {
  margin: 0;
  padding: 26px;
}

.stars {
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 950;
}

blockquote {
  margin: 0 0 18px;
  font-size: 1.12rem;
  font-weight: 800;
}

figcaption {
  color: var(--brand);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
  padding: 96px 0;
}

.contact-copy {
  position: sticky;
  top: 150px;
}

.contact-copy h2 {
  margin-bottom: 18px;
}

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

.contact-panel {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-panel a,
.contact-panel span {
  padding: 15px 16px;
  border-radius: 8px;
  color: var(--brand-dark);
  background: var(--soft);
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form button {
  color: #fff;
  background: var(--brand);
}

.footer {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 0.7fr));
  gap: 42px;
  padding: 58px max(20px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.84);
  background: var(--footer);
}

.footer h3 {
  color: #fff;
}

.footer p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.68);
}

.footer > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer span {
  color: rgba(255, 255, 255, 0.68);
}

.footer .brand {
  color: #fff;
  margin-bottom: 8px;
}

@media (max-width: 1100px) {
  .nav {
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .menu-button {
    display: inline-flex;
    margin-left: auto;
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 900;
  }

  .nav-links,
  .call-button {
    display: none;
  }

  .nav-toggle:checked ~ .nav-links,
  .nav-toggle:checked ~ .call-button {
    display: flex;
  }

  .nav-links {
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-left: 0;
  }

  .hero-inner,
  .about-section,
  .contact-section,
  .why-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-form {
    max-width: 520px;
  }

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

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

@media (max-width: 760px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 0;
  }

  .top-contact,
  .quick-links {
    gap: 10px 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    padding: 70px 0 96px;
  }

  .intro-strip,
  .intake-band,
  .service-grid,
  .course-grid,
  .testimonial-grid,
  .mission-grid,
  .contact-form,
  .footer {
    grid-template-columns: 1fr;
  }

  .intro-strip {
    width: min(100% - 28px, 1180px);
  }

  .intro-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-strip div:last-child {
    border-bottom: 0;
  }

  .section,
  .contact-section {
    width: min(100% - 28px, 1180px);
    padding: 72px 0;
  }

  .steps-section,
  .services-section,
  .testimonials-section {
    width: 100%;
  }

  .section-heading.split {
    align-items: flex-start;
    flex-direction: column;
  }

  .steps-grid,
  .destination-grid {
    grid-template-columns: 1fr;
  }

  .about-media,
  .about-media img {
    min-height: 340px;
    height: 340px;
  }

  .experience-badge {
    right: 16px;
    bottom: -22px;
  }

  .contact-copy {
    position: static;
  }

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