:root {
  --bg: #f4efe7;
  --bg-soft: #fffaf4;
  --surface: rgba(255, 250, 244, 0.82);
  --surface-strong: #fffdf9;
  --ink: #1f2233;
  --muted: #615c68;
  --line: rgba(31, 34, 51, 0.12);
  --navy: #12304a;
  --navy-deep: #0a1d31;
  --gold: #bf8b30;
  --gold-soft: #f5ddb2;
  --sage: #6f8c78;
  --usa: #c94d46;
  --uk: #3459a6;
  --canada: #1e7a5a;
  --shadow-lg: 0 28px 60px rgba(18, 48, 74, 0.16);
  --shadow-md: 0 16px 32px rgba(18, 48, 74, 0.1);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Urbanist", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(191, 139, 48, 0.15), transparent 24rem),
    radial-gradient(circle at top right, rgba(30, 122, 90, 0.14), transparent 26rem),
    linear-gradient(180deg, #f8f2e8 0%, #f3ede3 34%, #f8f5ef 100%);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100vw - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0 0;
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.74);
  box-shadow: var(--shadow-md);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 16px;
  padding: 0.2rem;
  border: 1px solid rgba(18, 48, 74, 0.12);
}

.brand span,
.brand small {
  display: block;
}

.brand span {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand small {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
}

.site-nav a {
  position: relative;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.28rem;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  padding: 0.85rem 1.2rem;
  background: var(--navy);
  color: #fffdf6;
}

.button {
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(18, 48, 74, 0.18);
}

.button-primary {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
}

.button-secondary {
  border-color: rgba(18, 48, 74, 0.12);
  background: rgba(255, 255, 255, 0.55);
  color: var(--navy-deep);
}

.button-whatsapp {
  background: linear-gradient(135deg, #128c4a, #25d366);
  color: #fff;
}

.button-whatsapp-alt {
  background: linear-gradient(135deg, #0f3d62, #1f76b8);
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.value-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(2.9rem, 6vw, 5.7rem);
  max-width: 11ch;
}

.hero h1 span {
  color: var(--navy);
}

.hero-text,
.section-heading p,
.value-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 1.75rem 0 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-stats article {
  padding: 1rem;
  border: 1px solid rgba(18, 48, 74, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 252, 247, 0.72);
  box-shadow: var(--shadow-md);
}

.hero-stats strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--navy-deep);
  font-size: 1.1rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

.hero-card-main {
  inset: 0 0 4.5rem 3rem;
  padding: 1.2rem;
  background:
    radial-gradient(circle at top right, rgba(245, 221, 178, 0.45), transparent 16rem),
    linear-gradient(145deg, #10273f, #153b5a 55%, #1f5077);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-card-accent {
  right: 2rem;
  bottom: 0;
  width: min(280px, 70%);
  padding: 1.2rem 1.3rem;
  background: linear-gradient(180deg, rgba(255, 249, 241, 0.96), rgba(245, 221, 178, 0.96));
  border: 1px solid rgba(191, 139, 48, 0.24);
}

.hero-card-accent p {
  margin: 0 0 0.3rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-card-accent strong {
  font-size: 1.15rem;
  line-height: 1.35;
}

.admissions-board {
  height: 100%;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 1rem;
  padding: 1.45rem;
  border-radius: calc(var(--radius-xl) - 8px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  color: #fff7eb;
}

.board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.board-top p,
.board-heading p {
  margin: 0;
}

.board-top p {
  color: rgba(255, 247, 235, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.board-top span {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8b46a, #f3dfb0);
  color: var(--navy-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.board-heading strong {
  display: block;
  max-width: 12ch;
  font-family: "Fraunces", serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.board-heading p {
  margin-top: 0.75rem;
  max-width: 28rem;
  color: rgba(255, 247, 235, 0.78);
}

.country-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.country-pills span {
  display: inline-flex;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  align-self: end;
}

.board-grid article {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.board-grid small {
  display: block;
  margin-bottom: 0.3rem;
  color: rgba(255, 247, 235, 0.68);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.board-grid strong {
  font-size: 1rem;
  line-height: 1.35;
}

.trust-strip {
  padding: 0 0 2rem;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(18, 48, 74, 0.95);
  color: #fef8ef;
  box-shadow: var(--shadow-md);
}

.trust-items p {
  margin: 0;
  max-width: 38rem;
}

.trust-items ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-items li {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.section {
  padding: 4.5rem 0;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(11, 29, 49, 0.98), rgba(18, 48, 74, 0.95)),
    linear-gradient(135deg, rgba(191, 139, 48, 0.16), transparent 40%);
  color: #fff8ee;
}

.section-dark .eyebrow,
.section-dark .section-heading p {
  color: rgba(255, 248, 238, 0.78);
}

.section-accent {
  background:
    radial-gradient(circle at right center, rgba(191, 139, 48, 0.16), transparent 26rem),
    rgba(255, 251, 245, 0.72);
}

.photo-section {
  padding-top: 2.5rem;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section-heading.compact {
  margin-bottom: 1.5rem;
}

.section-heading h2,
.value-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.destination-grid,
.service-grid,
.process-grid,
.faq-grid,
.photo-grid {
  display: grid;
  gap: 1.2rem;
}

.photo-grid {
  grid-template-columns: 1.35fr 1fr 1fr;
  align-items: stretch;
}

.photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 48, 74, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-md);
}

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

.photo-card-wide img {
  height: 100%;
  min-height: 320px;
}

.photo-card figcaption {
  padding: 1rem 1.1rem 1.15rem;
  color: var(--muted);
  font-weight: 600;
}

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

.destination-card,
.service-card,
.process-card,
.faq-grid article,
.value-panel,
.contact-form {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.destination-card {
  padding: 1.4rem;
  background: rgba(255, 253, 249, 0.08);
}

.destination-card h3,
.service-card h3,
.process-card h3,
.faq-grid h3 {
  margin: 0 0 0.55rem;
  font-size: 1.22rem;
}

.destination-card p,
.destination-card li,
.service-card p,
.process-card p,
.faq-grid p,
.value-panel p {
  color: inherit;
  opacity: 0.88;
}

.destination-card ul,
.check-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.card-flag {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.usa .card-flag {
  background: rgba(201, 77, 70, 0.16);
  color: #ffd8d4;
}

.uk .card-flag {
  background: rgba(52, 89, 166, 0.22);
  color: #dbe6ff;
}

.canada .card-flag {
  background: rgba(30, 122, 90, 0.22);
  color: #d7fff0;
}

.services-layout {
  display: grid;
  gap: 1.6rem;
}

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

.service-card {
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.6);
}

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

.process-card {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.74);
}

.process-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}

.value-grid,
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 1.5rem;
  align-items: start;
}

.check-list li {
  margin-bottom: 0.65rem;
}

.value-panel {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(18, 48, 74, 0.96), rgba(28, 78, 119, 0.92));
  color: #fff8ef;
}

.value-panel img {
  width: 74px;
  height: 74px;
  margin-bottom: 1rem;
  padding: 0.45rem;
  border-radius: 20px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
}

.panel-label {
  margin: 0 0 0.25rem;
  color: rgba(255, 248, 238, 0.72);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.value-panel strong {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

.faq-section {
  background: rgba(255, 251, 245, 0.6);
}

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

.faq-grid article {
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.68);
}

.contact-copy {
  max-width: 34rem;
}

.contact-cards {
  display: grid;
  gap: 0.85rem;
  margin: 1.4rem 0 1rem;
}

.contact-card {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(18, 48, 74, 0.12);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-md);
}

.contact-card p,
.contact-card span {
  margin: 0;
}

.contact-card p {
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-card a {
  display: inline-block;
  margin: 0.25rem 0 0.2rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.35rem;
  background: rgba(255, 253, 249, 0.82);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(18, 48, 74, 0.14);
  background: #fffdf9;
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

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

.form-note {
  margin: 0;
  font-weight: 600;
  color: var(--canada);
}

.site-footer {
  padding: 1.25rem 0 2.5rem;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 1rem 1.1rem;
  border-top: 1px solid rgba(18, 48, 74, 0.12);
  color: var(--muted);
}

.hero-copy,
.hero-visual,
.photo-card,
.destination-card,
.service-card,
.process-card,
.faq-grid article,
.value-panel,
.contact-form {
  animation: rise 700ms ease both;
}

.destination-card:nth-child(2),
.service-card:nth-child(2),
.process-card:nth-child(2),
.faq-grid article:nth-child(2) {
  animation-delay: 90ms;
}

.destination-card:nth-child(3),
.service-card:nth-child(3),
.process-card:nth-child(3),
.faq-grid article:nth-child(3) {
  animation-delay: 160ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .site-nav {
    display: none;
  }

  .hero-grid,
  .value-grid,
  .contact-shell,
  .destination-grid,
  .service-grid,
  .process-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-card-main {
    inset: 0 0 4rem 0;
  }

  .trust-items {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    padding-top: 0.75rem;
  }

  .nav-shell {
    border-radius: 24px;
    flex-wrap: wrap;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .hero-stats,
  .faq-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    flex-direction: column;
  }

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

  .hero-card-accent {
    right: 1rem;
    left: 1rem;
    width: auto;
  }

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

  .board-heading strong {
    max-width: none;
  }

  .footer-shell {
    flex-direction: column;
  }
}
