:root {
  --black: #070705;
  --charcoal: #11100d;
  --ink: #171511;
  --cream: #f4ecdf;
  --cream-deep: #e9dcc8;
  --white: #f7f3ed;
  --gold: #bc8a4d;
  --gold-light: #dfba78;
  --gold-pale: #efd8ad;
  --line-dark: rgba(34, 29, 22, 0.18);
  --line-light: rgba(225, 187, 123, 0.24);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--sans);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--gold-pale);
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.academy-shell,
main {
  min-width: 0;
}

main {
  overflow: hidden;
}

.section-kicker {
  margin: 0;
  color: var(--gold-light);
  font-size: clamp(9px, 0.78vw, 12px);
  font-weight: 600;
  letter-spacing: 0.25em;
  line-height: 1.5;
  text-transform: uppercase;
}

.gold-rule {
  width: clamp(84px, 8vw, 128px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale), transparent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 25px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-gold {
  color: #17120d;
  background: linear-gradient(120deg, #d8ad69, #f0d59f);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: #f2d9a6;
}

.button-outline {
  color: var(--white);
  border-color: rgba(235, 211, 170, 0.44);
  background: rgba(255, 255, 255, 0.02);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--gold-pale);
  border-color: var(--gold-light);
  background: rgba(206, 163, 98, 0.08);
}

.academy-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  align-items: stretch;
  min-height: max(760px, 100svh);
  padding-top: 86px;
  isolation: isolate;
  background:
    radial-gradient(circle at 10% 12%, rgba(184, 132, 75, 0.2), transparent 28%),
    linear-gradient(115deg, #14110d 0%, #090907 56%, #050504 100%);
}

.academy-hero::before {
  position: absolute;
  z-index: -1;
  inset: 86px 48% 0 auto;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(226, 187, 123, 0.42), transparent);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 90px clamp(42px, 7.4vw, 122px) 76px;
}

.hero-copy h1 {
  display: flex;
  flex-direction: column;
  margin: 22px 0 24px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(72px, 7.7vw, 132px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.67;
}

.hero-copy h1 span {
  margin-left: -0.05em;
}

.hero-copy h1 em {
  margin-left: clamp(28px, 5.2vw, 84px);
  color: var(--gold-light);
  font-weight: 400;
}

.hero-copy h1 strong {
  margin-top: 31px;
  color: rgba(247, 243, 237, 0.78);
  font-family: var(--sans);
  font-size: clamp(10px, 1.02vw, 16px);
  font-weight: 500;
  letter-spacing: 0.31em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-summary {
  max-width: 590px;
  margin: 27px 0 0;
  color: rgba(247, 243, 237, 0.72);
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 29px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  min-height: 670px;
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 5, 0.58), transparent 22%),
    linear-gradient(180deg, rgba(5, 5, 4, 0.14), transparent 55%, rgba(5, 5, 4, 0.55));
  content: "";
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
  object-position: 51% center;
}

.hero-image-label {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 30px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 247, 237, 0.82);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-image-label::before {
  flex: 1;
  height: 1px;
  background: rgba(240, 213, 164, 0.52);
  content: "";
}

.hero-index {
  position: absolute;
  z-index: 3;
  bottom: 31px;
  left: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(235, 211, 170, 0.55);
  font-family: var(--serif);
  font-size: 12px;
}

.hero-index i {
  width: 34px;
  height: 1px;
  background: rgba(235, 211, 170, 0.36);
}

.hero-monogram {
  position: absolute;
  z-index: 0;
  top: 43%;
  left: -0.04em;
  margin: 0;
  color: rgba(218, 178, 115, 0.035);
  font-family: var(--serif);
  font-size: clamp(140px, 21vw, 370px);
  line-height: 0.6;
  pointer-events: none;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
}

.artistry-section {
  position: relative;
  padding: clamp(100px, 10vw, 170px) clamp(24px, 6vw, 96px) clamp(92px, 9vw, 150px);
  color: var(--ink);
  background:
    radial-gradient(circle at 94% 4%, rgba(172, 123, 61, 0.14), transparent 24%),
    var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.65fr);
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  max-width: 1380px;
  margin: 0 auto 65px;
}

.artistry-section .section-kicker,
.masterclass-section .section-kicker,
.intensive-section .section-kicker {
  color: #9d6a32;
}

.section-heading h2,
.method-copy h2,
.masterclass-intro h2,
.curriculum-heading h2,
.intensive-copy h2,
.faq-heading h2,
.cta-content h2 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 98px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.section-heading h2 em,
.method-copy h2 em,
.masterclass-intro h2 em,
.curriculum-heading h2 em,
.intensive-copy h2 em,
.faq-heading h2 em,
.cta-content h2 em {
  color: var(--gold);
  font-weight: 400;
}

.section-heading > p {
  max-width: 590px;
  margin: 0;
  color: rgba(23, 21, 17, 0.72);
  font-family: var(--serif);
  font-size: clamp(21px, 1.7vw, 28px);
  line-height: 1.5;
}

.artistry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1380px;
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.artistry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 42px clamp(24px, 2.5vw, 40px) 34px;
  border-right: 1px solid var(--line-dark);
  transition: background-color 240ms ease, transform 240ms ease;
}

.artistry-card:first-child {
  border-left: 1px solid var(--line-dark);
}

.artistry-card:hover {
  background: rgba(188, 138, 77, 0.08);
  transform: translateY(-6px);
}

.artistry-card .card-number {
  color: rgba(85, 62, 35, 0.58);
  font-family: var(--serif);
  font-size: 15px;
}

.artistry-card > svg {
  width: 38px;
  height: 38px;
  margin-top: 58px;
  color: #9c6d38;
  stroke-width: 1.2;
}

.artistry-card h3 {
  margin: 24px 0 13px;
  font-family: var(--serif);
  font-size: clamp(32px, 2.6vw, 43px);
  font-weight: 500;
  line-height: 1;
}

.artistry-card p {
  margin: 0;
  color: rgba(23, 21, 17, 0.68);
  font-size: 12px;
  line-height: 1.75;
}

.artistry-card .card-meta {
  margin-top: auto;
  padding-top: 25px;
  color: #8d5f2d;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.artistry-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  max-width: 1380px;
  margin: 28px auto 0;
}

.artistry-note p {
  margin: 0;
  color: rgba(23, 21, 17, 0.55);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.artistry-note a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #6f481f;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.artistry-note a svg {
  width: 15px;
  height: 15px;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 56%) minmax(0, 44%);
  min-height: 890px;
  background:
    radial-gradient(circle at 82% 20%, rgba(172, 119, 59, 0.2), transparent 24%),
    #0b0a08;
}

.method-gallery {
  position: relative;
  min-height: 890px;
  overflow: hidden;
}

.method-image {
  position: absolute;
  margin: 0;
  overflow: hidden;
}

.method-image img {
  height: 100%;
  object-fit: cover;
}

.method-image-main {
  inset: 0 24% 0 0;
}

.method-image-main::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 58%, rgba(11, 10, 8, 0.86));
  content: "";
}

.method-image-detail {
  right: 4%;
  bottom: 7%;
  width: 40%;
  aspect-ratio: 1 / 1;
  border: 8px solid #0b0a08;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.38);
}

.method-seal {
  position: absolute;
  z-index: 2;
  top: 11%;
  right: 11%;
  display: grid;
  place-items: center;
  width: 114px;
  aspect-ratio: 1;
  border: 1px solid rgba(226, 187, 123, 0.55);
  border-radius: 50%;
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-align: center;
}

.method-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(38px, 6vw, 105px) 90px clamp(38px, 5vw, 86px);
}

.method-copy h2 {
  margin-top: 16px;
  color: var(--cream);
}

.method-copy .gold-rule {
  margin: 30px 0;
}

.method-copy > p {
  max-width: 570px;
  margin: 0;
  color: rgba(247, 243, 237, 0.67);
  font-family: var(--serif);
  font-size: clamp(20px, 1.55vw, 27px);
  line-height: 1.55;
}

.method-list {
  margin: 45px 0 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 17px;
  padding: 17px 0;
  border-top: 1px solid var(--line-light);
  color: rgba(247, 243, 237, 0.75);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.method-list li:last-child {
  border-bottom: 1px solid var(--line-light);
}

.method-list span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 15px;
}

.masterclass-section {
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  min-height: 900px;
  color: var(--ink);
  background: var(--cream-deep);
}

.masterclass-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(100px, 10vw, 165px) clamp(40px, 8vw, 130px);
}

.masterclass-intro h2 {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.masterclass-intro h2 span {
  font-size: 0.88em;
}

.masterclass-intro h2 em {
  margin-left: clamp(20px, 4vw, 68px);
}

.masterclass-intro > p {
  max-width: 660px;
  margin: 35px 0 0;
  color: rgba(23, 21, 17, 0.72);
  font-family: var(--serif);
  font-size: clamp(21px, 1.7vw, 29px);
  line-height: 1.55;
}

.masterclass-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 36px;
}

.masterclass-tags span {
  padding: 11px 14px;
  border: 1px solid rgba(89, 60, 26, 0.25);
  color: #795127;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.masterclass-media {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.masterclass-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7, 7, 5, 0.72));
  content: "";
}

.masterclass-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.masterclass-caption {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 4vw, 60px);
  bottom: 40px;
  left: clamp(24px, 4vw, 60px);
  color: #fff8ee;
}

.masterclass-caption span {
  color: var(--gold-pale);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.masterclass-caption p {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 32px);
}

.curriculum-section {
  padding: clamp(100px, 10vw, 165px) clamp(24px, 6vw, 96px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    #090907;
  background-size: 48px 48px;
}

.curriculum-heading {
  max-width: 1380px;
  margin: 0 auto 64px;
}

.curriculum-heading h2 {
  color: var(--cream);
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1380px;
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.curriculum-card {
  position: relative;
  min-height: 300px;
  padding: 32px clamp(22px, 2.2vw, 36px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.012);
  transition: background-color 220ms ease;
}

.curriculum-card:hover {
  background: rgba(194, 143, 76, 0.08);
}

.curriculum-card > span {
  color: rgba(223, 186, 120, 0.65);
  font-family: var(--serif);
  font-size: 15px;
}

.curriculum-card h3 {
  margin: 70px 0 16px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 500;
  line-height: 1.08;
}

.curriculum-card p {
  margin: 0;
  color: rgba(247, 243, 237, 0.57);
  font-size: 11px;
  line-height: 1.7;
}

.intensive-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(480px, 1.1fr);
  gap: clamp(60px, 8vw, 140px);
  padding: clamp(100px, 10vw, 165px) clamp(24px, 8vw, 130px);
  color: var(--ink);
  background:
    radial-gradient(circle at 4% 90%, rgba(187, 138, 76, 0.15), transparent 28%),
    var(--cream);
}

.intensive-copy {
  align-self: start;
  position: sticky;
  top: 120px;
}

.intensive-copy h2 {
  margin-top: 16px;
}

.intensive-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.intensive-steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 26px;
  padding: 33px 0;
  border-top: 1px solid var(--line-dark);
}

.intensive-steps li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.intensive-steps > li > span {
  color: #96652f;
  font-family: var(--serif);
  font-size: 19px;
}

.intensive-steps h3 {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: clamp(31px, 2.6vw, 43px);
  font-weight: 500;
  line-height: 1;
}

.intensive-steps p {
  max-width: 650px;
  margin: 0;
  color: rgba(23, 21, 17, 0.67);
  font-size: 12px;
  line-height: 1.75;
}

.academy-faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(420px, 1fr);
  gap: clamp(60px, 10vw, 170px);
  padding: clamp(100px, 10vw, 165px) clamp(24px, 8vw, 130px);
  background:
    radial-gradient(circle at 88% 8%, rgba(175, 124, 62, 0.17), transparent 26%),
    #0a0907;
}

.faq-heading h2 {
  margin-top: 16px;
  color: var(--cream);
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
  color: rgba(247, 243, 237, 0.88);
  font-family: var(--serif);
  font-size: clamp(22px, 1.8vw, 29px);
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--gold-light);
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 760px;
  margin: -6px 50px 28px 0;
  color: rgba(247, 243, 237, 0.6);
  font-size: 12px;
  line-height: 1.8;
}

.academy-cta {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 700px;
  padding: 110px 24px;
  color: var(--ink);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at center, rgba(255, 245, 222, 0.62), transparent 42%),
    linear-gradient(130deg, #ae793f, #e6c18a 46%, #bc8247);
}

.academy-cta::before,
.academy-cta::after {
  position: absolute;
  z-index: -1;
  width: 430px;
  aspect-ratio: 1;
  border: 1px solid rgba(57, 38, 18, 0.16);
  border-radius: 50%;
  content: "";
}

.academy-cta::before {
  top: -205px;
  left: -120px;
}

.academy-cta::after {
  right: -115px;
  bottom: -220px;
}

.cta-ornament {
  position: absolute;
  z-index: -1;
  color: rgba(66, 42, 17, 0.055);
  font-family: var(--serif);
  font-size: clamp(220px, 34vw, 600px);
  line-height: 1;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 970px;
}

.cta-content .section-kicker {
  color: #69451f;
}

.cta-content h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 18px;
}

.cta-content h2 span {
  font-size: 0.58em;
}

.cta-content h2 em {
  color: #69451f;
}

.cta-content > p {
  max-width: 680px;
  margin: 27px 0 31px;
  color: rgba(23, 21, 17, 0.72);
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.5;
}

.button-dark {
  gap: 12px;
  color: #fff8ed;
  background: #16120d;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #281d12;
}

.button-dark svg {
  width: 15px;
  height: 15px;
}

.cta-content address {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: rgba(23, 21, 17, 0.64);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cta-content address svg {
  width: 14px;
  height: 14px;
}

.site-footer {
  color: rgba(247, 243, 237, 0.7);
  background: #050504;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(230px, 1.2fr) repeat(3, minmax(160px, 0.72fr));
  gap: clamp(38px, 5vw, 85px);
  padding: 78px clamp(24px, 6vw, 96px) 62px;
  border-bottom: 1px solid rgba(222, 181, 116, 0.14);
}

.footer-brand img {
  width: min(220px, 100%);
}

.footer-brand p,
.footer-connect p {
  max-width: 330px;
  margin: 24px 0 0;
  color: rgba(247, 243, 237, 0.5);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
}

.footer-column h2 {
  margin: 0 0 24px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-nav a,
.footer-nav span {
  color: rgba(247, 243, 237, 0.59);
  font-size: 10px;
  line-height: 1.4;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-nav span[aria-current="page"] {
  color: var(--gold-pale);
}

.footer-visit address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(247, 243, 237, 0.58);
  font-size: 10px;
  font-style: normal;
  line-height: 1.5;
}

.footer-book-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--gold-pale);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-book-link svg {
  width: 14px;
  height: 14px;
}

.footer-socials {
  display: flex;
  gap: 11px;
  margin-top: 25px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border: 1px solid rgba(222, 181, 116, 0.25);
  color: rgba(247, 243, 237, 0.68);
  text-decoration: none;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--gold-pale);
  border-color: rgba(222, 181, 116, 0.58);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 22px clamp(24px, 6vw, 96px);
}

.footer-bottom p {
  margin: 0;
  color: rgba(247, 243, 237, 0.34);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease var(--reveal-delay, 0ms), transform 680ms ease var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .academy-hero {
    grid-template-columns: minmax(0, 56%) minmax(0, 44%);
  }

  .hero-copy {
    padding-right: 45px;
    padding-left: 48px;
  }

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

  .artistry-card:nth-child(2) {
    border-right: 1px solid var(--line-dark);
  }

  .artistry-card:nth-child(3) {
    border-left: 1px solid var(--line-dark);
  }

  .method-section {
    grid-template-columns: 52% 48%;
  }

  .footer-main {
    grid-template-columns: 1.15fr repeat(3, minmax(130px, 0.72fr));
    gap: 35px;
  }
}

@media (max-width: 900px) {
  .academy-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .academy-hero::before,
  .hero-index,
  .hero-monogram {
    display: none;
  }

  .hero-copy {
    min-height: 690px;
    padding: 140px 42px 70px;
  }

  .hero-copy h1 {
    font-size: clamp(68px, 13vw, 105px);
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .method-section,
  .masterclass-section {
    grid-template-columns: 1fr;
  }

  .method-gallery {
    min-height: 720px;
  }

  .method-copy {
    min-height: 700px;
  }

  .masterclass-intro {
    min-height: 720px;
  }

  .masterclass-media {
    min-height: 820px;
  }

  .intensive-section,
  .academy-faq {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .intensive-copy {
    position: static;
  }

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

@media (max-width: 600px) {
  .button {
    width: 100%;
  }

  .hero-copy {
    min-height: 640px;
    padding: 132px 22px 56px;
  }

  .hero-copy h1 {
    margin-top: 20px;
    font-size: clamp(61px, 21vw, 82px);
    line-height: 0.7;
  }

  .hero-copy h1 em {
    margin-left: 24px;
  }

  .hero-copy h1 strong {
    margin-top: 27px;
    font-size: 9px;
  }

  .hero-summary {
    font-size: 19px;
  }

  .hero-actions {
    width: 100%;
  }

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

  .hero-image-label {
    right: 18px;
    bottom: 21px;
    left: 18px;
    font-size: 7px;
    letter-spacing: 0.14em;
  }

  .artistry-section,
  .curriculum-section,
  .intensive-section,
  .academy-faq {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section-heading h2,
  .method-copy h2,
  .masterclass-intro h2,
  .curriculum-heading h2,
  .intensive-copy h2,
  .faq-heading h2,
  .cta-content h2 {
    font-size: clamp(47px, 15vw, 66px);
  }

  .artistry-grid,
  .curriculum-grid {
    grid-template-columns: 1fr;
  }

  .artistry-card,
  .artistry-card:first-child,
  .artistry-card:nth-child(3) {
    min-height: 360px;
    border-right: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
  }

  .artistry-card > svg {
    margin-top: 38px;
  }

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

  .method-gallery {
    min-height: 590px;
  }

  .method-image-main {
    right: 15%;
  }

  .method-image-detail {
    right: 4%;
    bottom: 5%;
    width: 43%;
    border-width: 5px;
  }

  .method-seal {
    top: 7%;
    right: 5%;
    width: 82px;
    font-size: 10px;
  }

  .method-copy {
    min-height: auto;
    padding: 90px 22px;
  }

  .masterclass-intro {
    min-height: auto;
    padding: 94px 22px;
  }

  .masterclass-intro h2 em {
    margin-left: 15px;
  }

  .masterclass-media {
    min-height: 620px;
  }

  .curriculum-card {
    min-height: 260px;
  }

  .curriculum-card h3 {
    margin-top: 50px;
  }

  .intensive-steps li {
    grid-template-columns: 42px 1fr;
    gap: 15px;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 21px;
  }

  .faq-list details > p {
    margin-right: 20px;
  }

  .academy-cta {
    min-height: 660px;
    padding: 90px 20px;
  }

  .cta-content h2 span {
    font-size: 0.64em;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 62px 24px 52px;
  }

  .footer-brand img {
    margin: 0 auto;
  }

  .footer-brand,
  .footer-column {
    text-align: center;
  }

  .footer-brand p,
  .footer-connect p {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-nav,
  .footer-visit address,
  .footer-socials {
    align-items: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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