/* Эльф — первая рабочая сборка. Палитра и сетка вынесены в переменные для быстрых правок. */
:root{
  --plum-950:#24101f;
  --plum-900:#321326;
  --plum-800:#4a1836;
  --plum-700:#612143;
  --rose:#c88396;
  --rose-soft:#ead3d9;
  --cream:#f7f1e8;
  --paper:#fffaf3;
  --ink:#2b2027;
  --muted:#756872;
  --line:rgba(74,24,54,.16);
  --radius-xl:34px;
  --radius-lg:24px;
  --radius-md:18px;
  --shadow:0 20px 60px rgba(47,18,37,.10);
  --container:min(1220px, calc(100% - 48px));
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:"Manrope",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button{font:inherit}
.container{width:var(--container);margin-inline:auto}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

.site-header{
  position:absolute;
  z-index:20;
  top:0;left:0;right:0;
  height:94px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:42px;
  padding:0 max(24px, calc((100% - 1220px)/2));
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.16);
}
.brand{display:inline-flex;flex-direction:column;line-height:1}
.brand__name{
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:38px;
  font-style:italic;
  font-weight:600;
  letter-spacing:-.03em;
}
.brand__caption{
  margin-top:3px;
  font-size:9px;
  text-transform:uppercase;
  letter-spacing:.21em;
  opacity:.76;
}
.nav{display:flex;justify-content:center;gap:28px;font-size:12px;text-transform:uppercase;letter-spacing:.08em}
.nav a{opacity:.84;transition:.2s}
.nav a:hover{opacity:1}
.header-cta{
  padding:12px 18px;
  border:1px solid rgba(255,255,255,.4);
  border-radius:999px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.06em;
  transition:.2s;
}
.header-cta:hover{background:#fff;color:var(--plum-900)}
.nav-toggle{display:none}

.hero{
  min-height:760px;
  height:92svh;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  isolation:isolate;
  color:#fff;
  background:var(--plum-950);
}
.hero__media{
  position:absolute;inset:0;z-index:-3;
  background-image:url("assets/images/hero.jpg");
  background-size:cover;
  background-position:center 48%;
}
.hero__media:after{
  content:"";
  position:absolute;inset:0;
  background:
    repeating-linear-gradient(90deg,rgba(255,255,255,.012) 0 1px,transparent 1px 78px),
    radial-gradient(circle at 76% 42%,rgba(255,255,255,.08),transparent 22%);
}
.hero__shade{
  position:absolute;inset:0;z-index:-2;
  background:linear-gradient(90deg,rgba(25,8,21,.91) 0%,rgba(35,11,29,.72) 38%,rgba(28,9,23,.28) 68%,rgba(18,6,15,.20) 100%);
}
.hero__content{padding-top:78px}
.eyebrow{
  margin:0 0 18px;
  color:var(--plum-700);
  text-transform:uppercase;
  font-size:11px;
  font-weight:600;
  letter-spacing:.22em;
}
.eyebrow--light{color:#e5c7d1}
.hero h1,.section-heading h2,.stub-section h2,.trial h2{margin:0;max-width:760px;font-family:"Cormorant Garamond",Georgia,serif;font-size:clamp(48px,5.7vw,74px);line-height:.98;font-weight:500;letter-spacing:-.035em;text-wrap:balance}
.hero h1{
  max-width:760px;
  margin:0;
  font-size:clamp(62px,7.6vw,112px);
  line-height:.84;
}
.hero h1 em{font-weight:500;color:#e2b3c1}
.hero__lead{
  max-width:520px;
  margin:34px 0 0;
  font-size:18px;
  color:rgba(255,255,255,.82);
}
.hero__actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:34px}
.button{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 24px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  transition:transform .2s,background .2s,color .2s,border-color .2s;
}
.button:hover{transform:translateY(-2px)}
.button--accent{background:#d79aac;color:#2b1021}
.button--ghost{border:1px solid rgba(255,255,255,.36);color:#fff}
.button--ghost:hover{background:rgba(255,255,255,.08)}
.button--dark{background:var(--plum-900);color:white}
.hero__side-note{
  position:absolute;
  right:max(24px,calc((100% - 1220px)/2));
  top:48%;
  display:flex;gap:18px;align-items:flex-start;
  color:rgba(255,255,255,.62);
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:21px;
  line-height:1.25;
}
.hero__line{width:1px;height:80px;background:rgba(255,255,255,.28)}
.hero__scroll{
  position:absolute;left:50%;bottom:26px;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:3px;
  font-size:9px;text-transform:uppercase;letter-spacing:.2em;color:rgba(255,255,255,.6)
}

.section{padding:112px 0}
.directions{background:var(--cream)}
.section-heading--center{text-align:center;max-width:780px;margin:0 auto 52px}
.section-heading h2{
  margin:0;
  color:var(--plum-900);
  font-size:clamp(46px,5vw,68px);
  line-height:1;
}
.section-heading p:last-child{max-width:640px;margin:20px auto 0;color:var(--muted)}

.directions-grid{
  display:grid;
  grid-template-columns:repeat(10,1fr);
  gap:20px;
}
.direction-card{
  grid-column:span 2;
  background:#fffaf6;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:0 12px 32px rgba(50,19,38,.05);
  transition:transform .25s,box-shadow .25s;
}
.direction-card:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.direction-card__photo{height:290px}
.photo-slot{
  position:relative;
  display:grid;
  place-items:end start;
  padding:18px;
  overflow:hidden;
  color:rgba(255,255,255,.82);
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.12em;
  background-size:cover;
  background-position:center;
}
.photo-slot:before{
  content:"";
  position:absolute;inset:12px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:14px;
}
.photo-slot--choreo{background-image:linear-gradient(180deg,transparent 50%,rgba(36,16,31,.68)),url("assets/images/direction-choreo.jpg");background-position:center 45%}
.photo-slot--classic{background-image:linear-gradient(180deg,transparent 50%,rgba(36,16,31,.68)),url("assets/images/direction-classic.jpg");background-position:center 38%}
.photo-slot--plastic{background-image:linear-gradient(180deg,transparent 50%,rgba(36,16,31,.68)),url("assets/images/direction-plastic.jpg");background-position:center 46%}
.photo-slot--theatre{background-image:linear-gradient(180deg,transparent 50%,rgba(36,16,31,.68)),url("assets/images/direction-theatre.jpg");background-position:center 38%}
.photo-slot--body{background-image:linear-gradient(180deg,transparent 50%,rgba(36,16,31,.68)),url("assets/images/direction-body.jpg");background-position:center 48%}
.direction-card__body{padding:24px 22px 26px}
.direction-card__age{
  margin:0 0 8px;color:var(--rose);
  font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.14em
}
.direction-card h3{
  margin:0;
  min-height:58px;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:28px;line-height:1.03;color:var(--plum-900)
}
.direction-card__body>p:not(.direction-card__age){font-size:13px;color:var(--muted);min-height:106px}
.direction-card__body a{font-size:12px;font-weight:600;color:var(--plum-700)}
.directions-note{
  margin:38px auto 0;
  width:max-content;max-width:100%;
  display:flex;align-items:center;gap:16px;
  padding:12px 22px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--plum-700);
  font-size:12px;
}
.dot{opacity:.4}


.performances{padding:110px 0 96px;background:var(--plum-950);color:#fff}
.performances__head{display:block;max-width:900px;margin-bottom:44px}
.performances__head h2{margin:0;max-width:900px;font-family:"Cormorant Garamond",Georgia,serif;font-size:clamp(48px,5.4vw,74px);font-weight:500;line-height:.98;letter-spacing:-.03em;text-wrap:balance}
.performances__head>p{margin:22px 0 0;max-width:720px;color:rgba(255,255,255,.70);font-size:16px;line-height:1.7}
.performances__layout{display:grid;grid-template-columns:1.45fr .75fr;gap:20px}
.performance-feature{position:relative;min-height:610px;border-radius:var(--radius-xl);overflow:hidden;background:#160914}
.performance-feature img,.performance-shot img{width:100%;height:100%;object-fit:cover;display:block}
.performance-feature img{position:absolute;inset:0;object-position:center 44%}
.performance-feature__shade{position:absolute;inset:0;background:linear-gradient(180deg,transparent 40%,rgba(20,7,17,.82) 100%)}
.performance-feature__caption{position:absolute;left:34px;right:34px;bottom:30px}
.performance-feature__caption span{font-size:10px;text-transform:uppercase;letter-spacing:.18em;color:#e4bcc8}
.performance-feature__caption h3{margin:6px 0 0;max-width:650px;font-family:"Cormorant Garamond",Georgia,serif;font-size:40px;line-height:1.02;font-weight:500;text-wrap:balance}
.performance-mosaic{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:1.12fr .88fr;gap:20px}
.performance-shot{margin:0;min-height:0;overflow:hidden;border-radius:var(--radius-lg);background:#160914}
.performance-shot--wide{grid-column:1/-1}
.performance-shot--wide img{object-position:center 40%}
.performance-shot:nth-child(2) img{object-position:center 42%}
.performance-shot:nth-child(3) img{object-position:center 24%}
.repertoire{display:grid;grid-template-columns:150px 1fr auto;gap:32px;align-items:start;margin-top:38px;padding-top:30px;border-top:1px solid rgba(255,255,255,.15)}
.repertoire__label{font-size:10px;text-transform:uppercase;letter-spacing:.18em;color:#d8aebe;padding-top:7px}
.repertoire__list{display:flex;flex-wrap:wrap;gap:10px 12px}
.repertoire__list span{padding:8px 13px;border:1px solid rgba(255,255,255,.17);border-radius:999px;font-family:"Cormorant Garamond",Georgia,serif;font-size:18px;color:rgba(255,255,255,.82)}
.repertoire__link{padding-top:5px;white-space:nowrap;font-size:12px;color:#e2b6c4}


.history{
  padding:116px 0 118px;
  background:var(--paper);
  color:var(--ink);
  overflow:hidden;
}
.history__intro{display:grid;grid-template-columns:.52fr 1.48fr;gap:36px;align-items:start}
.history__year{
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:clamp(108px,14vw,210px);
  line-height:.72;
  letter-spacing:-.07em;
  color:rgba(74,24,54,.08);
  user-select:none;
}
.history__copy{max-width:720px}
.history__copy h2{margin:0;max-width:620px;color:var(--plum-900);font-family:"Cormorant Garamond",Georgia,serif;font-size:clamp(44px,4.8vw,68px);font-weight:500;line-height:1.02;letter-spacing:-.03em;text-wrap:balance}
.history__lead{margin:18px 0 0;max-width:620px;color:var(--muted);font-size:15px;line-height:1.68}
.history__visual{
  position:relative;
  display:grid;
  grid-template-columns:1.4fr .6fr;
  grid-template-rows:280px 280px;
  gap:18px;
  margin-top:58px;
}
.history-photo{
  margin:0;
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-lg);
  background:#e6ddd6;
}
.history-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(.82) contrast(.96);
}
.history-photo--main{grid-row:1/3}
.history-photo--main img{object-position:center 47%}
.history-photo--one img{object-position:center 43%}
.history-photo--two img{object-position:center 48%}
.history-photo:after{
  content:"";
  position:absolute;inset:0;
  box-shadow:inset 0 0 0 1px rgba(48,20,37,.06);
  pointer-events:none;
}
.history-photo figcaption{
  position:absolute;
  left:20px;bottom:18px;
  padding:7px 11px;
  border-radius:999px;
  background:rgba(33,15,28,.72);
  color:#fff;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.14em;
  backdrop-filter:blur(8px);
}
.history__continuity{display:grid;grid-template-columns:.92fr 1.08fr;gap:68px;align-items:start;margin-top:84px;padding-top:70px;border-top:1px solid var(--line)}
.continuity__text{max-width:610px}
.continuity__text h3{margin:0;max-width:520px;color:var(--plum-900);font-family:"Cormorant Garamond",Georgia,serif;font-size:clamp(40px,4.3vw,56px);line-height:1.02;font-weight:500;letter-spacing:-.03em;text-wrap:balance}
.continuity__text p:not(.eyebrow){max-width:560px;color:var(--muted);font-size:15px;line-height:1.7}
.continuity__portraits{position:relative;width:100%;min-height:540px;max-width:560px;margin-left:auto}
.portrait-card{
  position:absolute;
  margin:0;
  overflow:hidden;
  border-radius:var(--radius-lg);
  background:#eee4df;
  box-shadow:var(--shadow);
}
.portrait-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.portrait-card figcaption{
  position:absolute;
  left:0;right:0;bottom:0;
  padding:46px 20px 18px;
  display:flex;
  flex-direction:column;
  gap:3px;
  background:linear-gradient(180deg,transparent,rgba(27,11,23,.82));
  color:#fff;
}
.portrait-card strong{
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:23px;
  line-height:1.05;
  font-weight:600;
}
.portrait-card span{
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:rgba(255,255,255,.72);
}
.portrait-card--founder{
  left:0;top:0;
  width:58%;
  height:480px;
  z-index:2;
}
.portrait-card--founder img{object-position:center 24%}
.portrait-card--current{
  right:0;bottom:0;
  width:52%;
  height:390px;
  z-index:3;
  border:7px solid var(--paper);
}
.portrait-card--current img{object-position:center 24%}


.teachers{
  padding:112px 0 118px;
  background:var(--plum-950);
  color:#fff;
}
.teachers__head{
  max-width:820px;
  margin-bottom:58px;
}
.teachers__head h2{
  margin:0;
  max-width:800px;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:clamp(50px,5.8vw,78px);
  line-height:.96;
  font-weight:500;
  letter-spacing:-.035em;
  text-wrap:balance;
}
.teachers__head>p:last-child{
  margin:24px 0 0;
  max-width:690px;
  color:rgba(255,255,255,.66);
  font-size:16px;
  line-height:1.72;
}
.teachers__list{
  border-top:1px solid rgba(255,255,255,.14);
}
.teacher-card{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:34px;
  align-items:center;
  min-height:210px;
  padding:26px 0;
  border-bottom:1px solid rgba(255,255,255,.14);
}
.teacher-card__portrait{
  width:150px;
  height:150px;
  overflow:hidden;
  border-radius:50%;
  background:#3d2033;
}
.teacher-card__portrait img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.teacher-card:nth-child(1) .teacher-card__portrait img{object-position:center 23%}
.teacher-card:nth-child(2) .teacher-card__portrait img{object-position:center 22%}
.teacher-card:nth-child(3) .teacher-card__portrait img{object-position:center 30%}
.teacher-card__content{
  position:relative;
  padding-right:70px;
}
.teacher-card__number{
  position:absolute;
  right:0;
  top:4px;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:42px;
  color:rgba(255,255,255,.16);
}
.teacher-card h3{
  margin:0;
  max-width:760px;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:clamp(32px,3.4vw,46px);
  line-height:1;
  font-weight:500;
  letter-spacing:-.025em;
}
.teacher-card p{
  margin:12px 0 0;
  color:#d9afbc;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
}


.gallery{
  padding:112px 0 118px;
  background:var(--cream);
  color:var(--ink);
}
.gallery__head{display:block;max-width:820px;margin-bottom:48px}
.gallery__head h2{margin:0;max-width:720px;color:var(--plum-900);font-family:"Cormorant Garamond",Georgia,serif;font-size:clamp(48px,5.2vw,70px);line-height:.98;font-weight:500;letter-spacing:-.03em;text-wrap:balance}
.gallery__head>p{margin:20px 0 0;max-width:680px;color:var(--muted);font-size:15px;line-height:1.68}
.gallery-grid{
  display:grid;
  grid-template-columns:1.18fr .82fr .82fr;
  grid-template-rows:260px 260px 260px;
  gap:18px;
}
.gallery-item{
  margin:0;
  overflow:hidden;
  border-radius:var(--radius-lg);
  background:#eaddd4;
  box-shadow:0 12px 36px rgba(50,19,38,.06);
}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}
.gallery-item:hover img{transform:scale(1.025)}
.gallery-item--hero{grid-row:1/3}
.gallery-item--wide{grid-column:2/4}
.gallery-item--hero img{object-position:center 44%}
.gallery-item--one img{object-position:center 46%}
.gallery-item--two img{object-position:center 38%}
.gallery-item--wide img{object-position:center 44%}
.gallery-item--three img{object-position:center 40%}
.gallery-item--four img{object-position:center 40%}

.stub-section{padding:110px 0;background:var(--paper)}
.stub-section--dark{background:var(--plum-950);color:white}
.stub-section--soft{background:#efe4e8}
.stub-section .container{max-width:900px}
.stub-section h2{font-size:clamp(44px,5vw,68px);line-height:1;margin:0 0 20px}
.stub-section--dark .eyebrow{color:#d9b0be}
.stub-section p:last-child{color:var(--muted);max-width:780px}
.stub-section--dark p:last-child{color:rgba(255,255,255,.68)}

.trial{
  padding:94px 0;
  background:#dfb4bf;
  color:var(--plum-900);
}
.trial__inner{display:grid;grid-template-columns:1.35fr .65fr;gap:76px;align-items:start}
.trial__copy{max-width:790px}
.trial h2{margin:0;max-width:760px;font-family:"Cormorant Garamond",Georgia,serif;font-size:clamp(48px,5.7vw,74px);line-height:.98;font-weight:500;letter-spacing:-.035em;text-wrap:balance}
.trial__lead{margin:24px 0 0;max-width:700px;font-size:16px;line-height:1.72;color:rgba(50,19,38,.78)}
.trial__benefit{
  margin:16px 0 0;
  max-width:700px;
  font-size:15px;
  line-height:1.72;
  color:rgba(50,19,38,.72);
}
.trial__note{
  margin:22px 0 0;
  max-width:680px;
  padding-left:16px;
  border-left:2px solid rgba(50,19,38,.24);
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:22px;
  line-height:1.25;
  color:var(--plum-900);
}

.trial__facts{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}
.trial__facts span{
  padding:9px 13px;
  border:1px solid rgba(50,19,38,.20);
  border-radius:999px;
  font-size:12px;
  color:rgba(50,19,38,.78);
}
.trial__action{
  padding-left:34px;
  border-left:1px solid rgba(50,19,38,.18);
}
.trial__action>p{
  margin:0 0 6px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:rgba(50,19,38,.58);
}
.trial__phone{
  display:block;
  margin-bottom:24px;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:32px;
  line-height:1;
}
.trial .button--dark{
  width:100%;
  max-width:310px;
}



.contacts{
  padding:110px 0;
  background:var(--plum-950);
  color:#fff;
}
.contacts__grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:stretch;
}
.contacts__copy{
  padding:18px 0;
  max-width:620px;
}
.contacts h2{
  margin:0;
  max-width:560px;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:clamp(52px,5.8vw,76px);
  line-height:.96;
  font-weight:500;
  letter-spacing:-.035em;
  text-wrap:balance;
}
.contacts__intro{
  margin:22px 0 0;
  max-width:560px;
  color:rgba(255,255,255,.66);
  font-size:15px;
  line-height:1.7;
}
.contacts__items{
  margin-top:42px;
  display:grid;
  gap:0;
  border-top:1px solid rgba(255,255,255,.14);
}
.contact-item{
  padding:22px 0;
  border-bottom:1px solid rgba(255,255,255,.14);
}
.contact-item span{
  display:block;
  margin-bottom:7px;
  color:#d8aebe;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.15em;
}
.contact-item strong,
.contact-item a{
  display:block;
  max-width:520px;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:25px;
  line-height:1.16;
  font-weight:500;
  color:#fff;
}
.contact-item a:hover{color:#e3bac6}
.button--contact{
  margin-top:30px;
  max-width:270px;
  background:#d79aac;
  color:#2b1021;
}
.contacts__photo{
  margin:0;
  min-height:620px;
  overflow:hidden;
  border-radius:var(--radius-xl);
  background:#160914;
}
.contacts__photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 48%;
  display:block;
}
.footer{
  padding:34px 0;
  background:#1a0916;
  color:rgba(255,255,255,.62);
}
.footer__bottom{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:28px;
}
.footer__brand{justify-self:start;color:#fff}
.footer__bottom p{
  margin:0;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.footer__bottom>a:last-child{
  justify-self:end;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
}

@media (max-width:1050px){
  .site-header{grid-template-columns:auto 1fr auto;gap:20px}
  .nav{gap:14px;font-size:10px}
  .directions-grid{grid-template-columns:repeat(2,1fr)}
  .direction-card{grid-column:auto}
  .direction-card:last-child{grid-column:1/-1;display:grid;grid-template-columns:1fr 1fr}
  .direction-card:last-child .direction-card__photo{height:auto;min-height:280px}
  .hero__side-note{display:none}
  .performances__head{max-width:900px;margin-bottom:44px}
  .performances__layout{grid-template-columns:1fr}
  .performance-mosaic{min-height:520px}
  .repertoire{grid-template-columns:120px 1fr}
  .repertoire__link{grid-column:2}
  .history__year{font-size:150px}
  .continuity__portraits{width:100%;max-width:520px}
  .contacts__grid{gap:48px}
}

@media (max-width:780px){
  :root{--container:min(100% - 30px,1220px)}
  .site-header{height:78px;padding-inline:15px;grid-template-columns:auto auto 1fr}
  .brand__name{font-size:32px}
  .brand__caption{font-size:7px}
  .header-cta{justify-self:end;font-size:10px;padding:9px 12px}
  .nav-toggle{
    display:flex;flex-direction:column;gap:6px;
    background:none;border:0;padding:10px;color:white;cursor:pointer
  }
  .nav-toggle span:not(.sr-only){display:block;width:20px;height:1px;background:currentColor;transition:transform .2s}
  .nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(3.5px) rotate(45deg)}
  .nav-toggle[aria-expanded="true"] span:nth-child(2){transform:translateY(-3.5px) rotate(-45deg)}
  .nav{
    display:none;position:absolute;top:78px;left:0;right:0;
    padding:24px 18px 30px;flex-direction:column;align-items:flex-start;gap:18px;
    background:rgba(30,13,26,.98);font-size:12px
  }
  .nav.is-open{display:flex}
  .hero{height:auto;min-height:700px}
  .hero__media{background-position:58% center}
  .hero__content{padding-top:90px}
  .hero h1{font-size:clamp(56px,17vw,82px)}
  .hero__lead{font-size:16px}
  .section{padding:78px 0}
  .section-heading--center{text-align:left;margin-bottom:34px}
  .section-heading p:last-child{margin-left:0}
  .directions-grid{grid-template-columns:1fr}
  .direction-card,.direction-card:last-child{display:block;grid-column:auto}
  .direction-card__photo,.direction-card:last-child .direction-card__photo{height:260px;min-height:0}
  .direction-card h3{min-height:0}
  .direction-card__body>p:not(.direction-card__age){min-height:0}
  .directions-note{width:100%;justify-content:center;flex-wrap:wrap;text-align:center;border-radius:20px}

  .performances{padding:78px 0 68px}
  .performances__layout{gap:14px}
  .performance-feature{min-height:520px}
  .performance-mosaic{grid-template-columns:1fr 1fr;gap:14px;min-height:460px}
  .performance-feature__caption{left:22px;right:22px;bottom:22px}
  .performance-feature__caption h3{font-size:40px;line-height:1.02}
  .repertoire{grid-template-columns:1fr;gap:14px}
  .repertoire__link{grid-column:auto}

  .history{padding:82px 0}
  .history__year{font-size:118px}
  .history__visual{grid-template-columns:1fr 1fr;grid-template-rows:390px 220px;gap:12px}
  .history-photo--main{grid-column:1/-1;grid-row:auto}
  .history__continuity{grid-template-columns:1fr;gap:42px;margin-top:70px;padding-top:58px}
  .continuity__text{max-width:620px}
  .continuity__text h3,.continuity__text p:not(.eyebrow){max-width:620px}
  .continuity__portraits{width:100%;max-width:560px;margin:0;min-height:500px}
  .portrait-card--founder{width:62%;height:430px}
  .portrait-card--founder figcaption{right:auto;width:70%;padding-right:8px}
  .portrait-card--current{width:54%;height:340px}

  .teachers{padding:82px 0}
  .teachers__head{margin-bottom:42px}
  .teacher-card{grid-template-columns:112px 1fr;gap:22px;min-height:170px;padding:22px 0}
  .teacher-card__portrait{width:96px;height:96px}
  .teacher-card__number{font-size:30px}
  .teacher-card h3{font-size:32px;max-width:520px}

  .gallery{padding:82px 0}
  .gallery__head{max-width:760px;margin-bottom:34px}
  .gallery-grid{grid-template-columns:1fr 1fr;grid-template-rows:250px 170px 170px 190px;gap:12px}
  .gallery-item--hero{grid-column:1/-1;grid-row:auto}
  .gallery-item--wide{grid-column:1/-1}

  .trial{padding:78px 0}
  .trial__inner{grid-template-columns:1fr;gap:40px}
  .trial__copy{max-width:760px}
  .trial__action{padding-left:0;padding-top:28px;border-left:0;border-top:1px solid rgba(50,19,38,.18)}
  .trial .button--dark{max-width:320px}

  .contacts{padding:82px 0}
  .contacts__grid{gap:34px}
  .contacts__photo{min-height:500px}
  .footer__bottom{grid-template-columns:1fr auto}
  .footer__bottom p{display:none}
}

@media (max-width:620px){
  .header-cta{display:none}
  .site-header{grid-template-columns:1fr auto}
  .nav-toggle{justify-self:end}

  .history__intro{grid-template-columns:1fr;gap:14px}
  .history__year{font-size:94px;line-height:.78}
  .history__copy{max-width:none}
  .history__copy h2{font-size:42px;max-width:100%}
  .history__lead{font-size:14px;line-height:1.62;max-width:100%}

  .contacts__grid{grid-template-columns:1fr;gap:38px}
  .contacts__copy{max-width:none;padding:0}
  .contacts__photo{min-height:380px}
  .button--contact{max-width:280px}
}

@media (max-width:480px){
  .hero__actions{flex-direction:column;align-items:stretch}
  .button{width:100%}

  .performances__head h2{font-size:42px}
  .performances__head>p{font-size:15px;line-height:1.6}
  .performance-feature__caption h3{font-size:31px}

  .history__year{font-size:86px}
  .history__visual{grid-template-columns:1fr;grid-template-rows:340px 210px 210px}
  .history-photo--main{grid-column:auto}
  .continuity__text h3{font-size:36px;max-width:100%}
  .continuity__text p:not(.eyebrow){font-size:14px;line-height:1.62;max-width:100%}
  .continuity__portraits{min-height:460px;max-width:100%}
  .portrait-card--founder{width:72%;height:360px}
  .portrait-card--current{width:62%;height:280px}
  .portrait-card strong{font-size:19px}

  .teachers__head h2{font-size:40px;line-height:1}
  .teachers__head>p:last-child{font-size:14px;line-height:1.62}
  .teacher-card{grid-template-columns:76px 1fr;gap:16px}
  .teacher-card__portrait{width:70px;height:70px}
  .teacher-card__content{padding-right:0}
  .teacher-card__number{display:none}
  .teacher-card h3{font-size:26px;line-height:1.02}
  .teacher-card p{font-size:10px;line-height:1.5;letter-spacing:.08em}

  .gallery__head h2{font-size:38px;line-height:1.02;max-width:100%}
  .gallery__head>p{font-size:14px;line-height:1.62;max-width:100%}
  .gallery-grid{grid-template-columns:1fr;grid-template-rows:220px repeat(5,160px)}
  .gallery-item--hero,.gallery-item--wide{grid-column:auto}

  .trial{padding:72px 0}
  .trial h2{font-size:40px;line-height:1.02}
  .trial__lead,.trial__benefit{font-size:14px;line-height:1.62}
  .trial__note{font-size:20px;line-height:1.25}
  .trial__facts{display:grid;grid-template-columns:1fr}
  .trial__facts span{border-radius:16px}
  .trial__phone{font-size:28px}
  .trial .button--dark{max-width:none}

  .contacts h2{font-size:40px;line-height:1}
  .contacts__intro{font-size:14px;line-height:1.62}
  .contact-item strong,.contact-item a{font-size:22px}
  .contacts__photo{min-height:300px;border-radius:20px}
  .button--contact{max-width:none;width:100%}

  .footer__bottom{grid-template-columns:1fr;gap:18px}
  .footer__bottom>a:last-child{justify-self:start}
}

@media (max-width:360px){
  .portrait-card strong{font-size:17px}
}
