﻿:root {
      --cream: #f8f1e8;
      --cream-deep: #efe2d4;
      --paper: rgba(255, 251, 245, 0.9);
      --forest: #214c39;
      --forest-deep: #173628;
      --forest-soft: #2f6a50;
      --gold: #b59352;
      --gold-soft: rgba(181, 147, 82, 0.14);
      --text: #31443d;
      --muted: #6f766d;
      --shadow: 0 18px 40px rgba(35, 52, 42, 0.14);
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --container: min(1120px, calc(100% - 2rem));
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      font-family: Candara, "Trebuchet MS", sans-serif;
      background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.85), transparent 32%),
        linear-gradient(180deg, #fdfaf6 0%, #f6ecde 100%);
      line-height: 1.6;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.32;
      background:
        radial-gradient(circle at 25% 20%, rgba(181, 147, 82, 0.14), transparent 16%),
        radial-gradient(circle at 75% 35%, rgba(181, 147, 82, 0.12), transparent 18%),
        linear-gradient(45deg, transparent 48%, rgba(181, 147, 82, 0.05) 49%, rgba(181, 147, 82, 0.05) 51%, transparent 52%) 0 0 / 34px 34px;
      z-index: -1;
    }

    h1,
    h2,
    h3,
    .cta-title {
      margin: 0;
      font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    p {
      margin: 0;
    }

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

    img {
      max-width: 100%;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(12px);
      background: rgba(251, 246, 239, 0.76);
      border-bottom: 1px solid rgba(33, 76, 57, 0.08);
    }

    .header-inner {
      width: var(--container);
      margin: 0 auto;
      padding: 0.7rem 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      min-width: 0;
      color: var(--forest);
      flex: 0 1 auto;
    }

    .brand-logo {
      display: block;
      width: auto;
      height: 3.65rem;
      object-fit: contain;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 1.15rem;
      flex-wrap: wrap;
      justify-content: flex-end;
      margin-left: auto;
    }

    .nav a {
      color: var(--muted);
      font-size: 0.98rem;
      font-weight: 600;
      padding: 0.35rem 0;
      transition: color 0.2s ease;
    }

    .nav a:hover,
    .nav a:focus-visible {
      color: var(--forest);
    }

    main {
      overflow: hidden;
    }

    section {
      padding: 5.5rem 0;
    }

    .section-inner {
      width: var(--container);
      margin: 0 auto;
    }

    .hero {
      padding-top: 4.2rem;
      padding-bottom: 4.8rem;
    }

    .hero-grid,
    .split-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 2.25rem;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.45rem 0.9rem;
      border-radius: 999px;
      background: rgba(181, 147, 82, 0.12);
      color: var(--forest);
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .eyebrow::before,
    .eyebrow::after {
      content: "";
      width: 0.45rem;
      height: 0.45rem;
      border-radius: 50%;
      background: var(--gold);
    }

    .hero-copy h1 {
      margin-top: 1.2rem;
      font-size: clamp(2.8rem, 5vw, 4.8rem);
      color: #233b31;
    }

    .tagline {
      margin-top: 1rem;
      font-size: clamp(1.25rem, 2vw, 1.75rem);
      font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
      color: var(--forest);
      max-width: 14ch;
    }

    .intro {
      margin-top: 1rem;
      max-width: 60ch;
      color: var(--muted);
      font-size: 1.03rem;
    }

    .button-row {
      margin-top: 1.8rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      min-height: 3.2rem;
      padding: 0.9rem 1.45rem;
      border-radius: 999px;
      font-weight: 700;
      border: 1px solid transparent;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .button:hover,
    .button:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 14px 26px rgba(33, 76, 57, 0.16);
    }

    .button-primary {
      background: var(--forest);
      color: #fff8ed;
    }

    .button-secondary {
      background: rgba(255, 251, 245, 0.86);
      color: var(--forest);
      border-color: rgba(33, 76, 57, 0.12);
    }

    .hero-visual {
      position: relative;
      min-height: 31rem;
      padding: 1.25rem;
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.86), transparent 28%),
        radial-gradient(circle at 80% 20%, rgba(181, 147, 82, 0.3), transparent 18%),
        linear-gradient(140deg, rgba(255, 251, 245, 0.92) 0%, rgba(237, 225, 208, 0.86) 42%, rgba(169, 140, 92, 0.22) 100%);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 1rem;
      border-radius: calc(var(--radius-xl) - 10px);
      border: 1px solid rgba(33, 76, 57, 0.09);
      background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.4), transparent 35%),
        linear-gradient(0deg, rgba(33, 76, 57, 0.07), rgba(33, 76, 57, 0.07));
    }

    .hero-visual::after {
      content: "";
      position: absolute;
      right: -3rem;
      bottom: -3rem;
      width: 17rem;
      height: 17rem;
      border-radius: 50%;
      background:
        radial-gradient(circle at 36% 36%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.16) 34%, rgba(181, 147, 82, 0.22) 58%, transparent 74%);
      opacity: 0.95;
      pointer-events: none;
    }

    .hero-badge-row {
      position: absolute;
      top: 2rem;
      left: 2rem;
      right: 2rem;
      z-index: 1;
      display: flex;
      justify-content: flex-start;
      flex-wrap: wrap;
      gap: 0.7rem;
    }

    .hero-chip,
    .detail-card,
    .teacher-card,
    .testimonial-card,
    .course-card,
    .contact-card {
      animation: fade-up 0.8s ease both;
    }

    .hero-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      padding: 0.82rem 1.12rem;
      border-radius: 999px;
      background: linear-gradient(135deg, #29513e, #173628);
      color: #fff6e7;
      box-shadow: 0 14px 28px rgba(33, 76, 57, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.12);
      font-weight: 700;
      font-size: 0.94rem;
      line-height: 1;
    }

    .hero-chip::before {
      content: "";
      width: 0.42rem;
      height: 0.42rem;
      border-radius: 50%;
      background: #f3dfba;
      flex-shrink: 0;
    }

    .hero-chip-muted {
      background: linear-gradient(135deg, #3b6d56, #244636);
    }

    .hero-photo {
      position: relative;
      z-index: 1;
      margin: 0;
      overflow: hidden;
      border-radius: 2rem;
      border: 1px solid rgba(255, 255, 255, 0.28);
      box-shadow: 0 18px 34px rgba(33, 76, 57, 0.16);
      background: #eadcc8;
      min-height: 100%;
    }

    .hero-photo::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(12, 24, 19, 0.06), transparent 28%),
        linear-gradient(180deg, transparent 42%, rgba(12, 24, 19, 0.2) 100%);
      pointer-events: none;
      z-index: 1;
    }

    .hero-photo::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 42%;
      background: linear-gradient(180deg, transparent 0%, rgba(23, 54, 40, 0.12) 100%);
      pointer-events: none;
      z-index: 1;
    }

    .hero-photo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-photo-main {
      position: absolute;
      inset: 1.25rem;
      min-height: auto;
    }

    .hero-photo-main img {
      object-position: center 32%;
    }

    .hero-photo-caption {
      position: absolute;
      left: 1rem;
      bottom: 1rem;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      padding: 0.8rem 1rem;
      border-radius: 999px;
      background: rgba(255, 248, 237, 0.92);
      color: var(--forest);
      font-weight: 700;
      font-size: 0.93rem;
      box-shadow: 0 14px 24px rgba(33, 76, 57, 0.18);
    }

    .arch-panel {
      position: absolute;
      left: 2rem;
      right: 2rem;
      bottom: 2rem;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 15rem;
      gap: 1rem;
      align-items: end;
      padding: 1.5rem;
      border-radius: 2rem;
      backdrop-filter: blur(10px);
      background:
        linear-gradient(180deg, rgba(248, 241, 232, 0.94), rgba(255, 251, 245, 0.84)),
        linear-gradient(180deg, rgba(33, 76, 57, 0.08), rgba(33, 76, 57, 0.03));
      box-shadow: inset 0 0 0 1px rgba(33, 76, 57, 0.08);
    }

    .arch-copy {
      max-width: none;
      position: relative;
      z-index: 1;
    }

    .arch-copy span {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--forest-soft);
      margin-bottom: 0.75rem;
    }

    .arch-copy h2 {
      font-size: clamp(1.6rem, 3vw, 2.35rem);
      color: #294437;
      max-width: 12ch;
    }

    .arch-copy p {
      margin-top: 0.8rem;
      color: var(--muted);
      max-width: 28ch;
    }

    .hero-panel-side {
      display: grid;
      gap: 0.8rem;
      align-self: stretch;
      justify-items: start;
    }

    .hero-chip-wide {
      width: auto;
      justify-content: flex-start;
    }

    .hero-panel-note {
      padding: 1rem 1.05rem;
      border-radius: 1.25rem;
      background: rgba(33, 76, 57, 0.08);
      color: #42534c;
      font-size: 0.96rem;
    }

    .section-heading {
      text-align: center;
      max-width: 44rem;
      margin: 0 auto 2.2rem;
    }

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

    .section-heading p {
      margin-top: 0.85rem;
      color: var(--muted);
      font-size: 1.03rem;
    }

    .decorated-title {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      position: relative;
    }

    .decorated-title::before,
    .decorated-title::after {
      content: "";
      width: 3.2rem;
      height: 1px;
      background: rgba(181, 147, 82, 0.55);
    }

    .courses {
      position: relative;
    }

    .courses::before,
    .teachers::before,
    .contact::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 20%, rgba(181, 147, 82, 0.08), transparent 20%),
        radial-gradient(circle at 85% 40%, rgba(181, 147, 82, 0.09), transparent 18%);
      pointer-events: none;
    }

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

    .course-card {
      position: relative;
      padding: 1.45rem;
      background: var(--paper);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      border: 1px solid rgba(33, 76, 57, 0.08);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .course-card:hover,
    .teacher-card:hover,
    .testimonial-card:hover,
    .detail-card:hover,
    .contact-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 38px rgba(35, 52, 42, 0.16);
    }

    .card-icon {
      width: 3rem;
      height: 3rem;
      display: grid;
      place-items: center;
      border-radius: 18px;
      background: var(--gold-soft);
      color: var(--forest);
      font-size: 1.1rem;
      font-weight: 800;
      margin-bottom: 1rem;
    }

    .course-card h3,
    .split-copy h2,
    .contact-card h2,
    .testimonial-title {
      font-size: 1.45rem;
      color: #2b4638;
    }

    .course-card p {
      color: var(--muted);
      font-size: 0.98rem;
    }

    .split-copy h2 {
      font-size: clamp(2rem, 3vw, 2.8rem);
      margin-bottom: 1rem;
    }

    .split-copy > p {
      color: var(--muted);
      max-width: 58ch;
    }

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

    .detail-card {
      padding: 1.2rem 1.15rem;
      border-radius: var(--radius-md);
      background: rgba(255, 251, 245, 0.92);
      border: 1px solid rgba(33, 76, 57, 0.08);
      box-shadow: var(--shadow);
    }

    .detail-card strong {
      display: block;
      margin-bottom: 0.45rem;
      color: var(--forest);
      font-size: 1rem;
    }

    .detail-card p {
      color: var(--muted);
      font-size: 0.96rem;
    }

    .feature-list {
      margin: 1.6rem 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.95rem 1.3rem;
    }

    .feature-list li {
      position: relative;
      padding-left: 1.9rem;
      color: var(--text);
      font-weight: 600;
    }

    .feature-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.33rem;
      width: 1.15rem;
      height: 1.15rem;
      border-radius: 50%;
      background:
        linear-gradient(180deg, rgba(181, 147, 82, 0.22), rgba(181, 147, 82, 0.08));
      box-shadow: inset 0 0 0 1px rgba(181, 147, 82, 0.2);
    }

    .feature-list li::after {
      content: "";
      position: absolute;
      left: 0.34rem;
      top: 0.68rem;
      width: 0.38rem;
      height: 0.18rem;
      border-left: 2px solid var(--forest-soft);
      border-bottom: 2px solid var(--forest-soft);
      transform: rotate(-45deg);
    }

    .visual-panel {
      position: relative;
      min-height: 31rem;
      padding: 1.25rem;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow);
      background:
        radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.9), transparent 24%),
        linear-gradient(135deg, rgba(246, 234, 217, 0.94) 0%, rgba(242, 225, 197, 0.85) 35%, rgba(33, 76, 57, 0.16) 100%);
    }

    .visual-panel::before {
      content: "";
      position: absolute;
      inset: 1.25rem;
      border-radius: calc(var(--radius-xl) - 10px);
      border: 1px solid rgba(33, 76, 57, 0.08);
      background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.6), transparent 48%),
        linear-gradient(180deg, rgba(33, 76, 57, 0.06), rgba(33, 76, 57, 0.02));
    }

    .visual-panel::after {
      content: "";
      position: absolute;
      inset: 1.25rem;
      border-radius: calc(var(--radius-xl) - 10px);
      background: linear-gradient(180deg, rgba(12, 24, 19, 0.03), rgba(12, 24, 19, 0.14));
      pointer-events: none;
    }

    .visual-photo {
      position: absolute;
      inset: 1.25rem;
      margin: 0;
      overflow: hidden;
      border-radius: calc(var(--radius-xl) - 10px);
      z-index: 0;
    }

    .visual-photo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 52%;
    }

    .stat-badge {
      position: absolute;
      display: grid;
      gap: 0.2rem;
      padding: 1rem 1.1rem;
      border-radius: 1.2rem;
      background: rgba(255, 251, 245, 0.9);
      box-shadow: 0 16px 30px rgba(33, 76, 57, 0.14);
      border: 1px solid rgba(33, 76, 57, 0.08);
      z-index: 2;
    }

    .stat-badge strong {
      color: var(--forest);
      font-size: 1rem;
    }

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

    .badge-top {
      top: 1.6rem;
      left: 1.6rem;
    }

    .badge-middle {
      right: 1.6rem;
      top: 6.3rem;
    }

    .badge-bottom {
      left: 2.2rem;
      bottom: 2rem;
    }

    .teachers {
      position: relative;
      padding-top: 4.8rem;
      padding-bottom: 4.8rem;
    }

    .teacher-grid {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 2rem;
      align-items: center;
    }

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

    .teacher-showcase {
      position: relative;
      margin: 0;
      min-height: 31rem;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid rgba(33, 76, 57, 0.08);
      background: #eadcc8;
    }

    .teacher-showcase::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(18, 34, 28, 0.04), transparent 34%),
        linear-gradient(180deg, transparent 45%, rgba(18, 34, 28, 0.42) 100%);
      pointer-events: none;
    }

    .teacher-showcase img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .teacher-showcase-caption {
      position: absolute;
      left: 1.25rem;
      right: 1.25rem;
      bottom: 1.25rem;
      z-index: 1;
      padding: 1rem 1.1rem;
      border-radius: 1.35rem;
      background: rgba(255, 248, 237, 0.9);
      color: var(--forest);
      font-weight: 700;
      box-shadow: 0 14px 24px rgba(33, 76, 57, 0.18);
    }

    .teacher-card {
      min-height: 9.5rem;
      padding: 1.25rem;
      border-radius: var(--radius-lg);
      background:
        linear-gradient(145deg, rgba(255, 251, 245, 0.95), rgba(240, 226, 206, 0.8));
      box-shadow: var(--shadow);
      border: 1px solid rgba(33, 76, 57, 0.08);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .teacher-card:nth-child(1) {
      min-height: 12rem;
      background:
        linear-gradient(155deg, rgba(255, 251, 245, 0.95), rgba(207, 225, 216, 0.82));
    }

    .teacher-card .avatar {
      width: 3.4rem;
      height: 3.4rem;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(33, 76, 57, 0.12);
      color: var(--forest);
      font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
      font-size: 1.15rem;
      font-weight: 700;
    }

    .teacher-card strong {
      color: var(--forest);
      font-size: 1.08rem;
    }

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

    .testimonials {
      padding-top: 5rem;
      padding-bottom: 4.5rem;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.15rem;
      margin-top: 2rem;
    }

    .testimonial-card {
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      background: rgba(255, 251, 245, 0.9);
      border: 1px solid rgba(33, 76, 57, 0.08);
      box-shadow: var(--shadow);
    }

    .stars {
      color: var(--gold);
      font-size: 1rem;
      letter-spacing: 0.12em;
    }

    .testimonial-card p {
      margin-top: 0.9rem;
      color: #445850;
      font-size: 1.06rem;
    }

    .testimonial-card strong {
      display: inline-block;
      margin-top: 1.1rem;
      color: var(--forest);
      font-size: 0.98rem;
    }

    .cta-band {
      padding: 3.3rem 0;
      background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.06), transparent 16%),
        linear-gradient(135deg, var(--forest-deep), var(--forest) 52%, #325e48 100%);
      color: #f8f1e8;
      position: relative;
      overflow: hidden;
    }

    .cta-band::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.16;
      background:
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.16) 49%, rgba(255, 255, 255, 0.16) 51%, transparent 52%) 0 0 / 36px 36px;
    }

    .cta-wrap {
      width: var(--container);
      margin: 0 auto;
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .cta-title {
      font-size: clamp(1.9rem, 3vw, 3rem);
      max-width: 16ch;
      margin: 0 auto;
    }

    .cta-text {
      margin: 0.9rem auto 0;
      max-width: 42rem;
      color: rgba(248, 241, 232, 0.86);
    }

    .cta-band .button-primary {
      background: #f3dfba;
      color: var(--forest-deep);
    }

    .cta-band .button-secondary {
      background: rgba(255, 251, 245, 0.12);
      color: #fff8ed;
      border-color: rgba(255, 251, 245, 0.24);
    }

    .contact {
      position: relative;
      padding-top: 4.8rem;
      padding-bottom: 5rem;
    }

    .contact-card {
      max-width: 42rem;
      margin: 0 auto;
      padding: 2rem;
      border-radius: var(--radius-xl);
      background: rgba(255, 251, 245, 0.9);
      border: 1px solid rgba(33, 76, 57, 0.08);
      box-shadow: var(--shadow);
      text-align: center;
    }

    .contact-card h2 {
      font-size: clamp(2rem, 3vw, 2.8rem);
    }

    .contact-card p {
      margin-top: 0.85rem;
      color: var(--muted);
    }

    .contact-links {
      margin: 1.8rem 0 0;
      display: grid;
      gap: 0.95rem;
      justify-items: center;
    }

    .contact-link {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      padding: 0.9rem 1.2rem;
      border-radius: 999px;
      background: rgba(33, 76, 57, 0.06);
      color: var(--forest);
      font-weight: 700;
    }

    .contact-link .dot {
      width: 0.8rem;
      height: 0.8rem;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 6px rgba(181, 147, 82, 0.14);
    }

    .footer {
      padding: 2.4rem 0 2.8rem;
      text-align: center;
      color: #f5ead7;
      background:
        linear-gradient(180deg, var(--forest), var(--forest-deep));
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-inner {
      width: var(--container);
      margin: 0 auto;
    }

    .footer p + p {
      margin-top: 0.45rem;
      color: rgba(245, 234, 215, 0.8);
    }

    .fade-delay-1 {
      animation-delay: 0.08s;
    }

    .fade-delay-2 {
      animation-delay: 0.16s;
    }

    .fade-delay-3 {
      animation-delay: 0.24s;
    }

    .fade-delay-4 {
      animation-delay: 0.32s;
    }

    @keyframes fade-up {
      from {
        opacity: 0;
        transform: translateY(18px);
      }

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

    @media (max-width: 980px) {
      .hero-grid,
      .split-grid,
      .teacher-grid,
      .course-grid,
      .testimonial-grid {
        grid-template-columns: 1fr;
      }

      .feature-list,
      .detail-grid,
      .teacher-collage {
        grid-template-columns: 1fr 1fr;
      }

      .hero-visual,
      .visual-panel {
        min-height: 26rem;
      }

      .hero-visual {
        display: grid;
        grid-template-rows: auto auto;
        gap: 1rem;
        align-items: start;
      }

      .hero-badge-row {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        justify-content: flex-start;
      }

      .hero-photo-main {
        position: relative;
        inset: auto;
      }

      .arch-panel {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        grid-template-columns: 1fr;
        backdrop-filter: none;
      }

      .teacher-card:nth-child(1) {
        min-height: 9.5rem;
      }

      .teacher-showcase {
        min-height: 26rem;
      }

      .nav {
        margin-left: 0;
      }
    }

    @media (max-width: 720px) {
      :root {
        --container: min(1120px, calc(100% - 1.25rem));
      }

      section {
        padding: 4.4rem 0;
      }

      .header-inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0.65rem 0;
      }

      .nav {
        width: 100%;
        justify-content: center;
        gap: 0.9rem 1.1rem;
      }

      .nav a {
        font-size: 0.94rem;
      }

      .brand-logo {
        height: 3.1rem;
      }

      .hero {
        padding-top: 3.2rem;
      }

      .hero-copy h1 {
        font-size: clamp(2.3rem, 11vw, 3.2rem);
      }

      .tagline {
        max-width: none;
        font-size: 1.18rem;
      }

      .intro,
      .split-copy > p,
      .section-heading p,
      .contact-card p {
        font-size: 1rem;
      }

      .arch-panel {
        padding: 1.25rem;
        border-radius: 1.6rem;
      }

      .visual-panel {
        min-height: 23rem;
      }

      .stat-badge {
        max-width: 11rem;
        padding: 0.8rem 0.9rem;
      }

      .hero-visual {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 0.85rem;
        padding: 1rem;
      }

      .hero-badge-row {
        justify-content: flex-start;
      }

      .hero-photo {
        min-height: 14rem;
      }

      .hero-photo-caption {
        left: 0.85rem;
        right: 0.85rem;
        bottom: 0.85rem;
        justify-content: center;
        text-align: center;
        border-radius: 1rem;
      }

      .hero-panel-side {
        gap: 0.7rem;
      }

      .hero-chip,
      .hero-chip-wide {
        width: auto;
      }

      .arch-copy h2,
      .arch-copy p {
        max-width: none;
      }

      .feature-list,
      .detail-grid,
      .teacher-collage {
        grid-template-columns: 1fr;
      }

      .teacher-showcase {
        min-height: 22rem;
      }

      .teacher-showcase-caption {
        left: 0.9rem;
        right: 0.9rem;
        bottom: 0.9rem;
        padding: 0.9rem 1rem;
      }

      .button-row {
        flex-direction: column;
        align-items: stretch;
      }

      .button-row .button {
        width: 100%;
      }

      .button-row[style] {
        align-items: stretch !important;
      }

      .contact-link {
        width: 100%;
        justify-content: center;
        text-align: center;
        border-radius: 1.25rem;
        padding: 1rem;
      }

      .testimonial-card,
      .course-card,
      .detail-card,
      .teacher-card,
      .contact-card {
        padding: 1.3rem;
      }

      .contact-card {
        padding: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      :root {
        --container: min(1120px, calc(100% - 1rem));
      }

      section {
        padding: 3.8rem 0;
      }

      .site-header {
        position: static;
      }

      .header-inner {
        gap: 0.6rem;
      }

      .brand {
        width: 100%;
        justify-content: center;
      }

      .brand-logo {
        height: 2.7rem;
      }

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

      .nav a {
        display: block;
        padding: 0.62rem 0.5rem;
        text-align: center;
        background: rgba(255, 251, 245, 0.78);
        border: 1px solid rgba(33, 76, 57, 0.08);
        border-radius: 999px;
        font-size: 0.9rem;
      }

      .hero {
        padding-top: 2.4rem;
      }

      .hero-copy h1 {
        font-size: clamp(2rem, 11vw, 2.65rem);
      }

      .tagline {
        font-size: 1.04rem;
      }

      .intro {
        font-size: 0.97rem;
      }

      .eyebrow {
        font-size: 0.78rem;
        padding: 0.4rem 0.75rem;
      }

      .hero-visual {
        padding: 0.8rem;
        border-radius: 1.45rem;
      }

      .hero-chip {
        width: 100%;
        justify-content: flex-start;
        font-size: 0.85rem;
        padding: 0.75rem 0.9rem;
      }

      .hero-photo {
        min-height: 12rem;
        border-radius: 1.35rem;
      }

      .hero-photo-caption {
        font-size: 0.84rem;
        padding: 0.72rem 0.82rem;
      }

      .arch-panel {
        padding: 1rem;
        border-radius: 1.25rem;
      }

      .arch-copy h2 {
        font-size: 1.65rem;
      }

      .hero-panel-note {
        font-size: 0.92rem;
        padding: 0.9rem;
      }

      .visual-panel {
        min-height: 20rem;
      }

      .stat-badge {
        max-width: 9.5rem;
        padding: 0.68rem 0.74rem;
        border-radius: 1rem;
      }

      .stat-badge strong {
        font-size: 0.9rem;
      }

      .stat-badge span {
        font-size: 0.82rem;
      }

      .section-heading h2,
      .split-copy h2,
      .contact-card h2,
      .cta-title {
        font-size: clamp(1.7rem, 8vw, 2.15rem);
      }

      .course-card h3 {
        font-size: 1.25rem;
      }

      .course-card,
      .detail-card,
      .teacher-card,
      .testimonial-card,
      .contact-card {
        padding: 1.1rem;
      }

      .teacher-showcase {
        min-height: 17rem;
        border-radius: 1.35rem;
      }

      .teacher-showcase-caption {
        font-size: 0.9rem;
        padding: 0.78rem 0.88rem;
        border-radius: 1rem;
      }

      .feature-list li {
        font-size: 0.97rem;
      }

      .contact-links {
        gap: 0.75rem;
      }

      .contact-link {
        font-size: 0.95rem;
      }

      .footer {
        padding: 2rem 0 2.3rem;
      }
    }

