:root {
  --brand-blue: #0f7f78;
  --brand-blue-dark: #075c57;
  --brand-blue-deep: #102a43;
  --brand-red: #b88a2a;
  --brand-red-deep: #916713;
  --brand-red-soft: #f8efd9;
  --brand-sky: #eef8f4;
  --brand-mist: #fbf7ed;
  --brand-cream: #fffaf0;
  --brand-ink: #102a43;
  --brand-text: #435768;
  --brand-line: rgba(191, 211, 201, 0.92);
  --brand-shadow: 0 16px 38px rgba(16, 42, 67, 0.1);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --container: 1180px;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--brand-text);
  background:
    radial-gradient(circle at 8% 4%, rgba(15, 127, 120, 0.08), transparent 22rem),
    radial-gradient(circle at 92% 12%, rgba(184, 138, 42, 0.1), transparent 20rem),
    linear-gradient(180deg, #fffdf7 0%, var(--brand-mist) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  display: none;
}

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

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

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 253, 247, 0.96);
  border-bottom: 1px solid var(--brand-line);
  box-shadow: 0 10px 28px rgba(16, 42, 67, 0.035);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "DM Sans", sans-serif;
}

.brand-mark {
  width: 68px;
  height: 68px;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 0.2rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 127, 120, 0.14);
  box-shadow: 0 10px 22px rgba(16, 42, 67, 0.1);
}

.brand-title {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-title strong {
  font-size: 1.28rem;
  color: var(--brand-blue-deep);
  letter-spacing: -0.03em;
}

.brand-title span {
  margin-top: 0.32rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-ink);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--brand-blue);
  background: var(--brand-sky);
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 10px;
  background: var(--brand-blue);
  color: #ffffff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

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

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  border-color: var(--brand-blue);
  box-shadow: 0 14px 28px rgba(15, 127, 120, 0.22);
}

.button-primary:hover {
  box-shadow: 0 18px 34px rgba(15, 127, 120, 0.28);
}

.button-secondary {
  color: var(--brand-blue-deep);
  background: rgba(255, 253, 247, 0.86);
  border-color: rgba(16, 42, 67, 0.72);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 2.35rem;
  background:
    radial-gradient(circle at 12% 16%, rgba(184, 138, 42, 0.12), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(15, 127, 120, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(238, 248, 244, 0.7));
}

.hero::after {
  content: "";
  position: absolute;
  right: -7rem;
  top: 5rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(15, 127, 120, 0.09), transparent 65%);
  filter: blur(10px);
  z-index: -1;
}

.hero-grid,
.page-hero-grid,
.detail-layout,
.contact-layout,
.two-column {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-grid > *,
.page-hero-grid > *,
.detail-layout > *,
.contact-layout > *,
.two-column > *,
.page-hero-copy,
.hero-copy,
.section-heading > * {
  min-width: 0;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.78fr;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.9rem;
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-red-deep);
  background: linear-gradient(180deg, #fff7df 0%, var(--brand-red-soft) 100%);
  border: 1px solid rgba(184, 138, 42, 0.32);
}

.eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 0 6px rgba(184, 138, 42, 0.12);
}

.headline {
  margin: 1.2rem 0 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(2.85rem, 4.5vw, 3.9rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  color: var(--brand-ink);
}

.headline em {
  font-style: normal;
  color: var(--brand-red-deep);
}

.lead {
  max-width: 42rem;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--brand-text);
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 40rem;
  margin-top: 1.25rem;
}

.hero-proof {
  padding: 0.9rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f1faf6 100%);
  border: 1px solid #bfd3c9;
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.08);
}

.hero-proof strong {
  display: block;
  margin-bottom: 0.18rem;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--brand-blue);
}

.hero-proof span {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--brand-ink);
}

.hero-actions,
.stack-inline,
.chip-row,
.card-actions,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.chip-row {
  margin-top: 1.6rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brand-ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--brand-sky) 100%);
  border: 1px solid #bfd3c9;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.chip:hover {
  transform: translateY(-1px);
  color: var(--brand-blue-deep);
  background: #fffdf7;
  border-color: #9dbeb0;
}

.hero-art {
  position: relative;
  min-height: 0;
  display: grid;
  align-content: center;
}

.hero-focus-card {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  padding: 0.85rem;
  background: rgba(255, 253, 247, 0.94);
  border: 1px solid #cfe1d7;
  box-shadow: 0 20px 42px rgba(16, 42, 67, 0.15);
}

.hero-focus-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  background: #0d1f36;
}

.hero-winners-card {
  width: min(100%, 440px);
  margin-left: auto;
  padding: 0.65rem;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.96), rgba(238, 248, 244, 0.92)),
    #ffffff;
}

.hero-winners-image {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #062145;
}

.hero-image-proof {
  margin-top: 0.65rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #d2e3da;
}

.hero-image-proof strong,
.hero-image-proof span {
  display: block;
}

.hero-image-proof strong {
  color: var(--brand-ink);
  font-size: 0.95rem;
  line-height: 1.25;
}

.hero-image-proof span {
  margin-top: 0.25rem;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
}

.brand-proof-section {
  padding: 1.35rem 0 0.6rem;
}

.brand-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.brand-proof-card {
  min-height: 100%;
  padding: 1.05rem;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.96) 0%, rgba(255, 255, 255, 0.96) 100%);
  border: 1px solid #d8e6de;
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.075);
}

.brand-proof-card span {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.32rem 0.52rem;
  border-radius: 999px;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-proof-card strong {
  display: block;
  color: var(--brand-ink);
  font-size: 1.02rem;
  line-height: 1.25;
}

.brand-proof-card p {
  margin: 0.45rem 0 0;
  color: var(--brand-text);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-brand-card {
  position: relative;
  z-index: 2;
  padding: 1.35rem;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(15, 127, 120, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eef8f4 100%);
  border: 1px solid #cfe1d7;
  box-shadow: 0 18px 36px rgba(16, 42, 67, 0.14);
}

.hero-brand-logo {
  width: min(180px, 100%);
  margin: 0 0 1rem;
  object-fit: contain;
}

.hero-brand-card h3 {
  margin: 0.85rem 0 0.75rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.15;
  color: var(--brand-ink);
}

.hero-brand-list {
  margin-top: 1rem;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}

.orb-blue {
  inset: 4rem auto auto 1rem;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(15, 127, 120, 0.16), rgba(15, 127, 120, 0) 68%);
}

.orb-red {
  right: 1rem;
  bottom: 3rem;
  width: 14rem;
  height: 14rem;
  background: radial-gradient(circle, rgba(184, 138, 42, 0.14), rgba(184, 138, 42, 0) 68%);
}

.logo-card,
.floating-card,
.panel,
.feature-card,
.course-card,
.track-card,
.contact-card,
.timeline-card,
.info-panel,
.cta-card,
.quote-card {
  background: #ffffff;
  border: 1px solid #d8e6de;
  box-shadow: var(--brand-shadow);
}

.logo-card {
  position: absolute;
  left: 2rem;
  top: 2rem;
  width: min(26rem, 92%);
  padding: 0.85rem;
  border-radius: 14px;
  transform: none;
}

.logo-card img {
  width: 100%;
}

.hero-visual {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(29rem, 88%);
  filter: drop-shadow(0 20px 40px rgba(16, 42, 67, 0.11));
}

.floating-card {
  position: absolute;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  max-width: 14rem;
  animation: float 5.6s ease-in-out infinite;
}

.floating-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--brand-ink);
}

.floating-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.floating-card.one {
  right: 0;
  top: 1rem;
}

.floating-card.two {
  left: 0;
  bottom: 4rem;
  animation-delay: -2.2s;
}

.floating-card.three {
  right: 5rem;
  bottom: 0;
  animation-delay: -4.3s;
}

.grid-3,
.grid-4,
.feature-grid,
.course-grid,
.tracks-grid,
.facts-grid,
.quotes-grid {
  display: grid;
  gap: 1.4rem;
}

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

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

.section.feature-section {
  padding: 2.25rem 0;
}

.feature-section .section-heading {
  align-items: start;
  margin-bottom: 1.1rem;
}

.feature-section .section-heading p {
  max-width: 34rem;
}

.feature-section .feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.feature-card,
.course-card,
.track-card,
.contact-card,
.timeline-card,
.info-panel,
.quote-card {
  border-radius: var(--radius-lg);
  padding: 1.55rem;
}

.feature-section .feature-card {
  padding: 1.05rem;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.07);
}

.section {
  padding: 2.75rem 0;
}

.section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-heading h2,
.page-hero-copy h1,
.cta-card h2 {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  letter-spacing: -0.04em;
  color: var(--brand-ink);
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading p,
.page-hero-copy p,
.cta-card p {
  margin: 0;
  max-width: 42rem;
  line-height: 1.75;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  background: var(--brand-sky);
  color: var(--brand-blue);
}

.icon-badge svg {
  width: 1.45rem;
  height: 1.45rem;
}

.feature-card h3,
.course-card h3,
.track-card h3,
.timeline-card h3,
.info-panel h3,
.quote-card h3 {
  margin: 0 0 0.7rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.35rem;
  color: var(--brand-ink);
}

.feature-card p,
.course-card p,
.track-card p,
.timeline-card p,
.info-panel p,
.quote-card p {
  margin: 0;
  line-height: 1.7;
}

.list-check,
.list-plain,
.breadcrumbs,
.fact-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.list-check li,
.fact-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
  line-height: 1.65;
}

.list-check li::before,
.fact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
  box-shadow: 0 0 0 6px rgba(184, 138, 42, 0.12);
}

.list-plain li {
  padding: 0.7rem 0;
  border-bottom: 1px solid #d8e6de;
}

.course-card {
  position: relative;
  overflow: hidden;
}

.course-card-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.35rem;
}

.course-card-mini {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #d2e3da;
  flex-shrink: 0;
}

.course-card-top .course-meta {
  margin-bottom: 0.28rem;
}

.course-card-top h3 {
  margin: 0;
}

.course-card .course-card-top + p {
  margin-top: 0.35rem;
}

.course-card-media {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  aspect-ratio: 4 / 2.6;
  object-fit: cover;
  border-radius: 12px;
}

.course-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--brand-blue);
}

.course-meta {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.42rem 0.72rem;
  border-radius: 24px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-red);
  background: var(--brand-red-soft);
}

.course-card .button,
.card-actions .button {
  margin-top: 1.15rem;
}

.tracks-grid .track-card {
  position: relative;
  overflow: hidden;
}

.track-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 0.55rem;
  background: linear-gradient(90deg, rgba(15, 127, 120, 0.18), rgba(184, 138, 42, 0.22));
}

.track-badge {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.4rem 0.68rem;
  border-radius: 24px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--brand-sky);
  color: var(--brand-blue);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 10px;
  flex-shrink: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
}

.cta-card {
  padding: 2rem;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(15, 127, 120, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(184, 138, 42, 0.13), transparent 26%),
    linear-gradient(180deg, #fffdf7 0%, #eef8f4 100%);
  color: var(--brand-text);
  border: 1px solid #bfd3c9;
  box-shadow: var(--brand-shadow);
}

.cta-card h2 {
  color: var(--brand-ink);
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-card .eyebrow {
  background: var(--brand-red-soft) !important;
  color: var(--brand-red) !important;
  border-color: rgba(184, 138, 42, 0.32) !important;
}

.photo-showcase {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.photo-tile {
  grid-column: span 3;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid #d2e3da;
  box-shadow: var(--brand-shadow);
  background: #ffffff;
}

.photo-tile.wide {
  grid-column: span 6;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.page-hero {
  padding: 4.2rem 0 2rem;
}

.page-hero-grid {
  grid-template-columns: 1fr 0.88fr;
}

.page-hero-copy h1 {
  margin-top: 0.9rem;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #667885;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.65rem;
  color: rgba(15, 127, 120, 0.3);
}

.page-hero-art {
  position: relative;
  min-height: 24rem;
}

.page-panel,
.detail-panel {
  border-radius: 18px;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #d8e6de;
  box-shadow: var(--brand-shadow);
}

.page-panel img,
.detail-panel img {
  width: 100%;
  border-radius: 10px;
}

.page-panel-photo {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.detail-layout {
  grid-template-columns: 1.05fr 0.95fr;
}

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

.fact-pill {
  padding: 1rem;
  border-radius: 12px;
  background: var(--brand-sky);
  border: 1px solid #bfd3c9;
}

.fact-pill strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--brand-blue);
}

.course-path {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
}

.course-path .timeline-card {
  grid-template-columns: auto 1fr;
}

.note {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  color: var(--brand-ink);
  background: #fbf7ed;
  border: 1px solid #bfd3c9;
}

.contact-layout {
  grid-template-columns: 0.92fr 1.08fr;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.quick-enquiry-card {
  padding: 1.7rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid #d8e6de;
  box-shadow: var(--brand-shadow);
}

.quick-enquiry-form {
  margin-top: 1.35rem;
  display: grid;
  gap: 1rem;
}

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

.quick-enquiry-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.quick-enquiry-note {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #667885;
}

.class-video-section {
  margin: 0.5rem 0;
  padding: 3.4rem 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(184, 138, 42, 0.24), transparent 18rem),
    radial-gradient(circle at 92% 20%, rgba(15, 127, 120, 0.3), transparent 20rem),
    linear-gradient(145deg, #102a43 0%, #0b3444 48%, #075c57 100%);
  color: #eaf4f2;
}

.class-video-section .section-heading h2 {
  color: #ffffff;
}

.class-video-section .section-heading p {
  color: rgba(234, 244, 242, 0.82);
}

.class-video-section .eyebrow {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.class-video-section .eyebrow::before {
  background: #f0c66a;
  box-shadow: 0 0 0 6px rgba(240, 198, 106, 0.18);
}

.class-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.class-video-card {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 26px 50px rgba(5, 20, 32, 0.28);
}

.class-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #091a2a;
}

.class-video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #091a2a;
}

.class-video-link {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #ffffff;
}

.class-video-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 26, 42, 0.05), rgba(9, 26, 42, 0.62));
}

.class-video-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 220ms ease;
}

.class-video-link:hover img,
.class-video-link:focus-visible img {
  transform: scale(1.06);
}

.class-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 36px rgba(5, 20, 32, 0.28);
  transform: translate(-50%, -50%);
}

.class-video-play::before {
  content: "";
  margin-left: 0.32rem;
  border-top: 0.85rem solid transparent;
  border-bottom: 0.85rem solid transparent;
  border-left: 1.25rem solid var(--brand-blue);
}

.class-video-label {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 2rem);
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: rgba(9, 26, 42, 0.72);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.2;
}

.class-video-copy {
  padding: 1.15rem;
}

.class-video-copy span {
  display: inline-flex;
  margin-bottom: 0.65rem;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-red);
  background: var(--brand-red-soft);
}

.class-video-copy h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.25;
  color: var(--brand-ink);
}

.class-video-copy p {
  margin: 0.75rem 0 0;
  line-height: 1.7;
  color: var(--brand-text);
}

.class-video-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.class-video-cta strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.12rem;
  color: #ffffff;
}

.class-video-cta span {
  display: block;
  max-width: 42rem;
  line-height: 1.65;
  color: rgba(234, 244, 242, 0.82);
}

.class-video-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
  flex-shrink: 0;
}

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

.field label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 800;
  color: var(--brand-ink);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid #bfd3c9;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: #0f7f78;
  box-shadow: 0 0 0 4px rgba(15, 127, 120, 0.11);
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-help,
.form-status {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
  line-height: 1.65;
}

.form-status {
  min-height: 1.4rem;
  color: var(--brand-blue);
  font-weight: 700;
}

.office-card .eyebrow {
  margin-bottom: 0.9rem;
}

.office-address {
  margin: 0;
  line-height: 1.75;
}

.office-phone {
  margin: 1rem 0 0;
  font-weight: 800;
  color: var(--brand-ink);
}

.office-phone a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.16em;
}

.stock-summary {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stock-gallery {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stock-card {
  margin: 0;
  padding: 0.55rem;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #d8e6de;
  box-shadow: var(--brand-shadow);
}

.stock-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  background: #eef4ef;
}

.stock-card figcaption {
  margin-top: 0.5rem;
  font-size: 0.76rem;
  line-height: 1.4;
  color: #6b7b86;
  word-break: break-word;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 20px;
  background: transparent;
  color: #ffffff;
  border: 0;
  box-shadow: none;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  filter: drop-shadow(0 12px 18px rgba(15, 91, 48, 0.22));
  transition: transform 180ms ease, filter 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  filter: drop-shadow(0 16px 22px rgba(15, 91, 48, 0.28));
}

.whatsapp-float-icon {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-float-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.whatsapp-float-text {
  display: none;
}

.call-float {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e7cf2 0%, #1158d6 100%);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(17, 88, 214, 0.28);
  font-family: "DM Sans", sans-serif;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.call-float:hover,
.call-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(17, 88, 214, 0.34);
  background: linear-gradient(135deg, #166de0 0%, #0d49b5 100%);
}

.call-float-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.call-float-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-shell {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.1fr 0.72fr 0.82fr 1.15fr;
  padding: 2rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #d8e6de;
  box-shadow: var(--brand-shadow);
}

.footer-shell h3,
.footer-shell h4 {
  margin: 0 0 0.8rem;
  font-family: "DM Sans", sans-serif;
  color: var(--brand-ink);
}

.footer-shell p {
  margin: 0;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--brand-text);
  font-weight: 700;
}

.footer-contact {
  min-width: 0;
}

.footer-contact p + p {
  margin-top: 0.45rem;
}

.footer-contact strong {
  color: var(--brand-ink);
}

.footer-contact a {
  color: var(--brand-blue);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #d8e6de;
  font-size: 0.92rem;
  color: #667885;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.page-spacer {
  padding-bottom: 2.5rem;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1080px) {
  .grid-4,
  .course-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .photo-tile,
  .photo-tile.wide {
    grid-column: span 1;
  }

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

  .hero-grid,
  .page-hero-grid,
  .detail-layout,
  .contact-layout,
  .footer-shell {
    grid-template-columns: 1fr;
  }

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

  .class-video-grid {
    grid-template-columns: 1fr;
  }

  .hero-art,
  .page-hero-art {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .page-hero {
    padding: 2.4rem 0 1.1rem;
  }

  .page-hero-grid {
    gap: 1rem;
  }

  .page-hero-art {
    min-height: auto;
  }

  .page-hero-grid .page-hero-art {
    order: -1;
  }

  .page-hero-grid .page-hero-copy {
    order: 1;
  }

  .hero-grid {
    gap: 1.1rem;
  }

  .hero-grid .hero-art {
    order: -1;
    margin-top: 0.2rem;
  }

  .hero-grid .hero-copy {
    order: 1;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-shell {
    gap: 0.7rem;
    min-height: 82px;
  }

  .brand {
    flex: 1;
    min-width: 0;
    gap: 0.55rem;
  }

  .brand-title {
    min-width: 0;
  }

  .brand-title strong,
  .brand-title span {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--brand-line);
    box-shadow: var(--brand-shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-cta {
    margin-left: auto;
  }

  .nav-cta .button {
    display: none;
  }

  .grid-3,
  .feature-grid,
  .tracks-grid,
  .quotes-grid,
  .facts-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .section.feature-section {
    padding: 1.45rem 0;
  }

  .feature-section .section-heading {
    gap: 0.7rem;
    margin-bottom: 0.9rem;
  }

  .feature-section .section-heading h2 {
    font-size: clamp(1.5rem, 7vw, 2.05rem);
    line-height: 1.12;
  }

  .feature-section .section-heading p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .feature-section .feature-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .feature-section .feature-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0.15rem 0.8rem;
    align-items: start;
    padding: 0.95rem;
    border-radius: 14px;
  }

  .feature-section .icon-badge {
    grid-row: 1 / span 2;
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 12px;
  }

  .feature-section .icon-badge svg {
    width: 1.12rem;
    height: 1.12rem;
  }

  .feature-section .feature-card h3 {
    grid-column: 2;
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.22;
  }

  .feature-section .feature-card p {
    grid-column: 2;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .stock-summary {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding: 1.5rem 0 1.6rem;
  }

  .headline {
    font-size: clamp(2.15rem, 9vw, 2.75rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

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

  .hero-proof {
    padding: 0.72rem;
  }

  .hero-proof strong {
    margin-bottom: 0;
    min-width: 0;
    font-size: 1.1rem;
  }

  .hero-proof span {
    font-size: 0.74rem;
  }

  .hero-winners-card {
    width: min(100%, 380px);
    margin: 0 auto;
  }

  .hero-image-proof {
    padding: 0.7rem;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .brand-proof-section {
    padding-top: 1rem;
  }

  .page-hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .section-heading h2,
  .cta-card h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .timeline-card {
    grid-template-columns: 1fr;
  }

  .logo-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-bottom: 1rem;
    transform: rotate(0deg);
  }

  .hero-visual {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .floating-card {
    position: relative;
    inset: auto;
    max-width: none;
  }

  .hero-art {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .hero-focus-image {
    aspect-ratio: 10 / 11;
  }

  .hero-winners-image {
    aspect-ratio: 1 / 1;
  }

  .photo-showcase {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .photo-tile:nth-child(n + 2) {
    display: none;
  }

  .orb {
    display: none;
  }

  .section {
    padding: 2rem 0;
  }

  .class-video-section {
    padding: 2.5rem 0;
  }

  .class-video-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .class-video-actions {
    justify-content: flex-start;
  }

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

  .whatsapp-float {
    right: 0.85rem;
    bottom: 0.95rem;
    width: 56px;
    height: 56px;
  }

  .call-float {
    left: 0.85rem;
    bottom: 0.95rem;
    width: 56px;
    height: 56px;
  }
}

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

  .nav-shell {
    min-height: 74px;
  }

  .brand-mark {
    width: 56px;
    height: 56px;
    padding: 0.16rem;
  }

  .brand-title strong {
    font-size: 1rem;
  }

  .brand-title span {
    margin-top: 0.18rem;
    font-size: 0.56rem;
    letter-spacing: 0.06em;
  }

  .headline {
    margin: 0.9rem 0 0.85rem;
    font-size: clamp(1.95rem, 8.8vw, 2.28rem);
  }

  .hero-focus-image {
    border-radius: 12px;
    aspect-ratio: 1 / 1.03;
  }

  .hero-winners-image {
    aspect-ratio: 1 / 1;
  }

  .hero-winners-card {
    width: min(100%, 318px);
    padding: 0.48rem;
  }

  .hero-image-proof strong {
    font-size: 0.86rem;
  }

  .hero-image-proof span {
    font-size: 0.66rem;
    letter-spacing: 0.035em;
  }

  .hero-winners-card .hero-image-proof {
    display: none;
  }

  .hero-proof-row {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.65rem;
  }

  .hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

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

  .chip-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .chip {
    min-height: 48px;
    padding: 0.65rem;
    text-align: center;
  }

  .brand-proof-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .brand-proof-card {
    padding: 0.95rem;
  }

  .feature-section .eyebrow {
    padding: 0.42rem 0.68rem;
    font-size: 0.68rem;
  }

  .feature-section .section-heading {
    margin-bottom: 0.7rem;
  }

  .feature-section .section-heading h2 {
    font-size: 1.55rem;
  }

  .feature-section .section-heading p {
    display: none;
  }

  .feature-section .feature-grid {
    gap: 0.55rem;
  }

  .feature-section .feature-card {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 0.78rem;
  }

  .feature-section .icon-badge {
    width: 38px;
    height: 38px;
  }

  .feature-section .feature-card h3 {
    font-size: 1rem;
  }

  .feature-section .feature-card p {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .page-hero {
    padding: 2rem 0 1rem;
  }

  .page-hero-copy h1 {
    font-size: clamp(1.9rem, 9vw, 2.4rem);
  }

  .section-heading {
    margin-bottom: 1.1rem;
  }

  .section-heading h2,
  .cta-card h2 {
    font-size: clamp(1.55rem, 7.5vw, 2rem);
  }

  .breadcrumbs {
    gap: 0.4rem;
    font-size: 0.82rem;
  }

  .breadcrumbs li + li::before {
    margin-right: 0.4rem;
  }

  .timeline-card {
    gap: 0.75rem;
  }

  .timeline-step {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 0.95rem;
  }

  .course-card-top {
    gap: 0.7rem;
  }

  .course-card-mini {
    width: 52px;
    height: 52px;
  }

  .button {
    width: 100%;
    padding-inline: 1rem;
  }

  .card-actions .button {
    width: auto;
  }

  .grid-4,
  .course-grid {
    grid-template-columns: 1fr;
  }

  .quick-enquiry-grid {
    grid-template-columns: 1fr;
  }

  .class-video-copy {
    padding: 1rem;
  }

  .class-video-copy h3 {
    font-size: 1.12rem;
  }

  .class-video-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .photo-showcase {
    grid-template-columns: 1fr;
  }

  .stock-gallery {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .course-card,
  .track-card,
  .contact-card,
  .timeline-card,
  .info-panel,
  .quote-card,
  .cta-card,
  .footer-shell {
    padding: 1.2rem;
  }

  .page-panel,
  .detail-panel {
    padding: 0.8rem;
  }

  .whatsapp-float {
    right: 0.8rem;
    bottom: 0.8rem;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float-icon {
    width: 100%;
    height: 100%;
  }

  .call-float {
    left: 0.8rem;
    bottom: 0.8rem;
    width: 54px;
    height: 54px;
  }

  .call-float-icon {
    width: 1.4rem;
    height: 1.4rem;
  }
}
