:root {
  --ink: #27131f;
  --plum: #421f35;
  --plum-2: #6e3655;
  --rose: #d78aa8;
  --blush: #f8ecef;
  --cream: #fffaf6;
  --gold: #b78d53;
  --white: #ffffff;
  --muted: #705f68;
  --line: rgba(66, 31, 53, 0.13);
  --shadow: 0 24px 70px rgba(66, 31, 53, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
a { color: inherit; }
section { scroll-margin-top: 18px; }

.site-header {
  width: min(1160px, calc(100% - 40px));
  height: 84px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 8;
  top: 0;
  left: 50%;
  color: var(--white);
  transform: translateX(-50%);
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  color: var(--cream); background: var(--plum); border-radius: 50%;
  font-family: Georgia, serif; font-size: 15px; letter-spacing: .06em;
}
.brand > span:last-child { display: flex; flex-direction: column; line-height: 1; }
.brand strong { font-family: Georgia, serif; font-size: 22px; font-weight: 500; }
.brand small { margin-top: 5px; color: var(--muted); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { font-size: 14px; font-weight: 650; text-decoration: none; }
.nav-cta { padding: 11px 18px; color: var(--white); background: var(--plum); border-radius: 999px; }
.site-header .brand-mark { color: var(--plum); background: #f3c7d7; }
.site-header .brand small { color: rgba(255,255,255,.58); }
.site-header nav a { color: rgba(255,255,255,.82); }
.site-header .admin-login { padding: 9px 14px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; }
.site-header .admin-login:hover { color: var(--white); background: rgba(255,255,255,.1); }
.site-header .nav-cta { color: var(--plum); background: var(--cream); box-shadow: 0 9px 25px rgba(0,0,0,.18); }

.hero {
  min-height: 900px;
  width: 100%;
  margin: 0;
  padding: 140px max(20px, calc((100vw - 1160px) / 2)) 80px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 72px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 28%, rgba(190,111,146,.3), transparent 27%),
    radial-gradient(circle at 4% 92%, rgba(141,64,99,.28), transparent 30%),
    linear-gradient(135deg, #25121f 0%, #421f35 50%, #291521 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .16; pointer-events: none; background-image: radial-gradient(rgba(255,255,255,.5) .6px, transparent .6px); background-size: 18px 18px; mask-image: linear-gradient(to right, black, transparent 42%); }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 19px; color: var(--plum-2); font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.status-dot { width: 7px; height: 7px; margin-right: 7px; display: inline-block; background: #5f915d; border-radius: 50%; box-shadow: 0 0 0 4px rgba(95,145,93,.12); }
.hero h1, .section-heading h2, .academy-info h2, .modal-card h2 {
  margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; line-height: .98;
}
.hero h1 { max-width: 650px; font-size: clamp(60px, 6vw, 88px); letter-spacing: -.048em; }
.hero h1 em { color: #efb8cc; font-weight: 400; }
.hero .eyebrow { color: #efbfd0; }
.hero .status-dot { background: #f2c7d6; box-shadow: 0 0 0 4px rgba(242,199,214,.13); }
.hero-text { max-width: 570px; margin: 27px 0 31px; color: rgba(255,255,255,.67); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.button {
  min-height: 49px; padding: 0 21px; border: 1px solid transparent; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  cursor: pointer; text-decoration: none; font-size: 14px; font-weight: 750; transition: .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: var(--white); background: var(--plum); box-shadow: 0 10px 25px rgba(66, 31, 53, .16); }
.button.primary:hover { background: #522841; }
.button.diploma-button { color: #27131f; background: #f3c7d7; border-color: rgba(255,255,255,.3); box-shadow: 0 10px 25px rgba(0,0,0,.16); }
.button.diploma-button:hover { background: #ffe8f0; }
.hero .student-download-action { display: flex; width: 100%; margin-bottom: 28px; padding: 14px 18px; min-height: 52px; font-size: 16px; line-height: 1.4; text-align: center; white-space: normal; }
.button.secondary { color: var(--plum); background: transparent; border-color: rgba(66, 31, 53, .28); }
.hero .button.primary { color: var(--plum); background: #f5d7e2; box-shadow: 0 12px 34px rgba(10,3,8,.25); }
.hero .button.primary:hover { background: var(--white); }
.hero .button.secondary { color: var(--white); border-color: rgba(255,255,255,.36); }
.trust-row { margin-top: 36px; display: flex; flex-wrap: wrap; align-items: center; gap: 11px; color: rgba(255,255,255,.52); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.trust-row i { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.salon-text-link { margin: 20px 0 0; padding: 0; border: 0; color: rgba(255,255,255,.48); background: transparent; cursor: pointer; font-size: 12px; }
.salon-text-link span { color: #efbfd0; font-weight: 750; text-decoration: underline; text-underline-offset: 4px; }

.hero-art { position: relative; z-index: 2; min-height: 585px; }
.hero-art::before { content: ""; position: absolute; z-index: -1; width: 92%; height: 82%; right: -7%; top: 8%; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.hero-art::after { content: ""; position: absolute; z-index: -2; width: 84%; height: 55%; right: 0; bottom: -2%; border-radius: 50%; background: rgba(224,145,177,.28); filter: blur(55px); }
.bridal-hero-frame { position: absolute; z-index: 1; top: 0; right: 4%; width: 72%; height: 565px; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.34); border-radius: 210px 210px 25px 25px; background: #c3809c; box-shadow: 0 30px 80px rgba(9,3,7,.42); animation: bridalRise .9s cubic-bezier(.2,.7,.2,1) both; }
.bridal-hero-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(29,10,22,.88), transparent 48%); pointer-events: none; }
.bridal-hero-frame img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 35%; animation: luxuryZoom 13s ease-in-out infinite alternate; }
.bridal-hero-frame figcaption { position: absolute; z-index: 2; left: 30%; right: 22px; bottom: 26px; display: flex; flex-direction: column; }
.bridal-hero-frame figcaption span { color: #f1bbcf; font-size: 8px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.bridal-hero-frame figcaption strong { margin-top: 7px; font-family: Georgia, serif; font-size: 25px; font-weight: 400; line-height: 1.05; }
.bridal-hero-frame figcaption small { margin-top: 8px; color: rgba(255,255,255,.62); font-size: 9px; }
.arch-card {
  position: absolute; z-index: 4; left: -1%; bottom: 2%; width: 44%; height: 205px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--cream); text-align: center; background: linear-gradient(155deg, #5c2c48, #2d1725); border: 3px solid #3b1b30; border-radius: 95px 95px 16px 16px; box-shadow: 0 18px 50px rgba(5,1,4,.42); overflow: hidden;
}
.arch-card::after { content: ""; position: absolute; z-index: 2; inset: 7px; border: 1px solid rgba(255,255,255,.28); border-radius: 88px 88px 10px 10px; pointer-events: none; }
.arch-card video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.video-shade { position: absolute; z-index: 1; inset: 0; background: linear-gradient(to bottom, rgba(42,20,34,.1) 40%, rgba(35,16,28,.78) 100%); pointer-events: none; }
.arch-label { position: absolute; z-index: 3; top: 19px; padding: 7px 10px; background: rgba(42,20,34,.7); backdrop-filter: blur(8px); border-radius: 999px; font-size: 7px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.arch-card p { position: absolute; z-index: 3; bottom: 19px; left: 18px; margin: 0; font-family: Georgia, serif; font-size: 12px; font-style: italic; text-shadow: 0 2px 10px rgba(0,0,0,.45); }
.video-control { position: absolute; z-index: 4; right: 17px; bottom: 13px; width: 29px; height: 29px; display: grid; place-items: center; color: var(--white); background: rgba(42,20,34,.65); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; cursor: pointer; font-size: 9px; }
.floating-pill { position: absolute; z-index: 2; padding: 10px 16px; color: var(--plum); background: rgba(255,250,246,.94); border: 1px solid rgba(66,31,53,.1); border-radius: 999px; box-shadow: 0 10px 35px rgba(66,31,53,.13); font-family: Georgia, serif; font-size: 14px; }
.pill-one { top: 20%; left: -9%; }.pill-two { top: 28%; right: -2%; }.pill-three { top: 55%; left: -7%; }.pill-four { right: 1%; bottom: 7%; }
.spark { position: absolute; z-index: 3; color: #f6ccdb; font-size: 18px; }.spark-one { top: 8%; right: 12%; }.spark-two { bottom: 13%; left: 23%; }
.hero-seal { position: absolute; z-index: 3; top: 5%; left: 7%; width: 84px; height: 84px; display: flex; align-items: center; justify-content: center; gap: 6px; color: var(--plum); background: #f2c5d5; border: 6px solid rgba(255,255,255,.12); outline: 1px solid #f2c5d5; border-radius: 50%; box-shadow: 0 12px 30px rgba(9,3,7,.25); }
.hero-seal strong { font-family: Georgia, serif; font-size: 19px; font-style: italic; font-weight: 500; }.hero-seal span { font-size: 6px; font-weight: 800; line-height: 1.25; letter-spacing: .08em; text-transform: uppercase; }

.academy-achievements { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.academy-achievements > div { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 32px 14px; text-align: center; border: 1px solid rgba(203,167,107,.45); border-radius: 18px; background: linear-gradient(145deg, rgba(239,210,155,.10), rgba(255,255,255,.025)); box-shadow: inset 0 1px 0 rgba(239,210,155,.12); }
.academy-achievements strong { color: #efd29b; font-size: clamp(30px, 4vw, 46px); line-height: 1.1; font-weight: 750; }
.academy-achievements span { color: #fffaf6; font-size: 16px; line-height: 1.4; }
@media (max-width: 700px) { .academy-achievements { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } }
.academy-community { grid-column: 1 / -1; min-width: 0; border-top: 1px solid rgba(255,255,255,.22); padding-top: 36px; }
.academy-community-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: end; margin-bottom: 24px; }
.academy-community-heading h2 { margin: 0; font: 400 clamp(32px, 4vw, 48px)/1.12 Georgia, serif; }
.academy-community-heading > p { margin: 0; color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.7; }
.academy-community-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.academy-community-photos figure { margin: 0; overflow: hidden; border-radius: 18px; background: #fffaf6; color: #421f35; }
.academy-community-photos figure { border: 2px solid #cba76b; box-shadow: 0 0 14px rgba(203,167,107,.14); }
.academy-community-photos figure.community-entered { animation: community-arrive .8s ease both, community-gold 6s ease-in-out .8s 3; }
.academy-community-action .button { border: 1px solid #cba76b; }
.academy-community-action.community-entered .button { animation: community-gold 5s ease-in-out 3; }
@keyframes community-arrive { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes community-gold { 0%, 100% { box-shadow: 0 0 10px rgba(203,167,107,.12); border-color: #b78d53; } 50% { box-shadow: 0 0 24px rgba(231,194,128,.36); border-color: #efd29b; } }
.academy-map { max-width: 1160px; margin: 0 auto; padding: 60px 20px; }
.academy-map h2 { margin: 0 0 12px; font: 400 clamp(30px,4vw,44px)/1.15 Georgia,serif; }
.academy-map p { font-size: 16px; line-height: 1.6; }
.academy-map iframe { display: block; width: 100%; height: 360px; border: 1px solid var(--line); border-radius: 18px; margin: 22px 0; }
.academy-map-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.academy-community-photos img { display: block; width: 100%; height: auto; }
.academy-community-photos figcaption { padding: 14px 18px; font-size: 16px; font-weight: 650; }
.academy-community-action { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-top: 24px; }
.academy-community-action strong { font-size: 22px; }
.academy-community-action p { margin: 6px 0 0; font-size: 16px; color: rgba(255,255,255,.8); }
@media (max-width: 700px) {
  .academy-community-heading, .academy-community-photos { grid-template-columns: 1fr; }
  .academy-community-action .button { width: 100%; min-height: 52px; }
}
.hero-highlights { grid-column: 1 / -1; margin-top: 25px; display: grid; grid-template-columns: 1.12fr repeat(4, .72fr); gap: 10px; }
.highlight-intro, .hero-highlights figure { min-height: 218px; margin: 0; border-radius: 15px; overflow: hidden; }
.highlight-intro { padding: 25px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; color: var(--white); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); }
.highlight-intro span { margin-bottom: auto; color: #e7b4c8; font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.highlight-intro strong { max-width: 220px; font-family: Georgia, serif; font-size: 28px; font-weight: 400; line-height: 1.03; }
.highlight-intro small { margin-top: 12px; color: rgba(255,255,255,.58); font-size: 9px; line-height: 1.5; }
.hero-highlights figure { position: relative; background: var(--blush); border: 1px solid rgba(255,255,255,.17); }
.hero-highlights figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(32,13,25,.76), transparent 42%); pointer-events: none; }
.hero-highlights img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 28%; transition: transform .45s ease; }
.hero-highlights figure:hover img { transform: scale(1.035); }
.hero-highlights figcaption { position: absolute; z-index: 1; left: 15px; right: 15px; bottom: 14px; color: var(--white); font-family: Georgia, serif; font-size: 14px; }

@keyframes bridalRise { from { opacity: 0; transform: translateY(24px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes luxuryZoom { from { transform: scale(1); } to { transform: scale(1.045); } }

.courses-section { padding: 100px max(20px, calc((100vw - 1160px) / 2)); background: var(--white); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 38px; }
.section-heading h2, .academy-info h2 { font-size: clamp(40px, 4.8vw, 63px); letter-spacing: -.035em; }
.section-heading > p { max-width: 390px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.course-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 18px; }
.course-tab { padding: 18px; display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 14px; color: var(--ink); background: var(--white); text-align: left; cursor: pointer; transition: .22s ease; }
.course-tab:hover { border-color: rgba(66,31,53,.35); transform: translateY(-2px); }
.course-tab.active { color: var(--white); background: var(--plum); border-color: var(--plum); box-shadow: 0 12px 28px rgba(66,31,53,.15); }
.course-tab > span:last-child { display: flex; flex-direction: column; gap: 4px; }
.course-tab strong { font-family: Georgia, serif; font-size: 17px; font-weight: 500; }
.course-tab small { color: var(--muted); font-size: 10px; }.course-tab.active small { color: rgba(255,255,255,.65); }
.course-icon { flex: 0 0 auto; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: Georgia, serif; font-style: italic; }
.course-panel { min-height: 440px; display: grid; grid-template-columns: .9fr 1.1fr; background: var(--blush); border-radius: 24px; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(66,31,53,.04); }
.course-summary { padding: 58px; display: flex; flex-direction: column; align-items: flex-start; background: radial-gradient(circle at 0 0, rgba(255,255,255,.9), transparent 55%); }
.course-number { margin: 0 0 auto; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.course-kicker { margin: 38px 0 10px; color: var(--plum-2); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.course-summary h3 { margin: 0; max-width: 400px; font-family: Georgia, serif; font-size: clamp(34px, 3.3vw, 50px); font-weight: 400; line-height: 1.04; letter-spacing: -.025em; }
.course-summary > p:nth-of-type(3) { max-width: 470px; margin: 20px 0 28px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.curriculum-card { margin: 24px; padding: 39px 42px; align-self: stretch; background: var(--white); border-radius: 17px; box-shadow: 0 16px 50px rgba(66,31,53,.08); }
.curriculum-label { margin: 0 0 20px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.curriculum-card ul { margin: 0; padding: 0; list-style: none; }
.curriculum-card li { min-height: 54px; display: flex; align-items: center; gap: 15px; border-bottom: 1px solid var(--line); font-family: Georgia, serif; font-size: 16px; }
.curriculum-card li:last-child { border-bottom: 0; }
.curriculum-card li span { color: var(--gold); font-family: Inter, sans-serif; font-size: 9px; font-weight: 800; letter-spacing: .12em; }

.local-seo-block { margin-top: 82px; padding: 54px 58px; display: grid; grid-template-columns: .82fr 1.18fr; gap: 68px; align-items: start; background: var(--blush); border: 1px solid rgba(66,31,53,.08); border-radius: 24px; }
.local-seo-block h3 { max-width: 440px; margin: 0; font-family: Georgia, serif; font-size: clamp(34px, 3.5vw, 50px); font-weight: 400; line-height: 1.04; letter-spacing: -.03em; }
.local-seo-copy p { margin: 0 0 18px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.local-links { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.local-links a { min-height: 44px; padding: 0 17px; display: inline-flex; align-items: center; gap: 9px; color: var(--plum); background: var(--white); border: 1px solid rgba(66,31,53,.15); border-radius: 999px; text-decoration: none; font-size: 14px; font-weight: 750; transition: .2s ease; }
.local-links a:hover { border-color: var(--plum-2); transform: translateY(-2px); }
.local-course-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.local-course-grid article { padding: 22px 20px; background: var(--white); border: 1px solid rgba(66,31,53,.09); border-radius: 14px; }
.local-course-grid article > span { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.local-course-grid h4 { margin: 22px 0 10px; font-family: Georgia, serif; font-size: 19px; font-weight: 500; line-height: 1.15; }
.local-course-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.why-block { margin-top: 82px; padding: 62px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; color: var(--white); background: linear-gradient(135deg, #3b1b30, #5a2945); border-radius: 24px; }
.why-intro h3, .faq-heading h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(33px, 3vw, 48px); font-weight: 400; line-height: 1.06; letter-spacing: -.025em; }
.why-intro > p:last-child { margin: 20px 0 0; color: rgba(255,255,255,.63); font-size: 14px; line-height: 1.7; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.benefit-grid article { padding: 28px 23px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.11); border-radius: 15px; }
.benefit-grid article > span { color: #e9b8ca; font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.benefit-grid h4 { margin: 35px 0 12px; font-family: Georgia, serif; font-size: 19px; font-weight: 500; line-height: 1.15; }
.benefit-grid p { margin: 0; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.6; }
.why-block .eyebrow { color: #e9b8ca; }

.faq-block { margin: 82px 0 8px; display: grid; grid-template-columns: .65fr 1.35fr; gap: 72px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { padding: 0; border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; list-style: none; font-family: Georgia, serif; font-size: 18px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; flex: 0 0 auto; width: 28px; height: 28px; display: grid; place-items: center; color: var(--plum-2); border: 1px solid var(--line); border-radius: 50%; font-family: Inter, sans-serif; font-size: 16px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -4px 48px 22px 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.enquiry-section { display: grid; grid-template-columns: .88fr 1.12fr; background: var(--plum); }
.academy-info { padding: 100px max(42px, calc((100vw - 1160px) / 2)) 100px max(42px, calc((100vw - 1160px) / 2)); color: var(--white); }
.eyebrow.light { color: #eebbd0; }
.academy-info h2 { max-width: 510px; }
.academy-info > p:nth-of-type(2) { max-width: 510px; margin: 24px 0 36px; color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.7; }
.info-list { display: grid; gap: 20px; }
.info-list > div { display: flex; align-items: flex-start; gap: 15px; }
.info-list > div > span { flex: 0 0 auto; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: #f1c4d5; }
.info-list p { display: flex; flex-direction: column; margin: 0; }
.info-list strong { margin-bottom: 4px; font-family: Georgia, serif; font-size: 17px; font-weight: 500; }
.info-list small { color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.5; }
.contact-actions { margin-top: 31px; display: flex; flex-wrap: wrap; gap: 9px 18px; }
.phone-link { display: inline-block; color: #f5cfdd; font-size: 13px; font-weight: 750; text-underline-offset: 4px; }
.phone-link.alt { color: rgba(255,255,255,.68); }
.service-chips { margin-top: 25px; display: flex; flex-wrap: wrap; gap: 7px; }
.service-chips span { padding: 7px 10px; color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.15); border-radius: 999px; font-size: 10px; }
.salon-switch { margin-top: 18px; padding: 0; border: 0; color: #f1bfd2; background: transparent; cursor: pointer; font-size: 12px; font-weight: 750; text-decoration: underline; text-underline-offset: 4px; }
.form-card { margin: 52px max(42px, calc((100vw - 1160px) / 2)) 52px 0; padding: 36px; background: var(--cream); border-radius: 22px; }
.form-heading { margin-bottom: 29px; padding-bottom: 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.form-heading span { font-family: Georgia, serif; font-size: 25px; }
.form-heading small { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
form { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.field { display: flex; flex-direction: column; gap: 8px; }.field.full { grid-column: 1 / -1; }
.purpose-picker { grid-column: 1 / -1; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; border: 0; }
.purpose-picker legend { margin: 0 0 8px; padding: 0; color: var(--ink); font-size: 12px; font-weight: 750; }
.purpose-picker label { position: relative; cursor: pointer; }
.purpose-picker input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.purpose-picker label > span { min-height: 43px; padding: 0 13px; display: flex; align-items: center; justify-content: center; color: var(--muted); background: var(--white); border: 1px solid var(--line); border-radius: 10px; font-size: 11px; font-weight: 750; transition: .2s ease; }
.purpose-picker input:checked + span { color: var(--white); background: var(--plum); border-color: var(--plum); box-shadow: 0 7px 18px rgba(66,31,53,.13); }
.purpose-picker input:focus-visible + span { outline: 3px solid rgba(110,54,85,.2); outline-offset: 2px; }
label { color: var(--ink); font-size: 12px; font-weight: 750; } label span { color: var(--muted); font-weight: 500; }
input, select, textarea { width: 100%; border: 1px solid rgba(66,31,53,.16); border-radius: 11px; outline: 0; color: var(--ink); background: var(--white); transition: border .2s, box-shadow .2s; }
input, select { height: 49px; padding: 0 14px; } textarea { min-height: 88px; padding: 13px 14px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--plum-2); box-shadow: 0 0 0 3px rgba(110,54,85,.09); }
input.invalid, select.invalid { border-color: #a62e44; }
.phone-input { display: grid; grid-template-columns: auto 1fr; align-items: center; border: 1px solid rgba(66,31,53,.16); border-radius: 11px; background: var(--white); overflow: hidden; }
.phone-input:focus-within { border-color: var(--plum-2); box-shadow: 0 0 0 3px rgba(110,54,85,.09); }
.phone-input > span { padding: 0 13px; color: var(--muted); border-right: 1px solid var(--line); font-size: 13px; }
.phone-input input { border: 0; border-radius: 0; box-shadow: none !important; }
.error { min-height: 13px; color: #a62e44; font-size: 10px; }
.form-submit { grid-column: 1 / -1; width: 100%; border-radius: 11px; }
.privacy-note { grid-column: 1 / -1; margin: -4px 0 0; color: var(--muted); text-align: center; font-size: 10px; }.privacy-note span { color: #5d8a5e; }

footer { min-height: 92px; padding: 48px max(20px, calc((100vw - 1160px) / 2)) 24px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px; color: #d0bac5; background: radial-gradient(ellipse at top, #38212e, #21131c 70%); font-size: 14px; }
footer .academy-achievements { flex-basis: 100%; min-width: 0; }
footer .footer-branches { flex-basis: 100%; min-width: 0; }
footer .footer-branches h2 { margin: 0 0 24px; color: #efd29b; font-family: Georgia, serif; font-size: 30px; text-align: center; }
footer .footer-branch-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
footer .footer-branch { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 28px 20px 20px; border: 1px solid rgba(203,167,107,.4); border-radius: 18px; background: rgba(255,255,255,.025); text-align: center; }
footer .main-branch { border-color: #cba76b; background: linear-gradient(145deg, rgba(203,167,107,.12), rgba(255,255,255,.025)); }
footer .branch-badge { display: inline-block; margin-bottom: 14px; padding: 5px 12px; border-radius: 999px; background: #efd29b; color: #21131c; font-size: 14px; font-weight: 700; }
footer .footer-branch h3 { margin: 0 0 10px; color: #efd29b; font-family: Georgia, serif; font-size: 24px; }
footer .footer-branch address { font-size: 16px; font-style: normal; line-height: 1.6; }
footer .footer-branch a { display: inline-flex; align-items: center; min-height: 44px; margin-top: 10px; font-size: 16px; font-weight: 700; }
@media (max-width: 700px) { footer .footer-branch-grid { grid-template-columns: 1fr; gap: 14px; } }
footer p { margin: 0; } footer a { color: #e8c4d2; text-decoration: none; }
footer > div { display: flex; flex-direction: column; gap: 5px; } footer strong { color: #ecd6df; font-family: Georgia, serif; font-size: 15px; font-weight: 500; } footer div span { font-size: 9px; }
.footer-links { align-items: flex-end; }
.footer-admin { padding: 6px 11px; border: 1px solid rgba(232,196,210,.3); border-radius: 999px; font-weight: 750; }
footer .footer-brand { gap: 8px; }
footer .footer-brand strong { font-size: 26px; line-height: 1.2; }
footer .footer-brand span { font-size: 14px; line-height: 1.5; }
footer .footer-links { display: flex; flex-direction: row; align-items: center; flex-wrap: wrap; gap: 8px 20px; }
footer .footer-links a, footer .footer-bottom a { display: inline-flex; min-height: 44px; align-items: center; }
footer a:hover { color: #fff4dd; text-decoration: underline; text-underline-offset: 5px; }
footer a:focus-visible { outline: 2px solid #efd29b; outline-offset: 5px; }
footer .footer-bottom { flex-basis: 100%; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 20px; border-top: 1px solid rgba(232,196,210,.18); padding-top: 16px; }
footer .footer-bottom span { font-size: inherit; }
footer .footer-socials { display: flex; flex-wrap: wrap; gap: 12px; flex-basis: 100%; }
footer .footer-socials a { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 10px 18px; border: 1px solid rgba(203,167,107,.4); border-radius: 999px; font-size: 16px; line-height: 1.5; background: rgba(255,255,255,.025); }
footer .footer-socials a:hover { background: rgba(203,167,107,.12); border-color: #efd29b; }
footer .footer-socials svg { width: 22px; height: 22px; flex-shrink: 0; }
@media (max-width: 560px) { footer .footer-socials { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; } footer .footer-socials a { padding: 10px 8px; } }
.mobile-admission-cta { display: none; }

.admission-modal[hidden] { display: none; }
.admission-modal { position: fixed; z-index: 40; inset: 0; padding: 24px; display: grid; place-items: center; }
.admission-backdrop { position: absolute; inset: 0; background: rgba(25,12,20,.78); backdrop-filter: blur(8px); }
.admission-dialog { position: relative; z-index: 1; width: min(980px, 100%); max-height: calc(100vh - 48px); overflow: auto; padding: 38px; background: var(--cream); border-radius: 23px; box-shadow: 0 34px 110px rgba(0,0,0,.38); }
.admission-close { position: absolute; z-index: 3; top: 16px; right: 17px; width: 38px; height: 38px; display: grid; place-items: center; border: 0; border-radius: 50%; color: var(--muted); background: rgba(255,255,255,.75); cursor: pointer; font-size: 27px; }
.admission-close:hover { color: var(--plum); background: var(--white); }
.admission-heading { padding-right: 46px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.admission-heading h2 { margin: 0; font-family: Georgia, serif; font-size: 48px; font-weight: 400; line-height: 1; letter-spacing: -.035em; }
.admission-heading .eyebrow { margin-bottom: 10px; }
.admission-heading > span { padding: 8px 11px; color: var(--plum-2); background: var(--blush); border-radius: 999px; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.admission-help { max-width: 670px; margin: 16px 0 29px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.admission-form { display: grid; grid-template-columns: 165px 1fr; gap: 25px; }
.photo-field { display: flex; flex-direction: column; }
#adm-photo { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.photo-picker { width: 100%; aspect-ratio: 3 / 4; display: grid; place-items: center; overflow: hidden; border: 1px dashed rgba(66,31,53,.28); border-radius: 14px; color: var(--muted); background: var(--white); cursor: pointer; text-align: center; }
.photo-picker:focus-within, .photo-picker:hover { border-color: var(--plum-2); background: var(--blush); }
.photo-picker img { width: 100%; height: 100%; object-fit: cover; }
#photo-placeholder { padding: 14px; display: flex; flex-direction: column; align-items: center; color: var(--muted); font-size: 10px; line-height: 1.5; }
#photo-placeholder strong { width: 35px; height: 35px; margin-bottom: 12px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--plum); font-size: 20px; font-weight: 400; }
#photo-placeholder small { margin-top: 6px; color: #9a8991; font-size: 8px; }
.admission-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.admission-fields .field.full { grid-column: 1 / -1; }
.admission-fields .field { gap: 6px; }
.admission-fields .error { min-height: 9px; }
.declaration-check { grid-column: 1 / -1; padding: 15px; display: flex; align-items: flex-start; gap: 11px; color: var(--muted); background: var(--white); border: 1px solid var(--line); border-radius: 11px; cursor: pointer; font-size: 11px; line-height: 1.55; }
.declaration-check input { flex: 0 0 auto; width: 17px; height: 17px; margin: 1px 0 0; padding: 0; accent-color: var(--plum); }
.declaration-check span { color: var(--muted); font-weight: 550; }
.declaration-error { grid-column: 1 / -1; margin-top: -17px; }
.admission-form-actions { grid-column: 1 / -1; display: flex; justify-content: flex-end; gap: 9px; }
.admission-review { min-width: 260px; border-radius: 11px; }
.admission-form .privacy-note { grid-column: 1 / -1; }

#admission-application { position: relative; padding: 34px; overflow: hidden; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 15px; }
.application-header { padding-bottom: 20px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-bottom: 2px solid var(--plum); }
.application-brand { display: flex; align-items: center; gap: 12px; }
.application-brand > div { display: flex; flex-direction: column; gap: 5px; }
.application-brand strong { font-family: Georgia, serif; font-size: 22px; font-weight: 500; }
.application-brand small, .application-contact span { color: var(--muted); font-size: 9px; }
.application-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; text-align: right; }
.application-contact strong { color: var(--plum); font-size: 11px; letter-spacing: .13em; }
.application-meta { margin: 18px 0 23px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 18px; color: var(--muted); font-size: 9px; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.application-meta span:first-child { color: var(--plum-2); }
.application-main { display: grid; grid-template-columns: 1fr 126px; gap: 24px; }
.application-details { display: grid; grid-template-columns: 1fr 1fr; gap: 17px 25px; }
.application-details > div, .application-bottom-grid > div { min-width: 0; padding-bottom: 9px; border-bottom: 1px solid var(--line); }
.application-details .wide { grid-column: 1 / -1; }
.application-details small, .application-bottom-grid small { display: block; margin-bottom: 6px; color: var(--muted); font-size: 8px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.application-details strong, .application-bottom-grid strong { display: block; overflow-wrap: anywhere; font-family: Georgia, serif; font-size: 14px; font-weight: 500; line-height: 1.4; }
.application-photo { aspect-ratio: 3 / 4; display: grid; place-items: center; overflow: hidden; color: #a18d97; background: var(--blush); border: 1px solid var(--line); border-radius: 8px; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.application-photo img { width: 100%; height: 100%; object-fit: cover; }
.course-choice { margin: 25px 0; padding: 18px 20px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; color: var(--white); background: var(--plum); border-radius: 10px; }
.course-choice span { color: #e7b4c8; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.course-choice strong { font-family: Georgia, serif; font-size: 18px; font-weight: 500; }
.course-choice small { color: rgba(255,255,255,.65); font-size: 9px; }
.application-bottom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.application-declaration { margin: 25px 0 33px; padding: 13px 15px; color: var(--muted); background: var(--cream); border-radius: 8px; font-size: 9px; line-height: 1.6; }
.signature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.signature-row span { padding-top: 27px; color: var(--muted); border-top: 1px solid rgba(66,31,53,.35); text-align: center; font-size: 8px; }
.office-use { margin-top: 38px; padding: 16px; border: 1px dashed rgba(66,31,53,.28); border-radius: 8px; }
.office-use > strong { display: block; margin-bottom: 18px; color: var(--plum); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.office-use > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.office-use span { min-height: 31px; padding-top: 21px; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 8px; }
.draft-stamp { position: absolute; right: 22px; bottom: 15px; color: rgba(142,46,76,.35); font-size: 9px; font-weight: 900; letter-spacing: .14em; transform: rotate(-4deg); }
.admission-actions { margin-top: 17px; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; }
#admission-status { text-align: right; }

.modal[hidden] { display: none; }
.modal { position: fixed; z-index: 30; inset: 0; display: grid; place-items: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(25,12,20,.72); backdrop-filter: blur(6px); }
.modal-card { position: relative; z-index: 1; width: min(560px, 100%); max-height: calc(100vh - 40px); overflow: auto; padding: 35px; background: var(--cream); border-radius: 21px; box-shadow: 0 30px 100px rgba(0,0,0,.3); }
.modal-close { position: absolute; top: 14px; right: 15px; width: 35px; height: 35px; display: grid; place-items: center; color: var(--muted); background: transparent; border: 0; border-radius: 50%; cursor: pointer; font-size: 25px; }
.modal-close:hover { background: var(--blush); }
.modal-card h2 { font-size: 38px; }
.modal-help { color: var(--muted); font-size: 13px; line-height: 1.6; }
#message-preview { margin: 21px 0; padding: 18px; white-space: pre-wrap; overflow-wrap: anywhere; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 12px; font-family: inherit; font-size: 13px; line-height: 1.7; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 9px; }.copy-status { min-height: 18px; margin: 12px 0 0; color: #4c754d; font-size: 12px; }
body.modal-open { overflow: hidden; }

.reveal { animation: rise .7s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; } }

@media (max-width: 880px) {
  .hero { min-height: auto; width: 100%; grid-template-columns: 1fr; gap: 48px; padding: 120px max(20px, calc((100vw - 720px) / 2)) 74px; }
  .hero-copy { text-align: center; }.hero h1, .hero-text { margin-left: auto; margin-right: auto; }.hero-actions, .trust-row { justify-content: center; }
  .hero-art { min-height: 570px; max-width: 600px; width: 100%; margin: 0 auto; }
  .hero-highlights { grid-template-columns: repeat(2, 1fr); }.highlight-intro { grid-column: 1 / -1; min-height: 155px; }.highlight-intro span { margin-bottom: 27px; }.highlight-intro strong { max-width: 410px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 15px; }
  .course-tabs { grid-template-columns: 1fr 1fr; }
  .course-panel { grid-template-columns: 1fr; }
  .course-summary { min-height: 380px; }
  .local-seo-block { grid-template-columns: 1fr; gap: 28px; }.local-course-grid { grid-template-columns: 1fr 1fr; }
  .why-block { grid-template-columns: 1fr; gap: 37px; padding: 48px; }
  .faq-block { grid-template-columns: 1fr; gap: 28px; }
  .enquiry-section { grid-template-columns: 1fr; }
  .academy-info { padding-right: 42px; }
  .form-card { margin-left: 42px; }
  .admission-form { grid-template-columns: 135px 1fr; }
}

@media (max-width: 560px) {
  .site-header { width: calc(100% - 28px); height: 72px; }
  .brand strong { font-size: 19px; }.brand-mark { width: 37px; height: 37px; }
  nav { gap: 6px; }
  nav > a:not(.nav-cta):not(.admin-login) { display: none; }
  .site-header .admin-login { padding: 8px 10px; font-size: 10px; }
  .nav-cta { padding: 9px 12px; font-size: 10px; }
  .hero { width: 100%; padding: 106px 16px 62px; gap: 38px; }
  .hero-copy { text-align: left; }.hero h1, .hero-text { margin-left: 0; margin-right: 0; }.hero h1 { font-size: 51px; }.hero-text { margin-top: 21px; font-size: 15px; line-height: 1.65; }
  .hero-actions { flex-direction: column; }.hero-actions .button { width: 100%; }
  .salon-text-link { max-width: 270px; margin-top: 18px; line-height: 1.6; }
  .trust-row { margin-top: 27px; justify-content: flex-start; font-size: 9px; gap: 8px; }
  .hero-art { min-height: 500px; max-width: 100%; }.hero-art::before { width: 93%; height: 78%; right: -9%; top: 9%; }.bridal-hero-frame { width: 80%; height: 465px; right: 0; border-radius: 150px 150px 20px 20px; }.bridal-hero-frame figcaption { left: 20px; right: 20px; bottom: 20px; }.bridal-hero-frame figcaption strong { font-size: 22px; }.arch-card { left: 0; bottom: 0; width: 48%; height: 170px; border-radius: 78px 78px 13px 13px; }.arch-card::after { border-radius: 72px 72px 8px 8px; }.arch-label { top: 15px; padding: 6px 8px; font-size: 6px; }.arch-card p { left: 13px; bottom: 15px; max-width: 78px; font-size: 10px; text-align: left; }.video-control { right: 12px; bottom: 10px; }
  .hero-seal { top: 5%; left: 0; width: 67px; height: 67px; border-width: 4px; }.hero-seal strong { font-size: 16px; }.hero-seal span { font-size: 5px; }
  .floating-pill { padding: 8px 12px; font-size: 11px; }.pill-one { top: 16%; left: -1%; }.pill-two { top: 29%; right: -2px; }.pill-three, .pill-four { display: none; }
  .hero-highlights { margin-top: 15px; gap: 8px; text-align: left; }.highlight-intro { min-height: 145px; padding: 22px; }.highlight-intro strong { font-size: 26px; }.hero-highlights figure { min-height: 235px; }.hero-highlights figcaption { left: 12px; bottom: 11px; font-size: 13px; }
  .courses-section { padding-top: 72px; padding-bottom: 72px; }
  .section-heading h2, .academy-info h2 { font-size: 42px; }.section-heading > p { font-size: 14px; }
  .course-tabs { gap: 7px; }.course-tab { min-height: 67px; padding: 11px; gap: 9px; }.course-icon { width: 30px; height: 30px; }.course-tab strong { font-size: 15px; }.course-tab small { font-size: 9px; }
  .course-panel { border-radius: 18px; }.course-summary { min-height: 340px; padding: 34px 25px; }.course-summary h3 { font-size: 39px; }.course-summary > p:nth-of-type(3) { font-size: 14px; }.curriculum-card { margin: 11px; padding: 28px 20px; }.curriculum-card li { min-height: 58px; font-size: 15px; }
  .local-seo-block { margin-top: 58px; padding: 34px 23px; gap: 22px; border-radius: 18px; }.local-seo-block h3 { font-size: 38px; }.local-seo-copy p { font-size: 15px; }.local-links { flex-direction: column; }.local-links a { justify-content: center; }.local-course-grid { grid-template-columns: 1fr; }.local-course-grid article { padding: 20px 18px; }.local-course-grid h4 { margin-top: 17px; }
  .why-block { margin-top: 58px; padding: 35px 23px; border-radius: 18px; }.benefit-grid { grid-template-columns: 1fr; }.benefit-grid article { padding: 22px; }.benefit-grid h4 { margin-top: 19px; }.faq-block { margin-top: 58px; }.faq-list summary { font-size: 16px; }
  .academy-info { padding: 72px 24px; }.form-card { margin: 0; padding: 30px 20px 40px; border-radius: 0; }.form-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  form { grid-template-columns: 1fr; }.field { grid-column: 1 / -1; }.purpose-picker { grid-template-columns: 1fr; }.modal-card { padding: 32px 21px 25px; }.modal-card h2 { font-size: 33px; }.modal-actions { flex-direction: column; }.modal-actions .button { width: 100%; }
  footer { min-height: 155px; padding: 27px 20px 85px; flex-wrap: wrap; } footer > p { display: none; }.footer-links { align-items: flex-end; }
  .mobile-admission-cta { position: fixed; z-index: 20; left: 14px; right: 14px; bottom: 12px; min-height: 50px; padding: 0 19px; display: flex; align-items: center; justify-content: space-between; color: var(--white); background: var(--plum); border: 1px solid rgba(255,255,255,.18); border-radius: 14px; box-shadow: 0 12px 35px rgba(35,14,27,.32); text-decoration: none; font-size: 13px; font-weight: 800; }
  .admission-modal { padding: 0; align-items: stretch; }.admission-dialog { width: 100%; max-height: 100vh; padding: 30px 18px 40px; border-radius: 0; }.admission-heading { align-items: flex-start; flex-direction: column; gap: 12px; }.admission-heading h2 { font-size: 42px; }.admission-heading > span { order: -1; }.admission-help { font-size: 12px; }.admission-form { grid-template-columns: 1fr; }.photo-field { width: 128px; margin: 0 auto; }.admission-fields { grid-template-columns: 1fr; }.admission-fields .field { grid-column: 1 / -1; }.declaration-check, .declaration-error, .admission-form-actions, .admission-form .privacy-note { grid-column: 1; }.admission-form-actions { flex-direction: column-reverse; }.admission-form-actions .button { width: 100%; }.admission-review { min-width: 0; }
  #admission-application { padding: 21px 17px; }.application-header { align-items: flex-start; flex-direction: column; }.application-contact { align-items: flex-start; text-align: left; }.application-main { grid-template-columns: 1fr 90px; }.application-details { grid-template-columns: 1fr; }.application-details .wide { grid-column: 1; }.application-bottom-grid { grid-template-columns: 1fr; }.course-choice { grid-template-columns: 1fr; gap: 7px; }.signature-row { grid-template-columns: 1fr; gap: 14px; }.signature-row span { padding-top: 18px; }.office-use > div { grid-template-columns: 1fr 1fr; }.admission-actions { flex-direction: column; }.admission-actions .button { width: 100%; }#admission-status { text-align: center; }
}

@media print {
  @page { size: A4; margin: 0; }
  html, body { width: 210mm; min-height: 297mm; margin: 0; background: var(--white); }
  body > header, body > main, body > footer, body > .mobile-admission-cta, body > #review-modal { display: none !important; }
  body * { visibility: hidden !important; }
  #admission-preview-step, #admission-preview-step * { visibility: visible !important; }
  #admission-form-step, .admission-backdrop, .admission-close, .admission-actions, #admission-status { display: none !important; }
  .admission-modal { position: static; display: block; width: 210mm; height: 297mm; padding: 0; background: var(--white); }
  .admission-dialog { position: static; width: 100%; max-height: none; overflow: visible; padding: 0; border-radius: 0; box-shadow: none; }
  #admission-preview-step { display: block !important; }
  #admission-application { width: 210mm; height: 297mm; padding: 15mm; overflow: hidden; border: 0; border-radius: 0; }
  .application-details strong, .application-bottom-grid strong { font-size: 12px; }
  .course-choice { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .draft-stamp { bottom: 12mm; }
}
