:root {
  --ink: #243231;
  --ink-soft: #52605b;
  --paper: #f7f5ef;
  --paper-deep: #ece8dd;
  --accent: #a47b4b;
  --line: #d9d5c9;
  --white: #fffefa;
  --serif: "Noto Serif SC", "Songti SC", serif;
  --sans: "Source Han Sans CN", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
}
button,
a {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}

.site-header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 clamp(24px, 5vw, 84px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 239, 0.94);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.brand-mark {
  display: inline-grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  font: 700 10px/1 var(--sans);
  letter-spacing: 0.08em;
}
.site-header .brand-mark {
  background: var(--ink) url("../assets/logos/wyz_square.jpg") center / cover
    no-repeat;
  color: transparent;
  font-size: 0;
}
.page-tabs {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 5px;
  border: 1px solid var(--line);
  background: var(--paper-deep);
  font-size: 13px;
  color: var(--ink-soft);
}
.page-tabs a {
  padding: 7px 14px;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}
.page-tabs a:hover {
  color: var(--ink);
  background: rgba(255, 254, 250, 0.64);
}
.page-tabs a.is-active {
  color: var(--paper);
  background: var(--ink);
}
.header-contact {
  position: relative;
}
.header-contact::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.24s ease;
}
.header-contact:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.header-contact svg {
  width: 16px;
}

.hero {
  position: relative;
  height: 720px;
  min-height: 520px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.hero-slides,
.hero-slide {
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide img,
.home-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide img {
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 5s ease;
}
.hero-slide.is-active img {
  transform: scale(1.025);
}
.home-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(16, 26, 24, 0.88) 0%,
    rgba(16, 26, 24, 0.53) 47%,
    rgba(16, 26, 24, 0.12) 100%
  );
}
.home-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding-top: 65px;
  padding-bottom: 48px;
}
.home-hero-content h1 {
  max-width: 650px;
  font-size: clamp(40px, 5vw, 65px);
}
.home-hero-subtitle {
  margin: 19px 0 0;
  font: 500 clamp(18px, 2vw, 24px) var(--serif);
  letter-spacing: 0.04em;
}
.home-hero-copy {
  display: grid;
  gap: 5px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
  color: #d7ded7;
  font-size: 15px;
}
.home-hero-copy li {
  position: relative;
  padding-left: 16px;
}
.home-hero-copy li::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 5px;
  height: 5px;
  background: #d9bd98;
}
.home-hero-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  margin-top: 30px;
  padding: 12px 20px;
  border: 1px solid var(--accent);
  color: var(--white);
  background: var(--accent);
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.home-hero-link:hover {
  background: #8e6639;
  transform: translateY(-2px);
}
.home-hero-link svg {
  width: 17px;
}
.hero-controls {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 5vw, 84px);
  bottom: 31px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.carousel-arrow,
.icon-control {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--white);
  background: rgba(36, 50, 49, 0.18);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}
.carousel-arrow:hover {
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-2px);
}
.carousel-arrow svg,
.icon-control svg {
  width: 18px;
}
.hero-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 4px;
}
.hero-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.65);
  transition:
    width 0.25s ease,
    background 0.25s ease;
}
.hero-dot.is-active {
  width: 24px;
  background: var(--white);
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.placeholder-page {
  min-height: calc(100vh - 76px);
}
.placeholder-hero {
  padding: clamp(90px, 15vw, 180px) 0 clamp(56px, 9vw, 104px);
  border-bottom: 1px solid var(--line);
}
.placeholder-hero > p:not(.eyebrow) {
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}
.placeholder-content {
  min-height: 260px;
  padding: 46px 0 100px;
  color: var(--ink-soft);
  font-size: 16px;
}
.placeholder-content p {
  margin: 0;
}
.seven-hero {
  position: relative;
  height: 720px;
  min-height: 520px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.seven-hero > img,
.seven-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.seven-hero > img {
  display: block;
  object-fit: cover;
  object-position: center;
}
.seven-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(16, 26, 24, 0.88) 0%,
    rgba(16, 26, 24, 0.53) 47%,
    rgba(16, 26, 24, 0.12) 100%
  );
}
.seven-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding-top: 65px;
  padding-bottom: 48px;
}
.seven-hero .eyebrow {
  color: #d9bd98;
}
.seven-hero h1 {
  max-width: 620px;
  font-size: clamp(40px, 5vw, 65px);
}
.seven-hero-subtitle {
  margin: 19px 0 0;
  font: 500 clamp(18px, 2vw, 24px) var(--serif);
  letter-spacing: 0.04em;
}
.seven-hero-copy {
  max-width: 520px;
  margin: 13px 0 0;
  color: #d7ded7;
  font-size: 15px;
}
.seven-hero-button {
  align-self: flex-start;
  min-height: 54px;
  margin-top: 34px;
  padding: 14px 27px;
  font-size: 15px;
}
.seven-story {
  display: grid;
  grid-template-columns: minmax(250px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(45px, 9vw, 148px);
  padding-top: 118px;
  padding-bottom: 108px;
}
.seven-story-body {
  max-width: 600px;
  font-size: 17px;
  line-height: 2;
}
.seven-story-body p {
  margin: 0;
}
.seven-story-body p + p {
  margin-top: 20px;
}
.seven-story-commitments {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 15px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.seven-story-commitments article {
  min-height: 176px;
  padding: 26px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.seven-story-commitments span,
.seven-challenge-card span,
.seven-advantage-list > article > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.seven-story-commitments h3 {
  margin: 15px 0 7px;
  font: 600 20px var(--serif);
}
.seven-story-commitments p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}
.seven-challenges {
  padding: 110px 0 118px;
  color: var(--paper);
  background: #172220;
}
.seven-heading-light > p:not(.eyebrow) {
  color: #cbd0c9;
}
.seven-challenge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 45px;
  background: rgba(235, 229, 214, 0.28);
}
.seven-challenge-card {
  min-height: 250px;
  padding: 27px;
  background: #172220;
  transition: background 0.25s ease;
}
.seven-challenge-card:hover {
  background: #263833;
}
.seven-challenge-card h3 {
  margin: 46px 0 12px;
  font: 600 21px var(--serif);
}
.seven-challenge-card p {
  margin: 0;
  color: #cbd0c9;
  font-size: 14px;
  line-height: 1.85;
}
.seven-advantages {
  padding-top: 116px;
  padding-bottom: 120px;
}
.seven-advantage-list {
  margin-top: 45px;
  border-top: 1px solid var(--line);
}
.seven-advantage-list > article {
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0 31px;
  border-bottom: 1px solid var(--line);
  transition:
    padding 0.22s ease,
    background 0.22s ease;
}
.seven-advantage-list > article:hover {
  padding-left: 16px;
  padding-right: 16px;
  background: var(--paper-deep);
}
.seven-advantage-list h3 {
  margin: 0;
  font: 600 22px var(--serif);
}
.seven-advantage-list p {
  max-width: 700px;
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}
.seven-faculty {
  padding: 111px 0 118px;
  background: var(--paper-deep);
}
.seven-faculty-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 45px;
}
.seven-teacher-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(0, 1.1fr);
  min-height: 290px;
  background: var(--white);
}
.seven-teacher-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seven-teacher-card > div {
  align-self: center;
  padding: 26px;
}
.seven-teacher-card h3 {
  margin: 0;
  font: 600 22px var(--serif);
}
.seven-teacher-card p {
  margin: 7px 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}
.seven-teacher-card span {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.85;
}
.seven-universities {
  padding-top: 118px;
  padding-bottom: 128px;
}
.seven-universities-heading {
  text-align: center;
  margin: 0 auto;
}
.university-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 50px;
  border: 1px solid var(--line);
  background: var(--line);
}
.university-logo-grid figure {
  display: grid;
  grid-template-rows: 150px auto;
  min-width: 0;
  min-height: 197px;
  margin: 0;
  padding: 15px 13px 17px;
  text-align: center;
  background: var(--white);
  transition: background 0.2s ease;
}
.university-logo-grid figure:hover {
  background: #f2ede3;
}
.university-logo-grid img {
  display: block;
  width: 104px;
  height: 104px;
  max-width: 100%;
  margin: 23px auto;
  object-fit: contain;
}
.university-logo-grid figcaption {
  align-self: end;
  min-height: 2.9em;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}
.faculty-page-hero {
  padding: clamp(90px, 15vw, 180px) 0 clamp(56px, 9vw, 104px);
  border-bottom: 1px solid var(--line);
}
.faculty-page-hero > p:not(.eyebrow) {
  max-width: 520px;
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}
.faculty-showcase {
  padding: 100px 0 112px;
}
.faculty-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}
.faculty-showcase-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}
.faculty-showcase-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.faculty-showcase-card:hover img {
  transform: scale(1.04);
}
.faculty-showcase-card > div {
  padding: 28px 30px 30px;
}
.faculty-showcase-card h3 {
  margin: 0;
  font: 600 25px var(--serif);
  letter-spacing: 0.04em;
}
.faculty-showcase-card p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}
.faculty-bio {
  display: grid;
  gap: 10px;
  margin: 23px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}
.faculty-bio li {
  position: relative;
  padding-left: 14px;
}
.faculty-bio li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--accent);
}
.advisors {
  padding: 108px 0 120px;
  color: var(--paper);
  background: var(--ink);
}
.advisors .section-heading > p:not(.eyebrow) {
  color: #cbd0c9;
}
.advisor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
}
.advisor-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(235, 229, 214, 0.28);
  background: rgba(255, 255, 255, 0.035);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.advisor-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
}
.advisor-card p {
  margin: 0;
  color: #d9bd98;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.advisor-card h3 {
  margin: 14px 0 11px;
  font: 600 23px var(--serif);
  letter-spacing: 0.04em;
}
.advisor-card span {
  color: #cbd0c9;
  font-size: 14px;
  line-height: 1.75;
}
.advisor-card-wide {
  grid-column: span 3;
  min-height: 0;
}
.student-stories-hero {
  padding: clamp(90px, 15vw, 180px) 0 clamp(56px, 9vw, 104px);
  border-bottom: 1px solid var(--line);
}
.student-stories-hero > p:not(.eyebrow) {
  max-width: 420px;
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}
.student-interviews {
  padding: 76px 0 0;
}
.student-interviews .section-heading {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.student-interview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}
.student-interview-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
}
.student-interview-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
}
.student-interview-trigger img,
.student-interview-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #172220;
}
.student-interview-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 34, 32, 0.18);
  transition: background 0.2s ease;
}
.student-interview-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 254, 250, 0.88);
  border-radius: 50%;
  background: rgba(23, 34, 32, 0.58);
  transform: translate(-50%, -50%);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.student-interview-play::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}
.student-interview-trigger:hover::after,
.student-interview-trigger:focus-visible::after {
  background: rgba(23, 34, 32, 0.04);
}
.student-interview-trigger:hover .student-interview-play,
.student-interview-trigger:focus-visible .student-interview-play {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.08);
}
.student-interview-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -4px;
}
.case-studies {
  padding: 64px 0 112px;
}
.case-studies > .section-heading {
  margin: 0 auto;
  text-align: center;
}
.case-study-group {
  width: min(100%, 1100px);
  margin: 54px auto 0;
}
.case-study-group + .case-study-group {
  margin-top: 76px;
}
.case-study-group h3 {
  margin: 0 0 18px;
  text-align: center;
  font: 600 22px var(--serif);
  letter-spacing: 0.04em;
}
.case-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}
.case-table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
  font-size: 14px;
}
.case-table th,
.case-table td {
  padding: 18px 28px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.case-table th {
  color: var(--ink-soft);
  background: var(--paper-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.case-table td:nth-child(3),
.case-table td:nth-child(4) {
  white-space: nowrap;
}
.case-table tbody tr:last-child td {
  border-bottom: 0;
}
.case-table tbody tr:hover {
  background: var(--white);
}
.scorecards {
  padding: 106px 0 120px;
  color: var(--paper);
  background: var(--ink);
}
.scorecards .section-heading > p:not(.eyebrow) {
  color: #cbd0c9;
}
.scorecard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 45px;
}
.scorecard-trigger {
  display: block;
  aspect-ratio: 3 / 4;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(235, 229, 214, 0.25);
  background: #31413d;
}
.scorecard-trigger img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}
.scorecard-trigger:hover img,
.scorecard-trigger:focus-visible img {
  transform: scale(1.05);
}
.scorecard-trigger:focus-visible {
  outline: 2px solid #ead2b1;
  outline-offset: 3px;
}
.scorecard-dialog {
  width: min(92vw, 900px);
  max-height: 90vh;
  padding: 0;
  border: 1px solid rgba(235, 229, 214, 0.5);
  color: var(--paper);
  background: #172220;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}
.scorecard-dialog::backdrop {
  background: rgba(12, 18, 17, 0.82);
}
.scorecard-dialog img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 86vh;
  margin: 0 auto;
}
.scorecard-close {
  position: fixed;
  top: 22px;
  right: 28px;
  z-index: 1;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(235, 229, 214, 0.62);
  color: var(--paper);
  background: rgba(23, 34, 32, 0.8);
  font-size: 30px;
  line-height: 1;
}
.scorecard-close:hover {
  color: var(--ink);
  background: var(--paper);
}
.services {
  padding: 118px 0 126px;
}
.section-heading {
  max-width: 670px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
h1 {
  font-size: clamp(30px, 4vw, 48px);
}
h2 {
  font-size: clamp(28px, 3.3vw, 40px);
}
.section-heading > p:not(.eyebrow),
.feature-intro > p:not(.eyebrow) {
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.service-card {
  min-height: 171px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.service-card:hover {
  position: relative;
  z-index: 1;
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 11px 24px rgba(38, 43, 38, 0.08);
}
.service-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}
.service-icon svg {
  width: 19px;
}
.service-card:hover .service-icon {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}
.service-card h3 {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.faculty {
  padding: 95px 0 110px;
  border-top: 1px solid var(--line);
}
.section-heading-row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.scroll-controls {
  display: flex;
  gap: 8px;
}
.icon-control {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.icon-control:hover {
  background: var(--ink);
  color: var(--paper);
}
.teacher-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(330px, 43%);
  gap: 18px;
  margin-top: 40px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 3px;
}
.teacher-track::-webkit-scrollbar {
  display: none;
}
.teacher-card {
  position: relative;
  aspect-ratio: 1.2 / 1;
  overflow: hidden;
  background: var(--paper-deep);
  scroll-snap-align: start;
}
.teacher-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.teacher-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(20, 31, 29, 0.82));
  pointer-events: none;
  transition: background 0.3s ease;
}
.teacher-card:hover img {
  transform: scale(1.04);
}
.teacher-card:hover::after {
  background: linear-gradient(transparent, rgba(20, 31, 29, 0.94));
}
.teacher-meta {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 22px;
  color: var(--white);
}
.teacher-meta h3 {
  margin: 0;
  font: 600 23px var(--serif);
  letter-spacing: 0.05em;
}
.teacher-meta p {
  margin: 5px 0 0;
  font-size: 13px;
  opacity: 0.85;
}
.teacher-meta span {
  display: inline-block;
  margin-top: 11px;
  color: #ead2b1;
  font-size: 12px;
  transform: translateY(6px);
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.teacher-card:hover .teacher-meta span {
  transform: translateY(0);
  opacity: 1;
}

.interviews {
  padding: 110px 0;
  background: var(--paper-deep);
}
.interview-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.35fr);
  gap: clamp(42px, 8vw, 125px);
  align-items: center;
}
.interview-intro > p:not(.eyebrow) {
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}
.text-link-dark {
  color: var(--ink);
}
.interview-list {
  border-top: 1px solid #cfc9bd;
}
.interview-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 156px;
  gap: 26px;
  align-items: center;
  padding: 23px 0;
  border-bottom: 1px solid #cfc9bd;
  transition:
    padding 0.22s ease,
    background 0.22s ease;
}
.interview-card:hover {
  padding-left: 14px;
  padding-right: 14px;
  background: rgba(255, 254, 250, 0.58);
}
.interview-number {
  margin: 0 0 7px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.interview-card h3 {
  margin: 0;
  font: 600 22px/1.5 var(--serif);
  letter-spacing: 0.03em;
}
.interview-card > div > p:not(.interview-number) {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}
.interview-portrait {
  display: grid;
  place-items: center;
  width: 156px;
  aspect-ratio: 1.25;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.interview-portrait svg {
  width: 38px;
  opacity: 0.85;
  transition: transform 0.3s ease;
}
.interview-card:hover .interview-portrait svg {
  transform: translateX(5px);
}

.feature-section {
  padding: 110px 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.feature-section::before {
  content: "";
  position: absolute;
  width: 48vw;
  height: 48vw;
  max-width: 700px;
  max-height: 700px;
  right: -16vw;
  top: -25vw;
  border: 1px solid rgba(235, 229, 214, 0.16);
  border-radius: 50%;
}
.feature-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: clamp(48px, 9vw, 150px);
}
.feature-intro > p:not(.eyebrow) {
  color: #cbd0c9;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
  color: #ead2b1;
  font-size: 14px;
}
.text-link svg {
  width: 17px;
  transition: transform 0.22s ease;
}
.text-link:hover svg {
  transform: translateX(5px);
}
.article-list {
  border-top: 1px solid rgba(235, 229, 214, 0.3);
}
.article-item {
  display: grid;
  grid-template-columns: 1fr 142px;
  gap: 24px;
  align-items: center;
  padding: 21px 0;
  border-bottom: 1px solid rgba(235, 229, 214, 0.3);
  transition:
    padding 0.22s ease,
    background 0.22s ease;
}
.article-item:hover {
  padding-left: 14px;
  padding-right: 14px;
  background: rgba(255, 255, 255, 0.055);
}
.article-kicker {
  margin: 0 0 6px;
  color: #d9bd98;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.article-copy h3 {
  margin: 0;
  font: 600 18px var(--serif);
  letter-spacing: 0.03em;
}
.article-copy > p:not(.article-kicker) {
  margin: 6px 0 0;
  color: #c6cec6;
  font-size: 13px;
  line-height: 1.7;
}
.article-image {
  width: 142px;
  aspect-ratio: 1.5;
  overflow: hidden;
  background: #45524e;
}
.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.article-item:hover .article-image img {
  transform: scale(1.07);
}
.toolkit {
  padding: 110px 0;
}
.article-list-light {
  margin-top: 39px;
  border-color: var(--line);
}
.article-list-light .article-item {
  border-color: var(--line);
}
.article-list-light .article-item:hover {
  background: var(--paper-deep);
}
.article-list-light .article-kicker {
  color: var(--accent);
}
.article-list-light .article-copy > p:not(.article-kicker) {
  color: var(--ink-soft);
}

.site-footer {
  padding: 70px clamp(24px, 5vw, 84px) 26px;
  color: #d9ded7;
  background: #172220;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 62px;
}
.brand-footer {
  color: var(--paper);
}
.brand-footer .brand-mark {
  color: var(--ink);
  background: var(--paper);
}
.footer-note {
  max-width: 330px;
  margin: 20px 0 0;
  color: #aeb8ae;
  font-size: 14px;
}
.footer-contact {
  display: grid;
  gap: 8px;
  min-width: 260px;
  font-size: 14px;
}
.footer-contact p {
  margin: 0;
  color: #9ca99e;
}
.footer-contact a,
.footer-contact span {
  margin-left: 18px;
  color: var(--paper);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 23px;
  border-top: 1px solid #40504b;
  color: #89978d;
  font-size: 12px;
}

.customer-service {
  position: fixed;
  z-index: 30;
  right: clamp(18px, 3vw, 38px);
  bottom: clamp(18px, 3vw, 36px);
  width: min(360px, calc(100vw - 36px));
  pointer-events: none;
}
.customer-window {
  display: none;
  overflow: hidden;
  border: 1px solid #c6c2b8;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(22, 32, 29, 0.2);
  pointer-events: auto;
}
.customer-service.is-open .customer-window {
  display: block;
  animation: chat-enter 0.28s ease both;
}
.customer-launcher {
  display: inline-flex;
  float: right;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  font-size: 13px;
  font-weight: 600;
  pointer-events: auto;
  box-shadow: 0 7px 18px rgba(22, 32, 29, 0.18);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.customer-launcher svg {
  width: 18px;
}
.customer-service.is-open .customer-launcher {
  display: none;
}
.customer-launcher:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.customer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 13px 15px;
  color: var(--paper);
  background: var(--ink);
}
.customer-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.customer-avatar,
.chat-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 33px;
  height: 33px;
  color: var(--ink);
  background: #e3c8a4;
  font: 700 10px/1 var(--sans);
  letter-spacing: 0.05em;
}
.customer-title strong,
.customer-title span {
  display: block;
}
.customer-title strong {
  font-size: 14px;
  letter-spacing: 0.04em;
}
.customer-title span {
  margin-top: 2px;
  color: #bdc7bd;
  font-size: 11px;
}
.customer-actions {
  display: flex;
  gap: 3px;
}
.customer-actions button {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  color: var(--paper);
  background: transparent;
  transition: background 0.2s ease;
}
.customer-actions button:hover {
  background: rgba(255, 255, 255, 0.14);
}
.customer-actions svg {
  width: 16px;
}
.customer-messages {
  display: flex;
  flex-direction: column;
  gap: 13px;
  height: 265px;
  padding: 17px 15px;
  overflow-y: auto;
  background: #f4f2eb;
}
.chat-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  max-width: 88%;
}
.chat-row-user {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.chat-row-user .chat-avatar {
  display: none;
}
.chat-bubble {
  width: fit-content;
  margin: 0;
  padding: 9px 11px;
  color: var(--ink);
  background: var(--white);
  font-size: 13px;
  line-height: 1.65;
  box-shadow: 0 1px 2px rgba(24, 32, 29, 0.05);
}
.chat-row-user .chat-bubble {
  color: var(--paper);
  background: var(--ink);
}
.chat-image {
  display: block;
  max-width: 175px;
  max-height: 145px;
  object-fit: cover;
}
.chat-qr-image {
  width: 190px;
  max-width: 100%;
  height: auto;
  max-height: none;
  margin-top: 9px;
  object-fit: contain;
}
.customer-composer {
  display: grid;
  grid-template-columns: 32px 1fr 38px;
  align-items: end;
  gap: 7px;
  padding: 10px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.image-upload,
.customer-send {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  color: var(--ink-soft);
  background: transparent;
  transition:
    color 0.2s ease,
    background 0.2s ease;
  cursor: pointer;
}
.image-upload:hover,
.customer-send:hover {
  color: var(--white);
  background: var(--accent);
}
.image-upload svg,
.customer-send svg {
  width: 18px;
}
.customer-composer textarea {
  width: 100%;
  max-height: 84px;
  padding: 7px 4px;
  resize: none;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  line-height: 1.4;
}
.customer-composer textarea::placeholder {
  color: #8d968e;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@keyframes chat-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ielts-hero {
  position: relative;
  height: 720px;
  min-height: 520px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.ielts-hero > img,
.ielts-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ielts-hero > img {
  object-fit: cover;
  object-position: center center;
}
.ielts-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(16, 26, 24, 0.88) 0%,
    rgba(16, 26, 24, 0.53) 47%,
    rgba(16, 26, 24, 0.12) 100%
  );
}
.ielts-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding-top: 65px;
  padding-bottom: 48px;
}
.ielts-hero .eyebrow {
  color: #d9bd98;
}
.ielts-hero h1 {
  max-width: 620px;
  font-size: clamp(40px, 5vw, 65px);
}
.ielts-hero-subtitle {
  margin: 19px 0 0;
  font: 500 clamp(18px, 2vw, 24px) var(--serif);
  letter-spacing: 0.04em;
}
.ielts-hero-copy {
  margin: 13px 0 0;
  color: #d7ded7;
  font-size: 15px;
}
.ielts-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.ielts-news {
  padding: 112px 0;
}
.ielts-interviews {
  padding: 112px 0;
}
.ielts-skills {
  padding: 114px 0 120px;
}
.ielts-skill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: var(--line);
  border: 1px solid var(--line);
}
.ielts-skill-card {
  min-height: 354px;
  padding: 30px;
  background: var(--white);
  transition: background 0.22s ease;
}
.ielts-skill-card:hover {
  background: #f2ede3;
}
.ielts-skill-label {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.ielts-skill-card h3 {
  margin: 14px 0 27px;
  font: 600 24px var(--serif);
  letter-spacing: 0.04em;
}
.ielts-tip-list {
  border-top: 1px solid var(--line);
}
.ielts-tip-list a {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.55;
  transition:
    padding 0.2s ease,
    color 0.2s ease;
}
.ielts-tip-list a:hover {
  padding-left: 9px;
  color: var(--accent);
}
.ielts-tip-list time {
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.ielts-faculty {
  padding: 110px 0 118px;
  color: var(--paper);
  background: #172220;
}
.ielts-faculty .section-heading > p:not(.eyebrow) {
  color: #cbd0c9;
}
.ielts-faculty-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}
.ielts-faculty-card {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 365px;
  overflow: hidden;
  background: #263833;
}
.ielts-faculty-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.ielts-faculty-card:hover img {
  transform: scale(1.04);
}
.ielts-faculty-card > div {
  align-self: center;
  padding: 25px;
}
.ielts-faculty-card h3 {
  margin: 0;
  font: 600 23px var(--serif);
  letter-spacing: 0.04em;
}
.ielts-faculty-card p {
  margin: 7px 0 17px;
  color: #d9bd98;
  font-size: 13px;
  font-weight: 600;
}
.ielts-faculty-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 15px 0 0;
  border-top: 1px solid rgba(235, 229, 214, 0.2);
  list-style: none;
  color: #cbd0c9;
  font-size: 12px;
  line-height: 1.7;
}
.ielts-faculty-card li {
  position: relative;
  padding-left: 12px;
}
.ielts-faculty-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 4px;
  height: 4px;
  background: #d9bd98;
}
.ielts-faculty-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 34px;
  color: #ead2b1;
  font-size: 14px;
}
.ielts-faculty-link svg {
  width: 17px;
  transition: transform 0.2s ease;
}
.ielts-faculty-link:hover svg {
  transform: translate(3px, -3px);
}

.toefl-hero {
  position: relative;
  height: 720px;
  min-height: 520px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.toefl-hero > img,
.toefl-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.toefl-hero > img {
  object-fit: cover;
  object-position: center center;
}
.toefl-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(16, 26, 24, 0.88) 0%,
    rgba(16, 26, 24, 0.53) 47%,
    rgba(16, 26, 24, 0.12) 100%
  );
}
.toefl-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding-top: 65px;
  padding-bottom: 48px;
}
.toefl-hero .eyebrow {
  color: #d9bd98;
}
.toefl-hero h1 {
  max-width: 620px;
  font-size: clamp(40px, 5vw, 65px);
}
.toefl-hero-subtitle {
  margin: 19px 0 0;
  font: 500 clamp(18px, 2vw, 24px) var(--serif);
  letter-spacing: 0.04em;
}
.toefl-hero-copy {
  margin: 13px 0 0;
  color: #d7ded7;
  font-size: 15px;
}
.toefl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.brand-subtitle {
  padding-left: 11px;
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font: 500 12px var(--sans);
  letter-spacing: 0;
}
.speaking-header-cta {
  padding: 0;
  border: 0;
  background: transparent;
}
.speaking-hero {
  position: relative;
  min-height: min(720px, calc(100vh - 76px));
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.speaking-hero > img,
.speaking-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.speaking-hero > img {
  object-fit: cover;
}
.speaking-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(16, 26, 24, 0.88) 0%,
    rgba(16, 26, 24, 0.57) 45%,
    rgba(16, 26, 24, 0.15) 100%
  );
}
.speaking-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: min(720px, calc(100vh - 76px));
  flex-direction: column;
  justify-content: center;
  padding-top: 65px;
  padding-bottom: 48px;
}
.speaking-hero .eyebrow {
  color: #d9bd98;
}
.speaking-hero h1 {
  max-width: 620px;
  font-size: clamp(40px, 5vw, 65px);
}
.speaking-hero-subtitle {
  margin: 19px 0 0;
  font: 500 clamp(18px, 2vw, 24px) var(--serif);
  letter-spacing: 0.04em;
}
.speaking-hero-copy {
  margin: 13px 0 0;
  color: #d7ded7;
  font-size: 15px;
}
.speaking-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.speaking-primary-button,
.speaking-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--accent);
  font-size: 14px;
  font-weight: 700;
}
.speaking-primary-button {
  color: var(--white);
  background: var(--accent);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.speaking-primary-button:hover {
  background: #8e6639;
  transform: translateY(-2px);
}
.speaking-primary-button svg,
.speaking-secondary-button svg {
  width: 17px;
}
.speaking-secondary-button {
  color: var(--paper);
  border-color: rgba(255, 254, 250, 0.7);
  background: rgba(20, 31, 29, 0.16);
}
.speaking-secondary-button:hover {
  background: rgba(255, 254, 250, 0.12);
}
.speaking-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px 18px;
  max-width: 700px;
  margin-top: 55px;
  color: rgba(242, 241, 235, 0.65);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.speaking-trust strong {
  color: rgba(242, 241, 235, 0.82);
  font-size: 13px;
  font-weight: 600;
}
.speaking-pains {
  padding: 110px 0 116px;
  background: var(--paper-deep);
}
.speaking-centered-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.speaking-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 45px;
}
.speaking-pain-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.speaking-pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(38, 43, 38, 0.09);
}
.speaking-pain-card svg {
  width: 27px;
  height: 27px;
  color: var(--accent);
}
.speaking-pain-card h3 {
  margin: 36px 0 9px;
  font: 600 21px var(--serif);
  letter-spacing: 0.04em;
}
.speaking-pain-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.85;
}
.speaking-course {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: center;
  padding-top: 118px;
  padding-bottom: 118px;
}
.speaking-course-image {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: var(--paper-deep);
}
.speaking-course-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.speaking-course-image:hover img {
  transform: scale(1.035);
}
.speaking-course-image span {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 7px 10px;
  color: var(--paper);
  background: var(--ink);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.speaking-course-copy {
  padding: 18px 0;
}
.speaking-course-copy h2 {
  max-width: 510px;
  margin-top: 12px;
}
.speaking-course-lead {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}
.speaking-course-copy ul {
  display: grid;
  gap: 12px;
  margin: 27px 0 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
  font-size: 14px;
}
.speaking-course-copy li {
  position: relative;
  padding-left: 24px;
}
.speaking-course-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.speaking-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 21px;
}
.speaking-tags span {
  padding: 5px 9px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
}
.speaking-course-business {
  background: #eae5d8;
}
.speaking-course-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: center;
  padding-top: 118px;
  padding-bottom: 118px;
}
.speaking-course-everyday {
  background: #f1e8da;
}
.speaking-difference {
  padding: 112px 0 118px;
  background: var(--paper-deep);
}
.speaking-compare-grid {
  display: grid;
  grid-template-columns: 1fr 76px 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 960px;
  margin: 46px auto 0;
}
.speaking-compare-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
}
.speaking-compare-ours {
  color: var(--paper);
  border-color: var(--ink) !important;
  background: var(--ink) !important;
}
.speaking-compare-label {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.speaking-compare-ours .speaking-compare-label {
  color: #d9bd98;
}
.speaking-compare-grid ul {
  display: grid;
  gap: 16px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.75;
}
.speaking-compare-grid li {
  position: relative;
  padding-left: 22px;
}
.speaking-compare-grid article:first-child li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #9b6c55;
  font-weight: 700;
}
.speaking-compare-ours li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d9bd98;
  font-weight: 700;
}
.speaking-vs {
  display: grid;
  place-items: center;
  align-self: center;
  width: 44px;
  height: 44px;
  margin: auto;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: var(--paper-deep);
  font: 600 13px var(--serif);
}
.speaking-difference-quote {
  margin: 37px 0 0;
  text-align: center;
  font: 600 21px var(--serif);
  letter-spacing: 0.04em;
}
.speaking-stories {
  padding-top: 112px;
  padding-bottom: 118px;
}
.speaking-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}
.speaking-story-grid article {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}
.speaking-story-grid span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
}
.speaking-story-grid h3 {
  margin: 17px 0 22px;
  font: 600 21px var(--serif);
  letter-spacing: 0.04em;
}
.speaking-story-grid blockquote {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}
.speaking-final-cta {
  padding: 112px 0 120px;
  color: var(--paper);
  text-align: center;
  background: #172220;
}
.speaking-final-cta .section-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.speaking-final-cta .eyebrow {
  color: #d9bd98;
}
.speaking-final-cta p:not(.eyebrow) {
  max-width: 550px;
  margin: 17px 0 31px;
  color: #cbd0c9;
  font-size: 15px;
}
.assessment-dialog {
  width: min(92vw, 450px);
  padding: 0;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}
.assessment-dialog::backdrop {
  background: rgba(12, 18, 17, 0.72);
}
.assessment-qr {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 34px;
  text-align: center;
}
.assessment-qr h2 {
  font-size: 28px;
}
.assessment-qr img {
  display: block;
  width: min(100%, 310px);
  height: auto;
  border: 1px solid var(--line);
}
.assessment-close {
  position: absolute;
  top: 13px;
  right: 13px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  color: var(--ink-soft);
  background: transparent;
}
.assessment-close:hover {
  color: var(--paper);
  background: var(--ink);
}
.assessment-close svg {
  width: 18px;
}

@media (max-width: 760px) {
  .site-header {
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 20px;
  }
  .brand {
    font-size: 18px;
  }
  .page-tabs {
    order: 3;
    width: calc(100% + 40px);
    gap: 15px;
    margin: 0 -20px -10px;
    overflow-x: auto;
    border-right: 0;
    border-left: 0;
  }
  .page-tabs a {
    padding: 8px 15px;
  }
  .header-contact {
    font-size: 12px;
  }
  .hero {
    height: 620px;
    min-height: 620px;
  }
  .home-hero-overlay {
    background: linear-gradient(
      0deg,
      rgba(16, 26, 24, 0.88),
      rgba(16, 26, 24, 0.24)
    );
  }
  .home-hero-content {
    justify-content: end;
    padding-top: 80px;
    padding-bottom: 88px;
  }
  .home-hero-content h1 {
    font-size: 37px;
  }
  .home-hero-subtitle {
    font-size: 17px;
  }
  .home-hero-copy {
    font-size: 13px;
  }
  .home-hero-link {
    margin-top: 24px;
  }
  .hero-controls {
    right: 20px;
    bottom: 19px;
    gap: 10px;
  }
  .carousel-arrow {
    width: 37px;
    height: 37px;
  }
  .section-shell {
    width: min(100% - 40px, 1180px);
  }
  .services {
    padding: 78px 0;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 35px;
  }
  .service-card {
    min-height: 142px;
    padding: 20px;
  }
  .service-card h3 {
    margin-top: 16px;
    font-size: 15px;
  }
  .seven-hero {
    height: 620px;
    min-height: 620px;
  }
  .seven-hero-overlay {
    background: linear-gradient(
      0deg,
      rgba(16, 26, 24, 0.88),
      rgba(16, 26, 24, 0.24)
    );
  }
  .seven-hero-content {
    justify-content: end;
    padding-top: 80px;
    padding-bottom: 38px;
  }
  .seven-hero h1 {
    font-size: 36px;
  }
  .seven-hero-subtitle {
    font-size: 17px;
  }
  .seven-hero-copy {
    font-size: 13px;
  }
  .seven-hero-button {
    margin-top: 26px;
  }
  .seven-story {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 74px;
    padding-bottom: 73px;
  }
  .seven-story-body {
    font-size: 16px;
    line-height: 1.9;
  }
  .seven-story-commitments {
    grid-template-columns: 1fr;
    margin-top: 6px;
  }
  .seven-story-commitments article {
    min-height: 0;
    padding: 22px;
  }
  .seven-challenges {
    padding: 73px 0;
  }
  .seven-challenge-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
  }
  .seven-challenge-card {
    min-height: 224px;
    padding: 20px;
  }
  .seven-challenge-card h3 {
    margin-top: 35px;
    font-size: 18px;
  }
  .seven-challenge-card p {
    font-size: 13px;
  }
  .seven-advantages {
    padding-top: 74px;
    padding-bottom: 74px;
  }
  .seven-advantage-list {
    margin-top: 32px;
  }
  .seven-advantage-list > article {
    grid-template-columns: 53px minmax(0, 1fr);
    gap: 13px;
    padding: 21px 0;
  }
  .seven-advantage-list h3 {
    font-size: 18px;
  }
  .seven-advantage-list p {
    font-size: 14px;
  }
  .seven-faculty {
    padding: 74px 0;
  }
  .seven-faculty-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 32px;
  }
  .seven-teacher-card {
    grid-template-columns: 42% 58%;
    min-height: 235px;
  }
  .seven-teacher-card > div {
    padding: 20px;
  }
  .seven-teacher-card h3 {
    font-size: 19px;
  }
  .seven-teacher-card span {
    font-size: 13px;
    line-height: 1.7;
  }
  .seven-universities {
    padding-top: 74px;
    padding-bottom: 74px;
  }
  .university-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 32px;
  }
  .university-logo-grid figure {
    grid-template-rows: 120px auto;
    min-height: 167px;
    padding: 12px 9px;
  }
  .university-logo-grid img {
    width: 88px;
    height: 88px;
    margin: 16px auto;
  }
  .university-logo-grid figcaption {
    font-size: 12px;
  }
  .faculty-page-hero {
    padding: 84px 0 61px;
  }
  .faculty-showcase {
    padding: 74px 0;
  }
  .faculty-showcase-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .faculty-showcase-card > div {
    padding: 22px;
  }
  .advisors {
    padding: 74px 0;
  }
  .advisor-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }
  .advisor-card,
  .advisor-card-wide {
    grid-column: auto;
    min-height: 0;
    padding: 23px;
  }
  .student-stories-hero {
    padding: 84px 0 61px;
  }
  .student-interviews {
    padding-top: 52px;
  }
  .student-interview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 32px;
  }
  .case-studies {
    padding: 52px 0;
  }
  .case-study-group {
    margin-top: 40px;
  }
  .case-study-group + .case-study-group {
    margin-top: 55px;
  }
  .case-study-group h3 {
    font-size: 19px;
  }
  .case-table th,
  .case-table td {
    padding: 13px 20px;
  }
  .scorecards {
    padding: 74px 0;
  }
  .scorecard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 32px;
  }
  .scorecard-close {
    top: 14px;
    right: 14px;
  }
  .faculty,
  .toolkit {
    padding: 72px 0;
  }
  .teacher-track {
    grid-auto-columns: 83%;
    margin-top: 30px;
  }
  .teacher-meta {
    left: 20px;
    right: 20px;
    bottom: 17px;
  }
  .interviews {
    padding: 72px 0;
  }
  .interview-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .interview-card {
    grid-template-columns: 1fr 106px;
    gap: 15px;
  }
  .interview-card h3 {
    font-size: 17px;
  }
  .interview-portrait {
    width: 106px;
  }
  .feature-section {
    padding: 74px 0;
  }
  .feature-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .article-item {
    grid-template-columns: 1fr 104px;
    gap: 15px;
  }
  .article-image {
    width: 104px;
  }
  .article-copy h3 {
    font-size: 16px;
  }
  .article-copy > p:not(.article-kicker) {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .ielts-hero {
    height: 620px;
    min-height: 620px;
  }
  .ielts-hero-content {
    justify-content: end;
    padding-top: 80px;
    padding-bottom: 38px;
  }
  .ielts-hero-overlay {
    background: linear-gradient(
      0deg,
      rgba(16, 26, 24, 0.88),
      rgba(16, 26, 24, 0.24)
    );
  }
  .ielts-hero h1 {
    font-size: 37px;
  }
  .ielts-hero-subtitle {
    font-size: 17px;
  }
  .ielts-hero-copy {
    font-size: 13px;
  }
  .ielts-hero-actions {
    margin-top: 26px;
  }
  .ielts-news,
  .ielts-interviews,
  .ielts-skills,
  .ielts-faculty {
    padding-top: 74px;
    padding-bottom: 74px;
  }
  .ielts-skill-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }
  .ielts-skill-card {
    min-height: 0;
    padding: 23px 20px;
  }
  .ielts-skill-card h3 {
    margin: 11px 0 20px;
    font-size: 20px;
  }
  .ielts-tip-list a {
    grid-template-columns: 78px minmax(0, 1fr);
    font-size: 13px;
  }
  .ielts-faculty-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 32px;
  }
  .ielts-faculty-card {
    min-height: 230px;
  }
  .ielts-faculty-card > div {
    padding: 20px;
  }
  .ielts-faculty-card h3 {
    font-size: 19px;
  }
  .ielts-faculty-card span {
    font-size: 12px;
    line-height: 1.75;
  }
  .toefl-hero {
    height: 620px;
    min-height: 620px;
  }
  .toefl-hero-content,
  .speaking-hero-content {
    justify-content: end;
    padding-top: 80px;
    padding-bottom: 38px;
  }
  .toefl-hero-overlay,
  .speaking-hero-overlay {
    background: linear-gradient(
      0deg,
      rgba(16, 26, 24, 0.88),
      rgba(16, 26, 24, 0.24)
    );
  }
  .toefl-hero h1,
  .speaking-hero h1 {
    font-size: 37px;
  }
  .toefl-hero-subtitle,
  .speaking-hero-subtitle {
    font-size: 17px;
  }
  .toefl-hero-copy,
  .speaking-hero-copy {
    font-size: 13px;
  }
  .toefl-hero-actions,
  .speaking-hero-actions {
    margin-top: 26px;
  }
  .brand-subtitle {
    display: none;
  }
  .speaking-primary-button,
  .speaking-secondary-button {
    width: 100%;
    min-height: 46px;
  }
  .speaking-trust {
    gap: 7px 12px;
    margin-top: 30px;
    font-size: 10px;
  }
  .speaking-trust strong {
    font-size: 11px;
  }
  .speaking-pains,
  .speaking-difference,
  .speaking-stories,
  .speaking-final-cta {
    padding-top: 74px;
    padding-bottom: 74px;
  }
  .speaking-pain-grid,
  .speaking-story-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }
  .speaking-pain-card {
    min-height: 0;
    padding: 23px;
  }
  .speaking-pain-card h3 {
    margin-top: 24px;
    font-size: 19px;
  }
  .speaking-course,
  .speaking-course-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 74px;
    padding-bottom: 74px;
  }
  .speaking-course-image {
    min-height: 280px;
  }
  .speaking-course-copy {
    padding: 0;
  }
  .speaking-course-copy h2 {
    font-size: 25px;
  }
  .speaking-course-copy ul {
    margin-top: 22px;
    font-size: 13px;
  }
  .speaking-course-business .speaking-course-copy {
    order: 2;
  }
  .speaking-course-business .speaking-course-image {
    order: 1;
  }
  .speaking-compare-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }
  .speaking-compare-grid article {
    padding: 23px;
  }
  .speaking-vs {
    z-index: 1;
    margin: -34px auto;
  }
  .speaking-compare-grid ul {
    margin-top: 19px;
    font-size: 13px;
  }
  .speaking-difference-quote {
    font-size: 18px;
  }
  .speaking-story-grid article {
    min-height: 0;
    padding: 23px;
  }
  .assessment-qr {
    padding: 30px 22px 24px;
  }
  .footer-grid,
  .footer-bottom {
    flex-direction: column;
  }
  .footer-grid {
    gap: 38px;
    padding-bottom: 42px;
  }
  .footer-bottom {
    gap: 7px;
  }
  .customer-messages {
    height: 235px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
