/* Current IMT typography and layout primitives. No external theme dependency. */
@font-face {
  font-family: "Artifex Hand CF";
  src: url("/assets/fonts/ArtifexHand-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- 2. Tokens ------------------------------------ */

:root {
  /* Brand. Warm near-black and warm cream: no pure #000 / #fff anywhere. */
  --ink:        #1c1a17;
  --ink-deep:   #0f0e0c;
  --cream:      #f6f1e7;
  --paper:      #faf7f1;
  --sand:       #f1ece2;
  --stone:      #e5e0d7;

  /* Derived tones, perceptually even. */
  --muted:      color-mix(in oklab, var(--ink) 64%, transparent);
  --muted-soft: color-mix(in oklab, var(--ink) 46%, transparent);
  --line:       color-mix(in oklab, var(--ink) 14%, transparent);
  --line-firm:  color-mix(in oklab, var(--ink) 26%, transparent);

  --on-dark:        var(--cream);
  --on-dark-muted:  color-mix(in oklab, var(--cream) 70%, transparent);
  --on-dark-line:   color-mix(in oklab, var(--cream) 30%, transparent);

  /* Two faces. That is the whole set. */
  --font-display: "Artifex Hand CF", "Iowan Old Style", Georgia, serif;
  --font-text:    "Instrument Sans", system-ui, -apple-system, "Segoe UI", Helvetica, sans-serif;

  /* Type scale — 7 steps, ratio ~1.27, nothing below 14px.
     Label and body sit close on purpose and are separated by
     case, tracking and weight rather than size. */
  --t-label: 0.875rem;                                          /* 14 */
  --t-body:  1.0625rem;                                         /* 17 */
  --t-lead:  clamp(1.1875rem, 0.42vw + 1.09rem, 1.375rem);      /* 19 → 22 */
  --t-h4:    clamp(1.375rem,  0.70vw + 1.22rem, 1.6875rem);     /* 22 → 27 */
  --t-h3:    clamp(1.6875rem, 1.05vw + 1.46rem, 2.125rem);      /* 27 → 34 */
  --t-h2:    clamp(2.125rem,  1.55vw + 1.79rem, 2.75rem);       /* 34 → 44 */
  --t-h1:    clamp(2.5rem,    3.60vw + 1.72rem, 4rem);          /* 40 → 64 */
  --t-hero:  clamp(2.75rem,   5.60vw + 1.53rem, 5.25rem);       /* 44 → 84 */

  /* The theme sizes everything through these tokens. Map them onto the
     scale above so the whole site collapses onto one set of steps
     instead of the 12-16 arbitrary sizes it used to render. */
  --h1: var(--t-h1);
  --h2: var(--t-h2);
  --h3: var(--t-h3);
  --h4: var(--t-h4);
  --h5: var(--t-lead);
  --h6: var(--t-body);
  --text-large: var(--t-lead);
  --text-regular: var(--t-body);
  --text-small: var(--t-label);
  --text-tiny: var(--t-label);
  --text-mini: var(--t-label);
  --button-large-text: var(--t-label);
  --button-regular-text: var(--t-label);
  --button-small-text: var(--t-label);
  --button-tiny-text: var(--t-label);

  /* The theme reads type through these. Point them at the two faces so
     anything not covered by a selector below still lands correctly. */
  --font-1: var(--font-text);
  --font-2: var(--font-display);
  --font-3: var(--font-display);
  --font-4: var(--font-display);
  --imt-display: var(--font-display);
  --imt-body: var(--font-text);

  --lh-tight: 1.04;
  --lh-head:  1.12;
  --lh-body:  1.62;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);   /* ease-out-quint */
}

/* ---------- 3. Base type --------------------------------- */

html { -webkit-text-size-adjust: 100%; }

body,
p, li, dd, dt, blockquote, figcaption, label, input, select, textarea, button,
.content p, .secondary-link, .meta-bar, .article__term {
  font-family: var(--font-text);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
h1 span, h2 span, h3 span, .h1 span, .h2 span, .h3 span,
.k-display, .k-serif-text,
.imt-statband__n, .img-links__item-title-txt, .imt-idx__name,
.imt-about2__h, .imt-beyond__title, .JournalCard__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0.002em;
}

body { font-size: var(--t-body); line-height: var(--lh-body); color: var(--ink); }

h1, .h1 { font-size: var(--t-h1); line-height: var(--lh-tight); }
h2, .h2 { font-size: var(--t-h2); line-height: var(--lh-head); }
h3, .h3 { font-size: var(--t-h3); line-height: var(--lh-head); }
h4, .h4 { font-size: var(--t-h4); line-height: var(--lh-head); }
h5, .h5 { font-size: var(--t-lead); line-height: 1.45; }
h6, .h6 { font-size: var(--t-body); line-height: 1.5; }

p { max-width: 68ch; }
.txt-center p, .content.txt-center p { margin-inline: auto; }

/* Eyebrows, labels, meta: the sans, set small, tracked and upright. */
.txt-script,
.eyebrow,
.imt-idx__eyebrow, .imt-about2__eyebrow, .imt-subjects__label,
.imt-statband__l, .imt-jcard__meta, .imt-jfeat__meta, .imt-jcat,
.flagship-banner__header-txt {
  font-family: var(--font-text);
  font-size: var(--t-label);
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  line-height: 1.3;
  color: var(--muted);
}

.bg-colorway-black .txt-script, .txt-colorway-light .txt-script,
.bg-colorway-black .eyebrow, .txt-colorway-light .eyebrow {
  color: var(--on-dark-muted);
}

/* Standfirst under a page headline. */
.lede {
  font-family: var(--font-text);
  font-size: var(--t-lead);
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  max-width: 56ch;
}
.txt-center .lede { margin-inline: auto; }
.bg-colorway-black .lede, .txt-colorway-light .lede { color: var(--on-dark-muted); }

/* Nothing on the page may be smaller than the label size. The footer was
   running 11-12px and the form labels 11.5px. */
.imt-form label, .imt-form-note, .footer small, .footer__legal,
.faux-select__items li, .meta-bar, figcaption,
.footer__cols-menu-title, .footer__cols-menu-title.h6,
.footer__meta-disclaimer, .footer__meta-copyright,
.footer__cols-menu a, .footer__cols-menu li,
.footer__meta p, .imt-blog .cat, .article__term {
  font-size: var(--t-label);
  letter-spacing: 0.04em;
}
.footer__cols-menu-title, .footer__cols-menu-title.h6 {
  font-family: var(--font-text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--on-dark-muted);
}
.footer__meta-disclaimer, .footer__meta-copyright { line-height: 1.55; }


*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0;min-height:100%;width:100%}
html{scroll-padding-top:100px}
body{background:var(--cream);-webkit-font-smoothing:antialiased}
img,video{display:block;max-width:100%;height:auto}
button,input,select,textarea{font:inherit;color:inherit}
button{cursor:pointer}button:disabled{cursor:default}
a{color:inherit;text-decoration:none}
p{margin:0 0 1.25em}h1,h2,h3,h4,h5,h6{margin:0 0 .7em}
figure{margin:0}ul,ol{padding-left:1.3em}
fieldset{min-width:0;margin:0;padding:0;border:0}legend{padding:0}
summary{cursor:pointer}details>summary{list-style:none}summary::-webkit-details-marker{display:none}
[hidden]{display:none!important}
.page-wrap{width:100%;overflow:clip}.section{width:100%;margin-inline:auto}.section--medium{max-width:1280px}.section--wide{max-width:1440px}
.content{width:100%;min-width:0}.content>p:last-child{margin-bottom:0}.txt-center{text-align:center}
.bg-colorway-beige{background:var(--cream)}.bg-colorway-black{background:var(--ink);color:var(--cream)}
.section-flagship-banner{position:relative;width:100%;height:100svh;min-height:600px;overflow:hidden}
.k-story__media{position:absolute;inset:0}.k-story__media>img,.k-story__media>video{width:100%;height:100%;object-fit:cover}
.k-story__content{position:relative;z-index:2}.flagship-banner__phrase{color:var(--cream)}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:14px;padding:14px 26px;min-height:48px;border:0;border-radius:999px;background:var(--atelier-blue,#783f46);color:var(--cream);font:inherit;line-height:1.3;text-decoration:none}
.btn__txt{display:inline-block}.btn__txt-inner{display:inline-block;transform:none}.btn__txt-inner::before,.btn__txt-inner::after{content:none!important}
.btn__icon{display:none}.btn--outline{background:transparent;color:var(--ink);border:1px solid var(--line-firm)}
.header{position:fixed;inset:0 0 auto;z-index:100}.header a,.header button{line-height:1.2}
.footer{position:relative;width:100%}.footer__section-inner{max-width:1440px;margin:auto}.footer ul{list-style:none;margin:0;padding:0}
.footer__cols{display:flex}.footer__cols-menus{width:100%;display:grid}.footer__meta{display:flex;justify-content:space-between;flex-wrap:wrap;gap:18px}
.home-menu{padding:0;margin:0 0 0 auto;max-height:100dvh}.home-menu::backdrop{background:#201e1a70}
:where(a,button,input,select,textarea,summary,[tabindex]):focus-visible{outline:2px solid var(--atelier-blue,#783f46);outline-offset:4px}
.sr-only,.screen-reader-text{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip-path:inset(50%);white-space:nowrap;border:0}
@media(max-width:760px){.section-flagship-banner{min-height:500px}.footer__meta{display:block}}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;scroll-behavior:auto!important}}

/* Atelier composition for the published IMT content.
   No font-family rules, global type tokens, header rules or banner rules:
   original typography and the Home / About / Educators heroes remain intact. */
:root{--atelier-paper:#f3eee7;--atelier-ink:#292522;--atelier-blue:#783f46;--atelier-line:#c4c3b9;--atelier-sage:#dedfd5;--atelier-gutter:clamp(22px,4.2vw,84px)}
.atelier-section{background-color:var(--atelier-paper)!important;color:var(--atelier-ink);padding:clamp(64px,7.5vw,120px) var(--atelier-gutter)!important;position:relative}
.atelier-section p{font-size:clamp(1rem,1.15vw,1.125rem);line-height:1.75}
.atelier-section a:focus-visible,.footer a:focus-visible{outline:3px solid var(--atelier-blue)!important;outline-offset:6px}
.atelier-section .btn{border-radius:0!important;box-shadow:none!important;font-size:14px!important;letter-spacing:.03em!important;min-height:48px}
.atelier-section .btn--outline{border:0!important;border-bottom:1px solid currentColor!important;padding:12px 0!important;background:transparent!important;color:inherit!important}
.atelier-section .btn--outline:hover{color:var(--atelier-blue)!important}
.atelier-section .btn--full{background:var(--atelier-blue)!important;border-color:var(--atelier-blue)!important;color:var(--atelier-paper)!important}
.atelier-section .btn--full:hover{background:var(--atelier-ink)!important;border-color:var(--atelier-ink)!important}
/* Home: a quiet manifesto, followed by the school's actual three core pathways. */
[data-atelier-page^="index"] #section-1{background:var(--atelier-ink)!important;color:var(--atelier-paper);padding:clamp(75px,10vw,160px) 7%!important}
[data-atelier-page^="index"] #section-1 .section{max-width:1250px;width:100%;padding:0}
[data-atelier-page^="index"] #section-1 p{text-align:left!important;margin:0!important;max-width:1100px}
[data-atelier-page^="index"] #section-1 .h5{font-size:clamp(30px,4.4vw,68px)!important;line-height:1.2!important;color:var(--atelier-paper)!important}
[data-atelier-page^="index"] #section-1 p+p{margin-top:44px!important;text-align:right!important}
[data-atelier-page^="index"] #section-1 .btn{color:var(--atelier-paper)!important}
[data-atelier-page^="index"] #programs-intro{padding-bottom:45px!important}
[data-atelier-page^="index"] #programs-intro .section{max-width:1440px;padding:0;width:100%}
[data-atelier-page^="index"] #programs-intro .content{display:grid;grid-template-columns:1fr 1fr;gap:0 10%;text-align:left!important}
[data-atelier-page^="index"] #programs-intro h2{grid-column:1;grid-row:1/3;margin:0!important;font-size:clamp(45px,6.3vw,96px)!important;max-width:7ch;color:var(--atelier-ink)!important}
[data-atelier-page^="index"] #programs-intro p{grid-column:2;margin:0 0 20px!important;max-width:55ch}
.atelier-catalogue{padding-top:0!important;padding-bottom:110px!important}
.atelier-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:28px;max-width:1440px;margin:auto;border-top:1px solid var(--atelier-ink);padding-top:30px}
.atelier-card:nth-child(2){padding-top:66px}.atelier-card:nth-child(3){padding-top:132px}
.atelier-card a{display:block;text-decoration:none;color:var(--atelier-ink)}
.atelier-card-image{position:relative;overflow:hidden;aspect-ratio:4/5;background:var(--atelier-sage)}
.atelier-card-image img{position:static!important;inset:auto!important;width:100%!important;height:100%!important;object-fit:cover;transform:none;filter:saturate(.65);transition:filter .5s,scale .5s}
.atelier-card a:hover img{filter:saturate(1);scale:1.035}
.atelier-card-no,.atelier-card-arrow{position:absolute;top:16px;padding:7px 11px;background:var(--atelier-paper);font-size:14px;line-height:1.3}
.atelier-card-no{left:16px}.atelier-card-arrow{right:16px;color:var(--atelier-blue);font-size:22px;padding:3px 10px}
.atelier-card-copy{padding:24px 0;border-bottom:1px solid var(--atelier-line)}
.atelier-card-copy h3{font-size:clamp(28px,3vw,44px)!important;font-weight:400!important;line-height:1.2!important;text-transform:none!important;margin:0 0 20px}
.atelier-card-copy p{margin:0!important;font-size:16px;line-height:1.7}
.atelier-card a:hover h3{color:var(--atelier-blue)}
[data-atelier-page^="index"] .imt-beyond{background:var(--atelier-sage)!important;padding:90px 7%!important;border:0!important}
[data-atelier-page^="index"] .imt-beyond__inner{max-width:1340px;display:grid;grid-template-columns:1.1fr 1fr;gap:30px 10%;text-align:left}
[data-atelier-page^="index"] .imt-beyond__title{grid-column:1;grid-row:1/3;font-size:clamp(42px,5vw,76px)!important;margin:0!important;max-width:10ch}
[data-atelier-page^="index"] .imt-beyond__lead{grid-column:2;margin:0!important;max-width:45ch}
[data-atelier-page^="index"] .imt-beyond__cta{grid-column:2;justify-self:start;margin:0!important}
[data-atelier-page^="index"] .imt-ambition--photo{min-height:650px;display:flex;align-items:end;padding:80px 7%!important}
[data-atelier-page^="index"] .imt-ambition--photo .section{max-width:1400px;width:100%;padding:0}
[data-atelier-page^="index"] .imt-ambition__center{max-width:850px!important;text-align:left!important;margin:0!important}
[data-atelier-page^="index"] .imt-ambition__statement{font-size:clamp(28px,3.6vw,52px)!important;line-height:1.3!important;margin:22px 0 32px!important}
/* About: the full story is the editorial feature, not an appended prospectus. */
.atelier-section .imt-sechead{font-size:14px!important;text-transform:uppercase!important;letter-spacing:.13em!important;margin:0 0 32px!important;line-height:1.4!important;color:var(--atelier-blue)!important}
.atelier-section .imt-seclead{font-size:clamp(31px,4.6vw,66px)!important;line-height:1.15!important;font-weight:400!important;margin:0 0 45px!important;text-align:left!important;max-width:18ch!important}
.atelier-section.imt-story2{background:var(--atelier-ink)!important;color:var(--atelier-paper)!important;padding:100px 7%!important}
.atelier-section .imt-story2__inner{max-width:1400px;text-align:left;display:grid;grid-template-columns:1fr 1fr;gap:0 10%}
.atelier-section.imt-story2 .imt-sechead{grid-column:1/-1;color:#b8bfa8!important}
.atelier-section .imt-story2__body{grid-column:2;max-width:64ch;margin:0}
.atelier-section .imt-story2__body p{color:var(--atelier-paper)!important;margin:0 0 24px}
.atelier-section .imt-story2__born{border-top:1px solid #62625b;padding-top:25px;color:#b8bfa8!important}
.atelier-section .imt-approach__inner{max-width:1400px;text-align:left;display:grid;grid-template-columns:1fr 1fr;gap:0 10%}
.atelier-section .imt-approach__inner>.imt-sechead{grid-column:1/-1}
.atelier-section .imt-approach__intro{grid-column:2;margin:0;max-width:64ch}
.atelier-section .imt-approach__intro p{margin:0 0 24px}
.atelier-section .imt-approach__grid{grid-column:1/-1;display:grid;grid-template-columns:1fr 1fr;gap:40px 9%;margin:45px 0 0;counter-reset:approach}
.atelier-section .imt-approach__grid article{border-top:1px solid var(--atelier-line);padding:27px 0 0;position:relative;counter-increment:approach}
.atelier-section .imt-approach__grid article:before{content:"0" counter(approach);display:block;color:var(--atelier-blue);font-size:14px;margin-bottom:22px}
.atelier-section .imt-approach__grid h3{font-size:clamp(25px,2.8vw,38px)!important;line-height:1.18!important;text-transform:none!important;margin:0 0 22px!important}
.atelier-section .imt-approach__grid p{margin:0}
.atelier-section.imt-vision2{background:var(--atelier-sage)!important;padding:100px 7%!important}
.atelier-section .imt-vision2__inner{max-width:1400px;text-align:left}
.atelier-section .imt-vision2__body{max-width:700px;margin-left:auto}
.atelier-section .imt-vision2__body p{margin:0 0 20px}
.atelier-section .imt-pillars2{display:grid;grid-template-columns:repeat(5,1fr);gap:24px;margin:55px 0;border-top:1px solid var(--atelier-blue);padding-top:24px}
.atelier-section .imt-pillar2{display:flex;flex-direction:column;align-items:start;justify-content:start;text-align:left;background:none;border:0;padding:0;gap:24px}
.atelier-section .imt-pillar2 b{color:var(--atelier-blue);font-size:14px;font-weight:400}
.atelier-section .imt-pillar2 span{font-size:clamp(18px,2.1vw,28px);line-height:1.3}
.atelier-section .imt-vision2__motto{font-size:clamp(45px,6.5vw,96px)!important;color:var(--atelier-blue)!important;margin:60px 0 25px!important}
/* Educators: offset, spacious profiles keep every biography and real portrait. */
.atelier-section.imt-eduintro{padding:90px 7%!important;background:var(--atelier-ink)!important}
.atelier-section.imt-eduintro p{max-width:1100px!important;margin:0;font-size:clamp(25px,3.1vw,44px)!important;line-height:1.45!important;color:var(--atelier-paper)!important;text-align:left}
.atelier-section.imt-educators{max-width:none;padding:90px 7%!important;counter-reset:faculty}
.atelier-section .imt-edu{display:grid;grid-template-columns:.9fr 1.1fr;gap:9%;align-items:start;padding:50px 0 90px;margin:0;border-top:1px solid var(--atelier-line);counter-increment:faculty}
.atelier-section .imt-edu__txt{grid-column:2;grid-row:1;padding-top:55px}
.atelier-section .imt-edu__txt:before{content:"0" counter(faculty);display:block;color:var(--atelier-blue);margin-bottom:26px;font-size:14px}
.atelier-section .imt-edu__photo{grid-column:1;grid-row:1;width:100%;margin:0;max-width:none}
.atelier-section .imt-edu__photo img{width:100%;height:auto;aspect-ratio:3/4;object-fit:cover;max-height:700px;border-radius:0;filter:grayscale(1)}
.atelier-section .imt-edu--flip .imt-edu__txt{grid-column:1}.atelier-section .imt-edu--flip .imt-edu__photo{grid-column:2;margin-top:70px}
.atelier-section .imt-edu__name{font-size:clamp(32px,4vw,58px)!important;line-height:1.13!important;text-transform:none!important;margin:0 0 25px!important}
.atelier-section .imt-edu__role{font-size:14px!important;color:var(--atelier-blue)!important;line-height:1.6!important;max-width:50ch;margin:0 0 30px}
.atelier-section .imt-edu__bio{font-size:17px!important;line-height:1.8!important;max-width:63ch}
.atelier-section .imt-edu__more a{color:var(--atelier-blue);border-bottom:1px solid currentColor;padding-bottom:5px;font-size:14px}
/* Existing programme / information pages: chapter layouts, readable long copy. */
.atelier-section.section-text-content>.section{max-width:1400px;width:100%;padding:0}
.atelier-section.section-text-content:not(.atelier-page-hero) .content{max-width:none;text-align:left;display:flow-root}
.atelier-section.section-text-content:not(.atelier-page-hero):not(:last-of-type) .content>h2{font-size:clamp(35px,4vw,58px)!important;line-height:1.14!important;text-transform:none!important;margin:0 0 35px!important;color:var(--atelier-ink)!important;max-width:20ch}
.atelier-section.section-text-content:not(.atelier-page-hero):not(:last-of-type) .content>p,.atelier-section.section-text-content:not(.atelier-page-hero):not(:last-of-type) .content>ul,.atelier-section.section-text-content:not(.atelier-page-hero) .imt-faq{max-width:760px;margin-left:34%!important;text-align:left}
.atelier-section.section-text-content:not(.atelier-page-hero):nth-of-type(even){background:var(--atelier-sage)!important}
.atelier-section.section-text-content .imt-list{columns:1;list-style:none;padding:0}
.atelier-section .imt-list li{padding:16px 0!important;border-top:1px solid var(--atelier-line);font-size:17px!important;line-height:1.6}
.atelier-section .imt-list li:before{display:none}
.atelier-section .imt-facts{border-block:1px solid var(--atelier-line);padding:25px 0;gap:25px;box-shadow:none}
.atelier-section .imt-fact{background:transparent;border:0;border-radius:0;text-align:left}
.atelier-section .imt-fact b{color:var(--atelier-blue)!important}
.atelier-section.atelier-page-hero{padding:100px 7%!important;min-height:540px;display:flex;align-items:center}
.atelier-page-hero .content{text-align:left!important;max-width:1000px}
.atelier-page-hero h1{margin:0 0 25px!important}
.atelier-page-hero h1 .txt-script{font-size:14px!important;letter-spacing:.14em!important}
.atelier-page-hero .h1{font-size:clamp(44px,6vw,88px)!important;line-height:1.08!important;text-transform:none!important;letter-spacing:-.025em!important;display:block;max-width:17ch}
.atelier-page-hero .h5{font-size:18px!important;line-height:1.7!important;display:block;max-width:60ch}
.atelier-page-hero:not([style*="background-image"]){background:var(--atelier-ink)!important}
.atelier-page-hero .btn{color:var(--atelier-paper)!important}
.atelier-section.section-text-content:last-of-type{background:var(--atelier-blue)!important;padding:80px 7%!important}
.atelier-section.section-text-content:last-of-type .content{color:var(--atelier-paper)!important}
.atelier-section.section-text-content:last-of-type h2{font-size:14px!important;letter-spacing:.1em!important;margin-bottom:25px!important;color:var(--atelier-paper)!important}
.atelier-section.section-text-content:last-of-type .h2{font-size:clamp(36px,5.5vw,80px)!important;line-height:1.15!important;display:block;max-width:20ch;text-transform:none!important}
.atelier-section.section-text-content:last-of-type .btn--full{background:var(--atelier-paper)!important;border-color:var(--atelier-paper)!important;color:var(--atelier-ink)!important}
.atelier-section .imt-faq details{border-radius:0!important;border:0!important;border-top:1px solid var(--atelier-line)!important;background:none!important;padding:22px 0!important}
.atelier-section .imt-faq summary{font-size:clamp(20px,2.4vw,29px)!important;line-height:1.3!important}
.atelier-section .imt-faq details[open] summary{color:var(--atelier-blue)!important}
.atelier-section .imt-form{max-width:800px;margin-left:auto;margin-right:0;border-top:1px solid var(--atelier-line);padding-top:32px}
.atelier-section .imt-form input,.atelier-section .imt-form select,.atelier-section .imt-form textarea{border-radius:0!important;background:transparent!important;border:0!important;border-bottom:1px solid var(--atelier-line)!important;padding:15px 0!important;font-size:16px!important}
.atelier-section .imt-form label{font-size:14px!important}
.atelier-section .imt-form :is(input,select,textarea):focus{outline:2px solid var(--atelier-blue)!important;outline-offset:4px}
.footer .footer__section{border-top:1px solid #53534b}.footer .footer__cols{gap:40px}
@media(max-width:900px){
.atelier-card-grid{gap:18px}.atelier-card:nth-child(2){padding-top:35px}.atelier-card:nth-child(3){padding-top:70px}
.atelier-section .imt-edu{gap:6%}.atelier-section .imt-edu__txt{padding-top:15px}
.atelier-section .imt-pillars2{grid-template-columns:repeat(3,1fr);gap:30px}
.atelier-section.section-text-content:not(.atelier-page-hero):not(:last-of-type) .content>p,.atelier-section.section-text-content:not(.atelier-page-hero):not(:last-of-type) .content>ul,.atelier-section.section-text-content:not(.atelier-page-hero) .imt-faq{margin-left:20%!important}
}
@media(max-width:640px){
[data-atelier-page^="index"] #programs-intro .content,[data-atelier-page^="index"] .imt-beyond__inner,.atelier-section .imt-story2__inner,.atelier-section .imt-approach__inner{display:block}
[data-atelier-page^="index"] #programs-intro h2{max-width:none;margin-bottom:30px!important}
.atelier-card-grid{grid-template-columns:1fr;gap:45px}.atelier-card:nth-child(n){padding-top:0}.atelier-card-image{aspect-ratio:5/4}.atelier-card-copy h3{font-size:32px!important}
[data-atelier-page^="index"] .imt-beyond__title{max-width:14ch;margin-bottom:30px!important}
[data-atelier-page^="index"] .imt-beyond__cta{margin-top:25px!important}
[data-atelier-page^="index"] .imt-ambition--photo{min-height:560px}
.atelier-section .imt-approach__grid{grid-template-columns:1fr;gap:30px}
.atelier-section .imt-pillars2{grid-template-columns:1fr 1fr}.atelier-section .imt-pillar2{gap:12px}
.atelier-section .imt-edu{display:flex;flex-direction:column;gap:30px;padding:30px 0 60px}
.atelier-section .imt-edu__photo,.atelier-section .imt-edu--flip .imt-edu__photo{order:0;margin:0;max-width:100%}
.atelier-section .imt-edu__photo img{max-height:520px;object-position:center 22%}
.atelier-section .imt-edu__txt{order:1;padding:0}.atelier-section .imt-edu__txt:before{margin-bottom:16px}
.atelier-section.section-text-content:not(.atelier-page-hero):not(:last-of-type) .content>p,.atelier-section.section-text-content:not(.atelier-page-hero):not(:last-of-type) .content>ul,.atelier-section.section-text-content:not(.atelier-page-hero) .imt-faq{margin-left:0!important}
.atelier-section.atelier-page-hero{min-height:500px;padding-top:85px!important}
.atelier-section .imt-facts{grid-template-columns:1fr 1fr!important}.atelier-section .imt-form{margin:0}
}
@media(prefers-reduced-motion:reduce){.atelier-card-image img{transition:none}.atelier-section *{scroll-behavior:auto!important}}
/* Programme covers reuse each programme's existing photograph. */
.atelier-section.atelier-course-cover{display:grid;grid-template-columns:1.15fr 1fr;gap:7%;background:var(--atelier-paper)!important;padding:85px 7% 75px!important;min-height:680px;color:var(--atelier-ink)!important;align-items:center}
.atelier-course-cover .content,.atelier-course-cover .h1,.atelier-course-cover .h5{color:var(--atelier-ink)!important}
.atelier-course-cover h1 .txt-script{color:var(--atelier-blue)!important}
.atelier-course-cover .h1{font-size:clamp(40px,4.6vw,70px)!important}
.atelier-course-cover .btn{color:var(--atelier-blue)!important}
.atelier-course-photo{margin:65px 0 0;align-self:stretch;min-height:460px}
.atelier-course-photo img{width:100%;height:100%;max-height:650px;object-fit:cover;filter:saturate(.65)}
.atelier-section.section-text-content:not(.atelier-page-hero):not(:last-of-type){border-bottom:1px solid var(--atelier-line)}
.atelier-section .imt-blog{gap:0 35px!important}
.atelier-section .imt-blog a{border-radius:0!important;box-shadow:none!important;border:0!important;border-top:1px solid var(--atelier-line)!important;background:transparent!important;padding:28px 0!important}
.atelier-section .imt-blog a:hover{color:var(--atelier-blue)!important}
@media(max-width:640px){.atelier-section.atelier-course-cover{display:block;min-height:0;padding-top:90px!important}.atelier-course-photo{min-height:0;height:340px;margin-top:35px}.atelier-course-photo img{height:100%}}
/* Integration with the confirmed LOCAL project: reset its 24-column layout
   only inside redesigned sections. The banner/header rules remain untouched. */
.atelier-section:is(.k-module,.imt-story2,.imt-approach,.imt-vision2,.about-cta,.edu-cta){display:block!important;grid-template-columns:none!important;column-gap:0!important}
.atelier-section :is(.imt-story2__inner,.imt-approach__inner,.imt-vision2__inner,.about-cta__inner,.edu-cta__inner){width:100%;margin:0 auto;padding:0;max-width:1400px;grid-column:auto!important;grid-row:auto!important}
.atelier-section :is(.imt-story2__inner,.imt-approach__inner,.imt-vision2__inner,.about-cta__inner,.edu-cta__inner)>*{grid-column:auto!important;grid-row:auto!important;order:0!important}
.atelier-section :is(.imt-story2__body,.imt-approach__intro,.imt-vision2__body){columns:1!important;display:block;max-width:none}
.atelier-section .imt-story2__inner,.atelier-section .imt-approach__inner{display:grid!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;gap:0 9%!important}
.atelier-section :is(.imt-story2__inner,.imt-approach__inner)>.imt-sechead{grid-column:1/-1!important;grid-row:1!important}
.atelier-section :is(.imt-story2__inner,.imt-approach__inner)>.imt-seclead{grid-column:1!important;grid-row:2!important}
.atelier-section :is(.imt-story2__inner,.imt-approach__inner)>:is(.imt-story2__body,.imt-approach__intro){grid-column:2!important;grid-row:2!important;margin:0}
.atelier-section .imt-approach__inner>.imt-approach__grid{grid-column:1/-1!important;grid-row:3!important}
.atelier-section .imt-approach__inner>.imt-outro{grid-column:2!important;grid-row:4!important;margin-top:35px}
.atelier-section.imt-story2 .imt-seclead{color:var(--atelier-paper)!important}
.atelier-section.imt-story2 .imt-story2__body :is(p,span,strong,em,a){color:var(--atelier-paper)!important}
.atelier-section .imt-vision2__inner{display:block!important}
.atelier-section .imt-vision2__body{max-width:700px;margin-left:auto!important}
.atelier-section .imt-pillars2{width:100%!important;max-width:none!important;grid-template-columns:repeat(5,minmax(0,1fr))!important;gap:24px!important;margin:45px 0!important}
.atelier-section .imt-pillar2{display:flex!important;flex-direction:column!important;gap:20px!important;border:0!important;align-items:start!important;padding:0!important;position:static}
.atelier-section .imt-pillar2 b{position:static!important;transform:none!important;color:var(--atelier-blue)!important;font-size:14px!important}
.atelier-section .imt-pillar2 span{color:var(--atelier-ink)!important;font-size:clamp(18px,1.8vw,27px)!important;line-height:1.35!important}
.atelier-section .imt-vision2__inner :is(.imt-seclead,.imt-vision2__body p,.imt-vision2__note){color:var(--atelier-ink)!important}
.atelier-section .k-acc{display:block!important;padding:24px 0!important;margin:0;border:0!important;border-top:1px solid var(--atelier-line)!important;background:transparent!important}
.atelier-section .k-acc__t{font-size:clamp(24px,2.7vw,36px)!important;line-height:1.2!important;color:var(--atelier-ink)!important;padding-right:36px;cursor:pointer!important}
.atelier-section .k-acc__b{font-size:17px!important;line-height:1.75!important;margin:20px 0 0!important;max-width:64ch!important;padding:0!important;color:var(--atelier-ink)!important}
.atelier-section .imt-approach__grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;columns:unset!important}
.atelier-section .imt-approach__grid.imt-2col{display:block!important;columns:2!important;column-gap:9%!important}
.atelier-section .k-acc:not([open])>.k-acc__b{display:none!important}
.atelier-section .k-acc[open]>.k-acc__t{color:var(--atelier-blue)!important}
.atelier-section :is(.k-btn,.k-link){border-radius:0!important;font-size:14px!important;min-height:44px}
.atelier-section .k-btn{background:var(--atelier-blue)!important;color:var(--atelier-paper)!important;border-color:var(--atelier-blue)!important;padding:15px 26px!important}
.atelier-section .k-btn:hover{background:var(--atelier-ink)!important;border-color:var(--atelier-ink)!important}
.atelier-section .k-link{color:var(--atelier-blue)!important;border-color:currentColor!important}
.atelier-section:is(.about-cta,.edu-cta){background:var(--atelier-blue)!important;padding:90px 7%!important}
.atelier-section:is(.about-cta,.edu-cta) :is(.about-cta__inner,.edu-cta__inner){display:block!important}
.atelier-section:is(.about-cta,.edu-cta) :is(.imt-seclead,.imt-sechead,.edu-cta__note,.k-link){color:var(--atelier-paper)!important}
.atelier-section:is(.about-cta,.edu-cta) .imt-seclead{max-width:20ch!important;margin-bottom:35px!important}
.atelier-section:is(.about-cta,.edu-cta) .k-btn{background:var(--atelier-paper)!important;color:var(--atelier-ink)!important;border-color:var(--atelier-paper)!important}
/* Preserve the homepage's actual short introduction and all 'Also at IMT' links. */
[data-atelier-page^="index"] #section-1 .k-module__full{width:100%;max-width:1300px;margin:0 auto}
[data-atelier-page^="index"] #section-1 .k-display{font-size:clamp(34px,5vw,76px)!important;line-height:1.13!important;color:var(--atelier-paper)!important;max-width:27ch!important}
[data-atelier-page^="index"] #section-1 .k-display span{color:inherit!important}
[data-atelier-page^="index"] #section-1 .k-link{color:var(--atelier-paper)!important;margin-top:40px}
[data-atelier-page^="index"] #programs-intro{display:grid!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;gap:8%!important}
[data-atelier-page^="index"] #programs-intro .k-module__full,[data-atelier-page^="index"] #programs-intro .k-module__right{grid-column:auto!important;grid-row:auto!important;max-width:none;width:auto;padding:0}
[data-atelier-page^="index"] #programs-intro .k-display{font-size:clamp(48px,6.3vw,96px)!important;line-height:1!important;max-width:8ch!important}
.atelier-catalogue .k-more{display:flex;flex-wrap:wrap;gap:15px 28px;align-items:center;padding:30px 0;margin:40px 0 0;border-top:1px solid var(--atelier-line)}
.atelier-catalogue .k-more__label{margin:0 auto 0 0!important;font-size:14px!important;color:var(--atelier-ink)}
.atelier-catalogue .k-more a{font-size:16px;color:var(--atelier-blue);border-bottom:1px solid currentColor;padding-bottom:4px}
[data-atelier-page^="index"] .imt-beyond{display:grid!important;grid-template-columns:minmax(0,1.1fr) minmax(0,1fr)!important;gap:9%!important}
[data-atelier-page^="index"] .imt-beyond .k-module__full,[data-atelier-page^="index"] .imt-beyond .k-module__right{grid-column:auto!important;max-width:none}
[data-atelier-page^="index"] .imt-beyond .k-display{font-size:clamp(40px,5.2vw,76px)!important;line-height:1.08!important;max-width:11ch}
[data-atelier-page^="index"] .imt-beyond .k-link{margin-top:25px}
/* The ambition photo is not one of the protected heroes. */
[data-atelier-page^="index"] .imt-ambition.atelier-section{display:block!important;min-height:640px;position:relative;padding:0!important;background:var(--atelier-ink)!important}
[data-atelier-page^="index"] .imt-ambition .k-story__media{position:absolute;inset:0;width:100%;height:100%;grid-column:auto}
[data-atelier-page^="index"] .imt-ambition .k-story__media:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.65),rgba(0,0,0,.1))}
[data-atelier-page^="index"] .imt-ambition .k-story__media img{width:100%;height:100%;object-fit:cover}
[data-atelier-page^="index"] .imt-ambition .k-story__content{position:relative;display:flex;align-items:end;padding:85px 7%;min-height:640px;grid-column:auto;width:100%;inset:auto;transform:none}
[data-atelier-page^="index"] .imt-ambition .k-story__left{width:100%;max-width:850px;padding:0}
[data-atelier-page^="index"] .imt-ambition .k-deck{font-size:clamp(30px,3.5vw,51px)!important;line-height:1.3!important;color:var(--atelier-paper)!important}
[data-atelier-page^="index"] .imt-ambition .k-deck span,[data-atelier-page^="index"] .imt-ambition .k-link{color:var(--atelier-paper)!important}
/* A typographic introduction for the long, real local programme descriptions. */
.atelier-section.imt-first{padding-top:calc(108px + 70px)!important;background:var(--atelier-paper)!important;border-bottom:1px solid var(--atelier-line)}
.atelier-section.imt-first .imt-seclead{font-size:clamp(48px,6.5vw,94px)!important;color:var(--atelier-ink)!important;max-width:13ch!important}
.atelier-section.imt-first .imt-sechead{color:var(--atelier-blue)!important}
.atelier-section.imt-first .imt-story2__body :is(p,span,strong,em,a){color:var(--atelier-ink)!important}
.atelier-section .imt-story2__body p{max-width:64ch!important}
@media(max-width:900px){
.atelier-section .imt-pillars2{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:30px!important}
.atelier-section.imt-first{padding-top:130px!important}
}
@media(max-width:640px){
.atelier-section .imt-story2__inner,.atelier-section .imt-approach__inner{display:block!important}
.atelier-section .imt-seclead{max-width:none!important;margin-bottom:30px!important}
.atelier-section .imt-approach__grid{grid-template-columns:1fr!important;margin-top:30px!important}
.atelier-section .imt-approach__grid.imt-2col{columns:1!important}
.atelier-section .imt-pillars2{grid-template-columns:1fr 1fr!important}
[data-atelier-page^="index"] #programs-intro,[data-atelier-page^="index"] .imt-beyond{display:block!important}
[data-atelier-page^="index"] #programs-intro .k-module__right,[data-atelier-page^="index"] .imt-beyond .k-module__right{margin-top:30px}
.atelier-catalogue .k-more__label{width:100%}
[data-atelier-page^="index"] .imt-ambition.atelier-section,[data-atelier-page^="index"] .imt-ambition .k-story__content{min-height:580px}
}
/* Approved bilingual homepage revision. These rules do not affect other pages. */
body[data-atelier-page^="index"] .imt-home-header{background:transparent!important;background-color:transparent!important;box-shadow:none!important;border-color:transparent!important;opacity:var(--home-header-opacity,1)!important;transition:opacity .15s linear!important;--text-color:#f6f1e7!important;--heading-color:#f6f1e7!important}
body[data-atelier-page^="index"] .imt-home-header:focus-within{opacity:1!important;pointer-events:auto!important}
body[data-atelier-page^="index"] .imt-home-header.home-header-hidden{pointer-events:none}
body[data-atelier-page^="index"] .imt-home-header:before,body[data-atelier-page^="index"] .imt-home-header:after{background:transparent!important;box-shadow:none!important}
body[data-atelier-page^="index"] .imt-home-header .header__logo{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);margin:0}
body[data-atelier-page^="index"] .imt-home-header .header__logo-img{filter:none!important;height:88px!important;max-height:88px!important;width:auto!important}
body[data-atelier-page^="index"] .imt-home-header :is(.header__icon,.header__logo-link,.imt-lang a){color:#f6f1e7!important}
body[data-atelier-page^="index"] .imt-home-header .imt-lang a.is-active{background:#f6f1e7!important;color:#1c1a17!important}
body[data-atelier-page^="index"] .imt-home-header .header__btn .btn{background:#f6f1e7!important;color:#1c1a17!important;border-color:#f6f1e7!important}
body[data-atelier-page^="index"] .imt-home-header .header__btn .btn__txt-inner{color:#1c1a17!important}
body[data-atelier-page^="index"] #banner-1.home-video-hero{display:block!important;position:relative!important;height:100svh!important;min-height:560px!important;padding:0!important;overflow:hidden;background:#1c1a17}
body[data-atelier-page^="index"] #banner-1.home-video-hero .k-story__media{position:absolute!important;inset:0!important;width:100%!important;height:100%!important;grid-column:auto!important}
body[data-atelier-page^="index"] #banner-1.home-video-hero video{display:block!important;position:absolute!important;inset:0!important;width:100%!important;height:100%!important;object-fit:cover!important;opacity:1!important;transform:none!important}
body[data-atelier-page^="index"] #banner-1.home-video-hero .k-story__media:after{content:"";position:absolute;inset:0;background:rgba(0,0,0,.22)}
body[data-atelier-page^="index"] #banner-1.home-video-hero .k-story__content{position:absolute!important;inset:0!important;display:flex!important;align-items:center!important;justify-content:center!important;padding:0 6%!important;width:100%!important;height:100%!important;transform:none!important}
body[data-atelier-page^="index"] .home-phrase{width:100%;max-width:1350px;margin:0;line-height:1}
body[data-atelier-page^="index"] .home-phrase img{display:block;width:100%;height:auto}
body[data-atelier-page^="index"] #section-1{padding:65px 7%!important}
body[data-atelier-page^="index"] #section-1 .k-display{font-size:clamp(28px,3.1vw,46px)!important;line-height:1.3!important;max-width:36ch!important}
body[data-atelier-page^="index"] #section-1 .k-link{margin-top:24px}
body[data-atelier-page^="index"] #programs-intro .k-display{font-size:clamp(54px,8vw,120px)!important;max-width:9ch!important;overflow-wrap:normal}
body[data-atelier-page="index-el"] #programs-intro .k-display{font-size:clamp(44px,6vw,90px)!important;max-width:13ch!important}
body[data-atelier-page^="index"] .imt-ambition .k-story__media:after{background:rgba(0,0,0,.6)!important}
body[data-atelier-page^="index"] .imt-ambition .k-deck{color:#fff!important;font-weight:600!important;margin:22px 0 32px!important}
body[data-atelier-page^="index"] .home-ambition-label{color:#fff!important;font-size:14px!important;letter-spacing:.15em;text-transform:uppercase;margin:0}
@media(max-width:640px){body[data-atelier-page^="index"] .imt-home-header .header__logo-img{height:64px!important;max-height:64px!important}body[data-atelier-page^="index"] #banner-1.home-video-hero{min-height:500px!important}body[data-atelier-page^="index"] .home-phrase{width:100%}body[data-atelier-page^="index"] #programs-intro .k-display{font-size:clamp(48px,12vw,70px)!important}}

body[data-atelier-page^="index"].home-card-motion .atelier-card{opacity:0;transform:translateY(32px);transition:opacity .7s ease,transform .7s ease}
body[data-atelier-page^="index"].home-card-motion .atelier-card.home-card-visible,body[data-atelier-page^="index"].home-card-motion .atelier-card:focus-within{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){body[data-atelier-page^="index"].home-card-motion .atelier-card{opacity:1;transform:none;transition:none}}
/* Atelier homepage: editorial hierarchy, restrained labels and offset imagery.
   Keeps the client's content/sequence and the supplied video banner intact. */
body[data-home-layout="atelier-editorial"]{--home-edge:clamp(24px,6.2vw,104px)}
body[data-home-layout="atelier-editorial"] #section-1{background:var(--atelier-paper)!important;color:var(--atelier-ink)!important;padding:54px var(--home-edge) 64px!important}
body[data-home-layout="atelier-editorial"] #section-1 .home-about-row{display:grid;grid-template-columns:minmax(150px,1fr) minmax(0,2.3fr);gap:8%;max-width:1400px;margin:auto;align-items:start}
body[data-home-layout="atelier-editorial"] #section-1 .k-display{color:var(--atelier-ink)!important;font-size:clamp(26px,2.8vw,41px)!important;line-height:1.3!important;letter-spacing:-.01em!important;max-width:36ch!important;text-wrap:pretty}
body[data-home-layout="atelier-editorial"] .home-about-link{display:flex;align-items:center;justify-content:space-between;gap:35px;border-top:1px solid var(--atelier-ink);padding:16px 0 8px;max-width:220px;min-height:48px;color:var(--atelier-ink);font-size:16px;text-decoration:none}
body[data-home-layout="atelier-editorial"] .home-about-link>span:last-child{color:var(--atelier-blue);font-size:30px;line-height:1}
body[data-home-layout="atelier-editorial"] .home-about-link:hover{color:var(--atelier-blue)}
body[data-home-layout="atelier-editorial"] #programs-intro{padding:74px var(--home-edge) 34px!important;position:relative;grid-template-columns:minmax(0,1.1fr) minmax(0,1fr)!important;gap:9%!important}
body[data-home-layout="atelier-editorial"] #programs-intro:before{content:"";position:absolute;left:var(--home-edge);right:var(--home-edge);top:0;height:1px;background:var(--atelier-line)}
body[data-home-layout="atelier-editorial"] #programs-intro .k-display{font-size:clamp(62px,8.6vw,132px)!important;font-weight:400!important;line-height:.98!important;letter-spacing:-.035em!important;text-transform:none!important;max-width:8ch!important;margin:0!important}
body[data-home-layout="atelier-editorial"][data-atelier-page="index-el"] #programs-intro .k-display{font-size:clamp(46px,6.1vw,92px)!important;max-width:12ch!important;line-height:1.07!important;letter-spacing:-.02em!important}
body[data-home-layout="atelier-editorial"] #programs-intro .k-module__right{padding-top:18px!important;align-self:end;max-width:52ch}
body[data-home-layout="atelier-editorial"] #programs-intro .k-serif-text{font-size:17px!important;line-height:1.8!important;margin:0 0 20px!important;max-width:52ch}
body[data-home-layout="atelier-editorial"] #section-9{padding:24px var(--home-edge) 100px!important}
body[data-home-layout="atelier-editorial"] .atelier-card-grid{gap:clamp(22px,3.2vw,52px);border-top:0;padding-top:10px;align-items:start}
body[data-home-layout="atelier-editorial"] .atelier-card:nth-child(2){padding-top:72px}
body[data-home-layout="atelier-editorial"] .atelier-card:nth-child(3){padding-top:144px}
body[data-home-layout="atelier-editorial"] .atelier-card-image{aspect-ratio:3/4;overflow:hidden}
body[data-home-layout="atelier-editorial"] .atelier-card-image img{filter:saturate(.65);object-position:center}
body[data-home-layout="atelier-editorial"] .atelier-card-no{top:0;left:0;padding:10px 14px;font-size:14px;background:var(--atelier-paper);color:var(--atelier-blue)}
body[data-home-layout="atelier-editorial"] .atelier-card-arrow{display:none}
body[data-home-layout="atelier-editorial"] .atelier-card-copy{padding:22px 0 28px;border-bottom:1px solid var(--atelier-line)}
body[data-home-layout="atelier-editorial"] .atelier-card-copy h3{display:flex;align-items:center;justify-content:space-between;gap:15px;font-size:clamp(30px,3.2vw,47px)!important;line-height:1.15!important;margin:0 0 21px!important}
body[data-home-layout="atelier-editorial"] .home-card-link-arrow{font-size:29px;color:var(--atelier-blue);transition:transform .25s}
body[data-home-layout="atelier-editorial"] .atelier-card a:hover .home-card-link-arrow{transform:translate(3px,-3px)}
body[data-home-layout="atelier-editorial"] .atelier-card-copy p{font-size:16px!important;line-height:1.8!important;color:#494941;text-wrap:pretty}
body[data-home-layout="atelier-editorial"] .imt-beyond{position:relative;background:var(--atelier-paper)!important;padding:76px var(--home-edge) 90px!important;grid-template-columns:minmax(0,1.65fr) minmax(0,1fr)!important;gap:7%!important;align-items:start}
body[data-home-layout="atelier-editorial"] .imt-beyond:before{content:"";position:absolute;top:0;left:var(--home-edge);right:var(--home-edge);height:1px;background:var(--atelier-ink)}
body[data-home-layout="atelier-editorial"] .imt-beyond .k-display{font-size:clamp(48px,6.6vw,100px)!important;line-height:1.04!important;letter-spacing:-.025em!important;max-width:14ch!important;margin:0!important;text-transform:none!important;color:var(--atelier-blue)!important}
body[data-home-layout="atelier-editorial"] .imt-beyond .k-display a{color:inherit!important;text-decoration:none}
body[data-home-layout="atelier-editorial"] .imt-beyond .k-display a:hover{text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:.12em}
body[data-home-layout="atelier-editorial"] .imt-beyond .k-module__right{padding-top:8px;display:flex;flex-direction:column;align-items:start;gap:30px}
body[data-home-layout="atelier-editorial"] .imt-beyond .k-serif-text{font-size:17px!important;line-height:1.8!important;max-width:39ch;margin:0!important}
body[data-home-layout="atelier-editorial"] .home-discover{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:10px;width:152px;min-height:152px;aspect-ratio:1;border-radius:50%;padding:20px;background:var(--atelier-blue);color:var(--atelier-paper);font-size:16px;line-height:1.3;text-align:center;text-transform:none;letter-spacing:0;text-decoration:none;align-self:end;transform:rotate(-7deg);transition:background .25s,transform .25s}
body[data-home-layout="atelier-editorial"] .home-discover>span:last-child{font-size:33px;line-height:1}
body[data-home-layout="atelier-editorial"] .home-discover:hover{background:var(--atelier-ink);transform:rotate(0)}
body[data-home-layout="atelier-editorial"] .imt-ambition .k-story__content{min-height:690px!important;padding:85px var(--home-edge)!important;align-items:center!important}
body[data-home-layout="atelier-editorial"] .imt-ambition .k-story__left{max-width:1020px!important;width:100%!important}
body[data-home-layout="atelier-editorial"] .imt-ambition .k-story__media:after{background:linear-gradient(90deg,rgba(12,12,10,.78),rgba(12,12,10,.46))!important}
body[data-home-layout="atelier-editorial"] .imt-ambition .home-ambition-label{font-size:17px!important;line-height:1.5!important;font-weight:400!important;text-transform:none!important;letter-spacing:0!important;margin:0 0 28px!important;color:#fff!important}
body[data-home-layout="atelier-editorial"] .imt-ambition h2.k-deck{font-size:clamp(32px,3.7vw,56px)!important;font-weight:600!important;line-height:1.25!important;text-transform:none!important;letter-spacing:-.01em!important;max-width:34ch!important;text-wrap:pretty;margin:0 0 38px!important;color:#fff!important}
body[data-home-layout="atelier-editorial"] .imt-ambition .k-link{font-size:16px!important;line-height:1.5!important;font-weight:500!important;text-transform:none!important;letter-spacing:0!important;border-color:rgba(255,255,255,.6)!important;color:#fff!important;min-height:48px!important}
@media(max-width:900px){
body[data-home-layout="atelier-editorial"] .atelier-card-grid{gap:24px}
body[data-home-layout="atelier-editorial"] .atelier-card:nth-child(2){padding-top:40px}
body[data-home-layout="atelier-editorial"] .atelier-card:nth-child(3){padding-top:80px}
body[data-home-layout="atelier-editorial"] .imt-beyond .k-display{font-size:clamp(46px,6.5vw,68px)!important}
}
@media(max-width:640px){
body[data-home-layout="atelier-editorial"] #section-1{padding:36px var(--home-edge) 44px!important}
body[data-home-layout="atelier-editorial"] #section-1 .home-about-row{display:flex;flex-direction:column;gap:24px}
body[data-home-layout="atelier-editorial"] .home-about-link{width:100%;max-width:none;font-size:15px;padding-top:10px}
body[data-home-layout="atelier-editorial"] #section-1 .k-display{font-size:28px!important;max-width:none!important}
body[data-home-layout="atelier-editorial"] #programs-intro{padding-top:46px!important;padding-bottom:16px!important;display:block!important}
body[data-home-layout="atelier-editorial"] #programs-intro .k-display{font-size:clamp(58px,14vw,80px)!important;max-width:12ch!important}
body[data-home-layout="atelier-editorial"][data-atelier-page="index-el"] #programs-intro .k-display{font-size:clamp(44px,11vw,66px)!important}
body[data-home-layout="atelier-editorial"] #programs-intro .k-module__right{margin-top:26px!important;padding:0!important}
body[data-home-layout="atelier-editorial"] #section-9{padding-top:10px!important;padding-bottom:55px!important}
body[data-home-layout="atelier-editorial"] .atelier-card-grid{display:block}
body[data-home-layout="atelier-editorial"] .atelier-card:nth-child(n){padding-top:0;margin:0 0 38px}
body[data-home-layout="atelier-editorial"] .atelier-card:nth-child(2){margin-left:7%}
body[data-home-layout="atelier-editorial"] .atelier-card:nth-child(3){margin-right:7%}
body[data-home-layout="atelier-editorial"] .atelier-card-image{aspect-ratio:4/3}
body[data-home-layout="atelier-editorial"] .atelier-card-copy h3{font-size:36px!important}
body[data-home-layout="atelier-editorial"] .imt-beyond{padding-top:45px!important;padding-bottom:54px!important;display:block!important}
body[data-home-layout="atelier-editorial"] .imt-beyond .k-display{font-size:clamp(44px,11vw,60px)!important;max-width:15ch!important}
body[data-home-layout="atelier-editorial"] .imt-beyond .k-module__right{margin-top:28px!important;gap:25px}
body[data-home-layout="atelier-editorial"] .home-discover{width:132px;min-height:132px;font-size:15px;align-self:end}
body[data-home-layout="atelier-editorial"] .imt-ambition .k-story__content{min-height:620px!important;padding:56px var(--home-edge)!important}
body[data-home-layout="atelier-editorial"] .imt-ambition h2.k-deck{font-size:32px!important;line-height:1.3!important;max-width:none!important}
}
/* Warm copper sampled from the video; the closing panel is entirely typographic. */
body[data-home-layout="atelier-editorial"] .home-manifesto{padding:90px var(--home-edge) 100px!important;background:#e8dcd6!important;color:#292522!important}
body[data-home-layout="atelier-editorial"] .home-manifesto-inner{max-width:1400px;margin:auto;display:grid;grid-template-columns:minmax(140px,.55fr) minmax(0,1.8fr);gap:38px 7%;border-top:1px solid #a1a895;padding-top:35px}
body[data-home-layout="atelier-editorial"] .home-manifesto-label{font-size:17px!important;font-weight:400!important;line-height:1.5!important;letter-spacing:0!important;text-transform:none!important;margin:8px 0 0!important;color:#505944}
body[data-home-layout="atelier-editorial"] .home-manifesto h2{font-size:clamp(32px,3.65vw,56px)!important;line-height:1.27!important;text-transform:none!important;letter-spacing:-.015em!important;font-weight:400!important;text-wrap:pretty;margin:0!important;color:#292522!important;max-width:33ch}
body[data-home-layout="atelier-editorial"] .home-manifesto-link{grid-column:2;display:flex;justify-content:space-between;align-items:center;gap:32px;min-height:60px;border-top:1px solid #a1a895;padding-top:18px;color:#505944;font-size:17px;text-decoration:none;text-transform:none;letter-spacing:0;max-width:100%}
body[data-home-layout="atelier-editorial"] .home-manifesto-link>span:last-child{font-size:36px;line-height:1}
body[data-home-layout="atelier-editorial"] .home-manifesto-link:hover{color:#292522}
/* A real button and native modal dialog, independent of the old theme drawer. */
body[data-home-layout="atelier-editorial"] .home-menu-toggle{display:inline-flex!important;align-items:center;justify-content:center;width:48px;height:48px;padding:10px;border:1px solid rgba(246,241,231,.5);border-radius:0;background:transparent;color:#f6f1e7;cursor:pointer;flex:0 0 auto}
body[data-home-layout="atelier-editorial"] .home-burger{display:flex;flex-direction:column;gap:6px;width:24px}
body[data-home-layout="atelier-editorial"] .home-burger>span{display:block;height:1px;width:24px;background:currentColor;transition:width .2s}
body[data-home-layout="atelier-editorial"] .home-burger>span:nth-child(2){width:17px}
body[data-home-layout="atelier-editorial"] .home-menu-toggle:hover .home-burger>span:nth-child(2){width:24px}
body[data-home-layout="atelier-editorial"] .home-menu-toggle:focus-visible{outline:2px solid #f6f1e7;outline-offset:5px}
body[data-home-layout="atelier-editorial"] .home-menu{position:fixed;inset:0;width:100%;height:100%;max-width:none;max-height:100dvh;margin:0;padding:0;border:0;background:#29211c;color:#f6f1e7;overflow:auto;overscroll-behavior:contain}
body[data-home-layout="atelier-editorial"] .home-menu:not([open]){display:none!important}
body[data-home-layout="atelier-editorial"] .home-menu::backdrop{background:rgba(25,20,17,.75)}
body[data-home-layout="atelier-editorial"] .home-menu-shell{max-width:1440px;min-height:100%;margin:auto;padding:32px var(--home-edge) 45px;box-sizing:border-box}
body[data-home-layout="atelier-editorial"] .home-menu-top{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #715b4e;padding-bottom:22px;margin-bottom:45px}
body[data-home-layout="atelier-editorial"] .home-menu-top p{font-size:18px;margin:0;color:#b8bfa8}
body[data-home-layout="atelier-editorial"] .home-menu-close{display:flex;align-items:center;justify-content:center;width:48px;height:48px;padding:0;border:1px solid #9d8170;background:transparent;color:#f6f1e7;font-size:38px;line-height:1;cursor:pointer}
body[data-home-layout="atelier-editorial"] .home-menu-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:40px 10%}
body[data-home-layout="atelier-editorial"] .home-menu-group{padding:0;margin:0;background:transparent}
body[data-home-layout="atelier-editorial"] .home-menu-group h2{font-size:clamp(25px,3vw,42px)!important;font-weight:400!important;line-height:1.15!important;letter-spacing:0!important;text-transform:none!important;color:#b8bfa8!important;margin:0 0 18px}
body[data-home-layout="atelier-editorial"] .home-menu-group ul{list-style:none;padding:0;margin:0}
body[data-home-layout="atelier-editorial"] .home-menu-group li{list-style:none;padding:0;margin:0}
body[data-home-layout="atelier-editorial"] .home-menu-group a{display:block;padding:10px 0;min-height:44px;box-sizing:border-box;font-size:17px;line-height:1.45;text-decoration:none;color:#f6f1e7;border-bottom:1px solid #493b32}
body[data-home-layout="atelier-editorial"] .home-menu-group a:hover{color:#b8bfa8}
body[data-home-layout="atelier-editorial"] .home-menu-bottom{margin-top:45px;padding-top:25px;border-top:1px solid #715b4e;display:flex;flex-wrap:wrap;gap:18px 38px}
body[data-home-layout="atelier-editorial"] .home-menu-bottom a{display:inline-flex;align-items:center;min-height:44px;color:#f6f1e7;font-size:17px;text-decoration:none}
body[data-home-layout="atelier-editorial"] .home-menu :focus-visible{outline:2px solid #b8bfa8;outline-offset:5px}
@media(max-width:640px){body[data-home-layout="atelier-editorial"] .home-manifesto{padding:50px var(--home-edge) 60px!important}body[data-home-layout="atelier-editorial"] .home-manifesto-inner{display:block;padding-top:22px}body[data-home-layout="atelier-editorial"] .home-manifesto-label{margin:0 0 28px!important}body[data-home-layout="atelier-editorial"] .home-manifesto h2{font-size:32px!important}body[data-home-layout="atelier-editorial"] .home-manifesto-link{margin-top:35px}body[data-home-layout="atelier-editorial"] .home-menu-grid{grid-template-columns:1fr;gap:32px}body[data-home-layout="atelier-editorial"] .home-menu-shell{padding-top:22px}body[data-home-layout="atelier-editorial"] .home-menu-top{margin-bottom:30px}body[data-home-layout="atelier-editorial"] .home-menu-toggle{width:44px;height:44px}}
/* Light, editorial navigation: primary destinations alongside a course index. */
body[data-home-layout="atelier-editorial"] .home-menu{background:#f3eee7;color:#292522}
body[data-home-layout="atelier-editorial"] .home-menu-shell{padding:22px var(--home-edge) 34px;max-width:1600px;display:flex;flex-direction:column;min-height:100dvh}
body[data-home-layout="atelier-editorial"] .home-menu-top{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;margin-bottom:55px;border-color:#cfc1b8;padding-bottom:16px}
body[data-home-layout="atelier-editorial"] .home-menu-brand{justify-self:start;display:block;width:68px;height:68px}
body[data-home-layout="atelier-editorial"] .home-menu-brand img{width:100%;height:100%;object-fit:contain}
body[data-home-layout="atelier-editorial"] .home-menu-top p{font-size:14px;color:#783f46;text-transform:none;letter-spacing:.03em}
body[data-home-layout="atelier-editorial"] .home-menu-close{justify-self:end;border:1px solid #a1a895;border-radius:50%;color:#292522;background:transparent;transition:background .2s}
body[data-home-layout="atelier-editorial"] .home-menu-close:hover{background:#e8dcd6}
body[data-home-layout="atelier-editorial"] .home-menu-layout{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(0,1fr);gap:10%;flex:1;align-items:start}
body[data-home-layout="atelier-editorial"] .home-menu-primary a{display:grid;grid-template-columns:26px 1fr 28px;gap:15px;align-items:center;text-decoration:none;color:#292522;padding:19px 0;border-bottom:1px solid #cfc1b8;min-height:80px}
body[data-home-layout="atelier-editorial"] .home-menu-primary a:first-child{padding-top:0}
body[data-home-layout="atelier-editorial"] .home-menu-primary h2{font-size:clamp(35px,4.8vw,72px)!important;font-weight:400!important;text-transform:none!important;letter-spacing:-.025em!important;line-height:1.1!important;margin:0!important;color:inherit!important}
body[data-home-layout="atelier-editorial"] .home-menu-primary a>span:last-child{font-size:26px;color:#783f46}
body[data-home-layout="atelier-editorial"] .home-menu-number{font-size:13px;color:#777d6e;align-self:start;padding-top:10px}
body[data-home-layout="atelier-editorial"] .home-menu-primary a:hover{color:#783f46}
body[data-home-layout="atelier-editorial"] .home-menu-courses{border-top:1px solid #a1a895}
body[data-home-layout="atelier-editorial"] .home-menu-group{display:block;padding:0;border-bottom:1px solid #cfc1b8}
body[data-home-layout="atelier-editorial"] .home-menu-group summary{display:flex;justify-content:space-between;align-items:center;gap:24px;cursor:pointer;list-style:none;min-height:74px;padding:20px 0;color:#292522}
body[data-home-layout="atelier-editorial"] .home-menu-group summary::-webkit-details-marker{display:none}
body[data-home-layout="atelier-editorial"] .home-menu-group summary .h3{font-size:clamp(23px,2.6vw,36px)!important;color:inherit!important;text-transform:none!important;letter-spacing:0!important;line-height:1.2!important;margin:0!important}
body[data-home-layout="atelier-editorial"] .home-menu-plus{font-size:26px;font-weight:300;color:#783f46;transition:transform .2s}
body[data-home-layout="atelier-editorial"] .home-menu-group[open] .home-menu-plus{transform:rotate(45deg)}
body[data-home-layout="atelier-editorial"] .home-menu-group[open] summary{color:#783f46}
body[data-home-layout="atelier-editorial"] .home-menu-group ul{padding:0 0 18px 16px;border-left:1px solid #cfc1b8;margin:0 0 22px 0}
body[data-home-layout="atelier-editorial"] .home-menu-group a{font-size:16px;line-height:1.5;padding:9px 0;border:0;color:#694c49;min-height:44px}
body[data-home-layout="atelier-editorial"] .home-menu-group a:hover{color:#292522;text-decoration:underline;text-underline-offset:5px}
body[data-home-layout="atelier-editorial"] .home-menu-bottom{display:flex;align-items:center;gap:30px;padding-top:26px;margin-top:55px;border-color:#cfc1b8}
body[data-home-layout="atelier-editorial"] .home-menu-bottom a{color:#694c49;font-size:15px}
body[data-home-layout="atelier-editorial"] .home-menu-bottom .home-menu-apply{display:flex;justify-content:space-between;gap:50px;padding:17px 23px;background:#783f46;color:#f6f1e7;min-width:225px}
body[data-home-layout="atelier-editorial"] .home-menu-apply:hover{background:#492e32}
body[data-home-layout="atelier-editorial"] .home-menu-languages{margin-left:auto;display:flex;gap:24px}
body[data-home-layout="atelier-editorial"] .home-menu :focus-visible{outline-color:#783f46}
@media(max-width:700px){body[data-home-layout="atelier-editorial"] .home-menu-top{margin-bottom:26px}body[data-home-layout="atelier-editorial"] .home-menu-brand{width:54px;height:54px}body[data-home-layout="atelier-editorial"] .home-menu-layout{display:block}body[data-home-layout="atelier-editorial"] .home-menu-primary{margin-bottom:36px}body[data-home-layout="atelier-editorial"] .home-menu-primary a{padding:15px 0;min-height:66px}body[data-home-layout="atelier-editorial"] .home-menu-primary h2{font-size:40px!important}body[data-home-layout="atelier-editorial"] .home-menu-group summary{min-height:66px}body[data-home-layout="atelier-editorial"] .home-menu-bottom{margin-top:30px;gap:20px;flex-wrap:wrap}body[data-home-layout="atelier-editorial"] .home-menu-bottom .home-menu-apply{width:100%}body[data-home-layout="atelier-editorial"] .home-menu-languages{margin-left:auto}}
/* Familiar single-column drawer, matching the deployed site's navigation model. */
body[data-home-layout="atelier-editorial"] .home-simple-menu{inset:0 auto 0 0;width:min(460px,100%);height:100dvh;max-height:100dvh;background:#f3eee7;box-shadow:12px 0 60px rgba(0,0,0,.18)}
body[data-home-layout="atelier-editorial"] .home-simple-menu::backdrop{background:rgba(20,22,18,.6)}
body[data-home-layout="atelier-editorial"] .home-simple-menu .home-menu-shell{padding:25px 32px 30px;min-height:100%;width:100%;max-width:none;display:flex;flex-direction:column}
body[data-home-layout="atelier-editorial"] .home-simple-menu .home-menu-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px;padding-bottom:18px;border-color:#cfc1b8}
body[data-home-layout="atelier-editorial"] .home-simple-menu .home-menu-top p{font-size:18px;color:#292522}
body[data-home-layout="atelier-editorial"] .home-simple-menu .home-menu-close{width:44px;height:44px;border:0;font-size:32px}
body[data-home-layout="atelier-editorial"] .home-simple-nav{flex:1}
body[data-home-layout="atelier-editorial"] .home-simple-menu ul{margin:0;padding:0;list-style:none}
body[data-home-layout="atelier-editorial"] .home-simple-menu li{margin:0;padding:0;list-style:none;border-bottom:1px solid #cfc1b8}
body[data-home-layout="atelier-editorial"] .home-simple-menu .home-menu-root a,body[data-home-layout="atelier-editorial"] .home-simple-menu .home-category{display:flex;align-items:center;justify-content:space-between;width:100%;min-height:65px;padding:18px 0;background:transparent;border:0;border-radius:0;box-shadow:none;text-align:left;font-size:21px;font-weight:400;line-height:1.35;letter-spacing:0;text-transform:none;text-decoration:none;color:#292522;cursor:pointer}
body[data-home-layout="atelier-editorial"] .home-category>span:last-child{font-size:29px;color:#783f46;line-height:1;padding-left:15px}
body[data-home-layout="atelier-editorial"] .home-simple-menu .home-menu-root a:hover,body[data-home-layout="atelier-editorial"] .home-simple-menu .home-category:hover{color:#783f46}
body[data-home-layout="atelier-editorial"] .home-simple-menu [hidden]{display:none!important}
body[data-home-layout="atelier-editorial"] .home-menu-back{display:flex;align-items:center;gap:10px;min-height:44px;margin:0 0 24px;padding:5px 0;border:0;background:none;color:#783f46;font-size:15px;cursor:pointer}
body[data-home-layout="atelier-editorial"] .home-submenu h2{font-size:32px!important;font-weight:400!important;line-height:1.2!important;text-transform:none!important;letter-spacing:0!important;margin:0 0 22px!important;color:#292522!important}
body[data-home-layout="atelier-editorial"] .home-submenu a{display:block;padding:18px 0;min-height:56px;color:#292522;font-size:18px;line-height:1.5;text-decoration:none}
body[data-home-layout="atelier-editorial"] .home-submenu a:hover{color:#783f46}
body[data-home-layout="atelier-editorial"] .home-simple-menu .home-menu-bottom{display:block;margin-top:35px;padding-top:24px}
body[data-home-layout="atelier-editorial"] .home-simple-menu .home-menu-apply{width:100%;justify-content:center!important;padding:16px 22px;font-size:16px}
body[data-home-layout="atelier-editorial"] .home-simple-meta{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-top:20px}
body[data-home-layout="atelier-editorial"] .home-simple-meta a{font-size:14px!important}
body[data-home-layout="atelier-editorial"] .home-simple-meta .home-menu-languages{gap:18px}
@media(max-width:480px){body[data-home-layout="atelier-editorial"] .home-simple-menu .home-menu-shell{padding:20px 24px 28px}body[data-home-layout="atelier-editorial"] .home-simple-menu .home-menu-root a,body[data-home-layout="atelier-editorial"] .home-simple-menu .home-category{font-size:20px;min-height:62px}}

/* Shared drawer foundations for interior pages. */
body[data-interior-layout] .home-menu-toggle{display:inline-flex!important;align-items:center;justify-content:center;width:48px;height:48px;padding:10px;border:1px solid rgba(246,241,231,.5);border-radius:0;background:transparent;color:#f6f1e7;cursor:pointer;flex:0 0 auto}
body[data-interior-layout] .home-burger{display:flex;flex-direction:column;gap:6px;width:24px}
body[data-interior-layout] .home-burger>span{display:block;height:1px;width:24px;background:currentColor;transition:width .2s}
body[data-interior-layout] .home-burger>span:nth-child(2){width:17px}
body[data-interior-layout] .home-menu-toggle:hover .home-burger>span:nth-child(2){width:24px}
body[data-interior-layout] .home-menu-toggle:focus-visible{outline:2px solid #f6f1e7;outline-offset:5px}
body[data-interior-layout] .home-menu{position:fixed;inset:0;width:100%;height:100%;max-width:none;max-height:100dvh;margin:0;padding:0;border:0;background:#29211c;color:#f6f1e7;overflow:auto;overscroll-behavior:contain}
body[data-interior-layout] .home-menu:not([open]){display:none!important}
body[data-interior-layout] .home-menu::backdrop{background:rgba(25,20,17,.75)}
body[data-interior-layout] .home-menu-shell{max-width:1440px;min-height:100%;margin:auto;padding:32px var(--home-edge) 45px;box-sizing:border-box}
body[data-interior-layout] .home-menu-top{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #715b4e;padding-bottom:22px;margin-bottom:45px}
body[data-interior-layout] .home-menu-top p{font-size:18px;margin:0;color:#b8bfa8}
body[data-interior-layout] .home-menu-close{display:flex;align-items:center;justify-content:center;width:48px;height:48px;padding:0;border:1px solid #9d8170;background:transparent;color:#f6f1e7;font-size:38px;line-height:1;cursor:pointer}
body[data-interior-layout] .home-menu-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:40px 10%}
body[data-interior-layout] .home-menu-group{padding:0;margin:0;background:transparent}
body[data-interior-layout] .home-menu-group h2{font-size:clamp(25px,3vw,42px)!important;font-weight:400!important;line-height:1.15!important;letter-spacing:0!important;text-transform:none!important;color:#b8bfa8!important;margin:0 0 18px}
body[data-interior-layout] .home-menu-group ul{list-style:none;padding:0;margin:0}
body[data-interior-layout] .home-menu-group li{list-style:none;padding:0;margin:0}
body[data-interior-layout] .home-menu-group a{display:block;padding:10px 0;min-height:44px;box-sizing:border-box;font-size:17px;line-height:1.45;text-decoration:none;color:#f6f1e7;border-bottom:1px solid #493b32}
body[data-interior-layout] .home-menu-group a:hover{color:#b8bfa8}
body[data-interior-layout] .home-menu-bottom{margin-top:45px;padding-top:25px;border-top:1px solid #715b4e;display:flex;flex-wrap:wrap;gap:18px 38px}
body[data-interior-layout] .home-menu-bottom a{display:inline-flex;align-items:center;min-height:44px;color:#f6f1e7;font-size:17px;text-decoration:none}
body[data-interior-layout] .home-menu :focus-visible{outline:2px solid #b8bfa8;outline-offset:5px}
body[data-interior-layout] .home-menu{background:#f3eee7;color:#292522}
body[data-interior-layout] .home-menu-shell{padding:22px var(--home-edge) 34px;max-width:1600px;display:flex;flex-direction:column;min-height:100dvh}
body[data-interior-layout] .home-menu-top{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;margin-bottom:55px;border-color:#cfc1b8;padding-bottom:16px}
body[data-interior-layout] .home-menu-brand{justify-self:start;display:block;width:68px;height:68px}
body[data-interior-layout] .home-menu-brand img{width:100%;height:100%;object-fit:contain}
body[data-interior-layout] .home-menu-top p{font-size:14px;color:#783f46;text-transform:none;letter-spacing:.03em}
body[data-interior-layout] .home-menu-close{justify-self:end;border:1px solid #a1a895;border-radius:50%;color:#292522;background:transparent;transition:background .2s}
body[data-interior-layout] .home-menu-close:hover{background:#e8dcd6}
body[data-interior-layout] .home-menu-layout{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(0,1fr);gap:10%;flex:1;align-items:start}
body[data-interior-layout] .home-menu-primary a{display:grid;grid-template-columns:26px 1fr 28px;gap:15px;align-items:center;text-decoration:none;color:#292522;padding:19px 0;border-bottom:1px solid #cfc1b8;min-height:80px}
body[data-interior-layout] .home-menu-primary a:first-child{padding-top:0}
body[data-interior-layout] .home-menu-primary h2{font-size:clamp(35px,4.8vw,72px)!important;font-weight:400!important;text-transform:none!important;letter-spacing:-.025em!important;line-height:1.1!important;margin:0!important;color:inherit!important}
body[data-interior-layout] .home-menu-primary a>span:last-child{font-size:26px;color:#783f46}
body[data-interior-layout] .home-menu-number{font-size:13px;color:#777d6e;align-self:start;padding-top:10px}
body[data-interior-layout] .home-menu-primary a:hover{color:#783f46}
body[data-interior-layout] .home-menu-courses{border-top:1px solid #a1a895}
body[data-interior-layout] .home-menu-group{display:block;padding:0;border-bottom:1px solid #cfc1b8}
body[data-interior-layout] .home-menu-group summary{display:flex;justify-content:space-between;align-items:center;gap:24px;cursor:pointer;list-style:none;min-height:74px;padding:20px 0;color:#292522}
body[data-interior-layout] .home-menu-group summary::-webkit-details-marker{display:none}
body[data-interior-layout] .home-menu-group summary .h3{font-size:clamp(23px,2.6vw,36px)!important;color:inherit!important;text-transform:none!important;letter-spacing:0!important;line-height:1.2!important;margin:0!important}
body[data-interior-layout] .home-menu-plus{font-size:26px;font-weight:300;color:#783f46;transition:transform .2s}
body[data-interior-layout] .home-menu-group[open] .home-menu-plus{transform:rotate(45deg)}
body[data-interior-layout] .home-menu-group[open] summary{color:#783f46}
body[data-interior-layout] .home-menu-group ul{padding:0 0 18px 16px;border-left:1px solid #cfc1b8;margin:0 0 22px 0}
body[data-interior-layout] .home-menu-group a{font-size:16px;line-height:1.5;padding:9px 0;border:0;color:#694c49;min-height:44px}
body[data-interior-layout] .home-menu-group a:hover{color:#292522;text-decoration:underline;text-underline-offset:5px}
body[data-interior-layout] .home-menu-bottom{display:flex;align-items:center;gap:30px;padding-top:26px;margin-top:55px;border-color:#cfc1b8}
body[data-interior-layout] .home-menu-bottom a{color:#694c49;font-size:15px}
body[data-interior-layout] .home-menu-bottom .home-menu-apply{display:flex;justify-content:space-between;gap:50px;padding:17px 23px;background:#783f46;color:#f6f1e7;min-width:225px}
body[data-interior-layout] .home-menu-apply:hover{background:#492e32}
body[data-interior-layout] .home-menu-languages{margin-left:auto;display:flex;gap:24px}
body[data-interior-layout] .home-menu :focus-visible{outline-color:#783f46}
body[data-interior-layout] .home-simple-menu{inset:0 auto 0 0;width:min(460px,100%);height:100dvh;max-height:100dvh;background:#f3eee7;box-shadow:12px 0 60px rgba(0,0,0,.18)}
body[data-interior-layout] .home-simple-menu::backdrop{background:rgba(20,22,18,.6)}
body[data-interior-layout] .home-simple-menu .home-menu-shell{padding:25px 32px 30px;min-height:100%;width:100%;max-width:none;display:flex;flex-direction:column}
body[data-interior-layout] .home-simple-menu .home-menu-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px;padding-bottom:18px;border-color:#cfc1b8}
body[data-interior-layout] .home-simple-menu .home-menu-top p{font-size:18px;color:#292522}
body[data-interior-layout] .home-simple-menu .home-menu-close{width:44px;height:44px;border:0;font-size:32px}
body[data-interior-layout] .home-simple-nav{flex:1}
body[data-interior-layout] .home-simple-menu ul{margin:0;padding:0;list-style:none}
body[data-interior-layout] .home-simple-menu li{margin:0;padding:0;list-style:none;border-bottom:1px solid #cfc1b8}
body[data-interior-layout] .home-simple-menu .home-menu-root a,body[data-interior-layout] .home-simple-menu .home-category{display:flex;align-items:center;justify-content:space-between;width:100%;min-height:65px;padding:18px 0;background:transparent;border:0;border-radius:0;box-shadow:none;text-align:left;font-size:21px;font-weight:400;line-height:1.35;letter-spacing:0;text-transform:none;text-decoration:none;color:#292522;cursor:pointer}
body[data-interior-layout] .home-category>span:last-child{font-size:29px;color:#783f46;line-height:1;padding-left:15px}
body[data-interior-layout] .home-simple-menu .home-menu-root a:hover,body[data-interior-layout] .home-simple-menu .home-category:hover{color:#783f46}
body[data-interior-layout] .home-simple-menu [hidden]{display:none!important}
body[data-interior-layout] .home-menu-back{display:flex;align-items:center;gap:10px;min-height:44px;margin:0 0 24px;padding:5px 0;border:0;background:none;color:#783f46;font-size:15px;cursor:pointer}
body[data-interior-layout] .home-submenu h2{font-size:32px!important;font-weight:400!important;line-height:1.2!important;text-transform:none!important;letter-spacing:0!important;margin:0 0 22px!important;color:#292522!important}
body[data-interior-layout] .home-submenu a{display:block;padding:18px 0;min-height:56px;color:#292522;font-size:18px;line-height:1.5;text-decoration:none}
body[data-interior-layout] .home-submenu a:hover{color:#783f46}
body[data-interior-layout] .home-simple-menu .home-menu-bottom{display:block;margin-top:35px;padding-top:24px}
body[data-interior-layout] .home-simple-menu .home-menu-apply{width:100%;justify-content:center!important;padding:16px 22px;font-size:16px}
body[data-interior-layout] .home-simple-meta{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-top:20px}
body[data-interior-layout] .home-simple-meta a{font-size:14px!important}
body[data-interior-layout] .home-simple-meta .home-menu-languages{gap:18px}
/* Shared Atelier navigation styling, built into the site's existing font system. */
:root{--nav-surface:var(--atelier-paper);--nav-ink:var(--atelier-ink);--nav-accent:var(--atelier-blue);--nav-rule:var(--atelier-line);--nav-edge:clamp(24px,3.2vw,48px)}
body .imt-navigation.home-simple-menu{width:min(580px,100%)!important;background:var(--nav-surface)!important;color:var(--nav-ink)!important;box-shadow:none!important;border-right:1px solid var(--nav-rule)!important}
body .imt-navigation.home-simple-menu::backdrop{background:rgba(25,27,23,.46)!important;backdrop-filter:blur(3px)}
body .imt-navigation.home-simple-menu .home-menu-shell{padding:24px var(--nav-edge) 32px!important}
body .imt-navigation.home-simple-menu .home-menu-top{display:grid!important;grid-template-columns:64px 1fr 44px!important;gap:22px!important;align-items:center!important;border-color:var(--nav-rule)!important;padding-bottom:20px!important;margin-bottom:24px!important}
body .imt-navigation .imt-navigation-brand{width:64px;height:64px;display:block}
body .imt-navigation .imt-navigation-brand img{width:100%;height:100%;object-fit:contain}
body .imt-navigation.home-simple-menu .home-menu-top p{font-size:14px!important;line-height:1.4!important;color:var(--nav-accent)!important;letter-spacing:.04em!important;margin:0!important}
body .imt-navigation.home-simple-menu .home-menu-close{border:1px solid var(--nav-rule)!important;border-radius:50%!important;font-size:30px!important;background:transparent!important;color:var(--nav-accent)!important}
body .imt-navigation.home-simple-menu .home-menu-root li,body .imt-navigation.home-simple-menu .home-submenu li{border-color:var(--nav-rule)!important}
body .imt-navigation.home-simple-menu .home-menu-root a,body .imt-navigation.home-simple-menu .home-category{padding:20px 0!important;min-height:78px!important;gap:24px!important;align-items:center!important}
body .imt-navigation.home-simple-menu .home-menu-root .h3{display:block;font-size:clamp(28px,3vw,38px)!important;font-weight:400!important;line-height:1.2!important;letter-spacing:-.012em!important;text-transform:none!important;color:inherit!important;margin:0!important}
body .imt-navigation .home-menu-root a>span:last-child,body .imt-navigation .home-category>span:last-child{font-size:27px!important;font-weight:400!important;line-height:1!important;color:var(--nav-accent)!important;transition:transform .25s;flex-shrink:0}
body .imt-navigation .home-category:hover>span:last-child{transform:translateX(4px)}
body .imt-navigation .home-menu-root a:hover>span:last-child{transform:translate(3px,-3px)}
body .imt-navigation.home-simple-menu .home-menu-root a:hover,body .imt-navigation.home-simple-menu .home-category:hover{color:var(--nav-accent)!important}
body .imt-navigation .home-menu-back{font-size:14px!important;color:var(--nav-accent)!important;border-bottom:1px solid var(--nav-rule)!important;padding-bottom:10px!important;margin-bottom:30px!important}
body .imt-navigation .home-submenu h2{font-size:clamp(34px,3.7vw,48px)!important;line-height:1.1!important;font-weight:400!important;letter-spacing:-.02em!important;text-transform:none!important;color:var(--nav-ink)!important;margin-bottom:28px!important}
body .imt-navigation .home-submenu a{font-size:17px!important;line-height:1.6!important;padding:17px 0!important;color:var(--nav-ink)!important}
body .imt-navigation.home-simple-menu .home-menu-bottom{margin-top:38px!important;padding-top:0!important;border-top:0!important}
body .imt-navigation.home-simple-menu .home-menu-apply{display:flex!important;align-items:center!important;justify-content:space-between!important;padding:20px 24px!important;background:var(--nav-accent)!important;color:var(--nav-surface)!important;border:0!important;font-size:16px!important;min-height:64px!important}
body .imt-navigation .home-menu-apply>span{font-size:27px!important}
body .imt-navigation.home-simple-menu .home-menu-apply:hover{background:var(--nav-ink)!important}
body .imt-navigation .home-simple-meta{padding-top:15px;border-top:1px solid var(--nav-rule);margin-top:24px!important}
body .imt-navigation .home-simple-meta a{color:var(--nav-accent)!important}
body .imt-navigation :focus-visible{outline:2px solid var(--nav-accent)!important;outline-offset:5px}
@media(max-width:480px){body .imt-navigation.home-simple-menu .home-menu-shell{padding-top:16px!important}body .imt-navigation.home-simple-menu .home-menu-top{grid-template-columns:52px 1fr 44px!important;gap:16px!important;margin-bottom:18px!important}body .imt-navigation .imt-navigation-brand{width:52px;height:52px}body .imt-navigation.home-simple-menu .home-menu-root a,body .imt-navigation.home-simple-menu .home-category{min-height:70px!important;padding:17px 0!important}body .imt-navigation.home-simple-menu .home-menu-root .h3{font-size:29px!important}body .imt-navigation .home-submenu h2{font-size:36px!important}}
@media(prefers-reduced-motion:reduce){body .imt-navigation *{transition:none!important}body .imt-navigation .home-menu-root a:hover>span:last-child,body .imt-navigation .home-category:hover>span:last-child{transform:none}}

/* Atelier interiors: original typography, paper surfaces and olive details. */
body[data-interior-layout]{--interior-edge:clamp(24px,6.5vw,104px);background:var(--atelier-paper);color:var(--atelier-ink)}
body[data-interior-layout] .atelier-section{padding:clamp(64px,8vw,120px) var(--interior-edge)!important;background:var(--atelier-paper)!important;color:var(--atelier-ink)!important;border-bottom:1px solid var(--atelier-line);box-sizing:border-box}
body[data-interior-layout] .atelier-section :is(.content,.section,.imt-story2__inner,.imt-vision2__inner,.imt-approach__inner){max-width:1320px!important;margin-inline:auto!important;width:100%!important}
body[data-interior-layout] .atelier-section :is(p,li,.h3,.h5,.imt-seclead,.imt-story2__body p,.imt-story2__body span,.imt-story2__body strong,.imt-story2__body em,.imt-vision2__body p){color:var(--atelier-ink)!important;text-transform:none!important}
body[data-interior-layout] .atelier-section :is(p,li){font-size:17px;line-height:1.75}
body[data-interior-layout] .atelier-section :is(h1,h2,h3,.imt-seclead,.h3){font-weight:400!important;text-transform:none!important;letter-spacing:-.025em!important;line-height:1.12!important}
body[data-interior-layout] .atelier-section :is(h2,.imt-seclead){font-size:clamp(32px,4.2vw,62px)!important;max-width:24ch}
body[data-interior-layout] .atelier-section :is(.imt-sechead,.eyebrow){font-size:13px!important;line-height:1.5!important;letter-spacing:.08em!important;color:var(--atelier-blue)!important;margin-bottom:28px!important}
body[data-interior-layout] .atelier-page-hero{padding-top:180px!important;padding-bottom:90px!important;min-height:0!important;background-image:none!important;text-align:left!important}
body[data-interior-layout] .atelier-page-hero :is(.content,.txt-center){text-align:left!important}
body[data-interior-layout] .atelier-page-hero h1{font-size:clamp(46px,6.9vw,104px)!important;color:var(--atelier-ink)!important;max-width:18ch!important;margin:0 0 36px!important}
body[data-interior-layout] .atelier-page-hero .content>p:not(.eyebrow){max-width:64ch;margin-left:0!important}
body[data-interior-layout] .atelier-section :is(.imt-story2__body,.imt-approach__intro,.imt-vision2__body){max-width:65ch!important}
body[data-interior-layout] .atelier-section .imt-approach__grid{gap:36px 7%!important;margin-top:48px!important}
body[data-interior-layout] .atelier-section .imt-approach__grid.imt-2col{columns:unset!important;display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important}
body[data-interior-layout] .atelier-section .imt-pillars2{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:0 7%!important;margin:45px 0 0!important}
body[data-interior-layout] .atelier-section .imt-pillar2{display:grid!important;grid-template-columns:32px minmax(0,1fr)!important;gap:20px!important;border-top:1px solid var(--atelier-line)!important;padding:25px 0!important}
body[data-interior-layout] .atelier-section .imt-pillar2 span{font-size:19px!important;line-height:1.6!important}
body[data-interior-layout] .atelier-section .imt-pillar2 b{font-size:13px!important;line-height:2!important}
body[data-interior-layout] .atelier-section .imt-vision2__note{margin-top:36px!important;max-width:65ch}
body[data-interior-layout] .atelier-section.section-text-content:not(.atelier-page-hero) .content{max-width:1040px!important;text-align:left!important}
body[data-interior-layout] .atelier-section.section-text-content:not(.atelier-page-hero) .content>p{max-width:70ch}
body[data-interior-layout] .atelier-section :is(.btn,.k-btn){background:var(--atelier-blue)!important;color:var(--atelier-paper)!important;border:1px solid var(--atelier-blue)!important;border-radius:0!important;box-shadow:none!important}
body[data-interior-layout] .atelier-section :is(.btn__txt,.btn__txt-inner){color:var(--atelier-paper)!important}
body[data-interior-layout] .atelier-section :is(.k-link,.imt-story2__body a){color:var(--atelier-blue)!important}
body[data-interior-layout] .atelier-closing{background:#e8dcd6!important}
body[data-interior-layout] .atelier-closing :is(.imt-seclead,.imt-sechead,.k-link,.edu-cta__note){color:var(--atelier-ink)!important}
body[data-interior-layout] .imt-eduintro p{font-size:clamp(25px,3vw,42px)!important;line-height:1.4!important;max-width:1000px!important;margin-inline:auto}
body[data-interior-layout] .imt-edu{display:grid!important;grid-template-columns:minmax(0,1.1fr) minmax(0,.8fr)!important;gap:9%!important;padding:64px 0!important;border-top:1px solid var(--atelier-line)!important;align-items:start!important}
body[data-interior-layout] .imt-edu__txt{grid-column:1!important;grid-row:1!important;max-width:65ch}
body[data-interior-layout] .imt-edu__photo{grid-column:2!important;grid-row:1!important;margin:0!important;width:100%!important}
body[data-interior-layout] .imt-edu__photo img{width:100%!important;height:auto!important;aspect-ratio:4/5;object-fit:cover}
body[data-interior-layout] .imt-edu__txt h2{font-size:clamp(38px,4.5vw,66px)!important}
body[data-interior-layout] .imt-edu__role{color:var(--atelier-blue)!important}
body[data-interior-layout] :is(.imt-week,.imt-faq){background:transparent!important;border-radius:0!important;box-shadow:none!important;border:0!important;border-top:1px solid var(--atelier-line)!important;padding:26px 0!important}
body[data-interior-layout] .imt-week{display:grid!important;grid-template-columns:80px minmax(0,1fr) minmax(0,1.5fr)!important;gap:24px!important}
body[data-interior-layout] .imt-week .wk{color:var(--atelier-blue)!important}
body[data-interior-layout] .imt-faq summary{font-size:22px!important;line-height:1.4!important;padding:8px 36px 8px 0!important;cursor:pointer}
body[data-interior-layout] .imt-faq p{max-width:65ch}
body[data-interior-layout] .imt-blog{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:0 7%!important}
body[data-interior-layout] .imt-blog a{display:flex!important;flex-direction:column!important;gap:20px!important;align-items:start!important;min-height:140px!important;color:var(--atelier-ink)!important}
body[data-interior-layout] .imt-blog .cat{font-size:12px!important;color:var(--atelier-blue)!important}
body[data-interior-layout] .imt-gal{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:24px!important}
body[data-interior-layout] .imt-gal .cell{background:#e8dcd6!important;border:1px solid var(--atelier-line)!important;border-radius:0!important;color:var(--atelier-blue)!important;min-height:220px}
body[data-interior-layout] :is(input,select,textarea){border-radius:0!important;background:transparent!important;color:var(--atelier-ink)!important;border:1px solid var(--atelier-line)!important;padding:15px!important;max-width:100%;box-sizing:border-box}
body[data-interior-layout="legal"] .atelier-section:not(.atelier-page-hero) .content{max-width:780px!important;margin-inline:auto!important}
body[data-interior-layout="legal"] .atelier-section:not(.atelier-page-hero) h2{font-size:30px!important;margin-top:48px!important}
body[data-interior-layout]:not([data-atelier-page^="about"]):not([data-atelier-page^="educators"]) .header{background:var(--atelier-paper)!important;color:var(--atelier-ink)!important;position:fixed!important}
body[data-interior-layout]:not([data-atelier-page^="about"]):not([data-atelier-page^="educators"]) .header__logo-img{filter:brightness(0)!important}
body[data-interior-layout]:not([data-atelier-page^="about"]):not([data-atelier-page^="educators"]) .header :is(.home-menu-toggle,.imt-lang a){color:var(--atelier-ink)!important;border-color:var(--atelier-line)!important}
body[data-interior-layout] :focus-visible{outline:2px solid var(--atelier-blue);outline-offset:5px}
@media(max-width:760px){
body[data-interior-layout] .atelier-page-hero{padding-top:140px!important}
body[data-interior-layout] .atelier-section :is(.imt-story2__inner,.imt-approach__inner){display:block!important}
body[data-interior-layout] .atelier-section :is(.imt-story2__body,.imt-approach__intro){margin-top:28px!important}
body[data-interior-layout] .atelier-section :is(.imt-pillars2,.imt-approach__grid,.imt-approach__grid.imt-2col),body[data-interior-layout] .imt-blog{grid-template-columns:1fr!important}
body[data-interior-layout] .imt-edu{grid-template-columns:1fr!important;gap:32px!important;padding:40px 0!important}
body[data-interior-layout] .imt-edu__txt{grid-column:1!important;grid-row:2!important}
body[data-interior-layout] .imt-edu__photo{grid-column:1!important;grid-row:1!important;max-width:420px}
body[data-interior-layout] .imt-week{grid-template-columns:54px minmax(0,1fr)!important;gap:12px!important}
body[data-interior-layout] .imt-week .desc{grid-column:2!important}
body[data-interior-layout] .imt-gal{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px!important}
body[data-interior-layout] .imt-gal .cell{min-height:160px}
}
body[data-interior-layout] .atelier-section .h2{font-size:clamp(34px,4.5vw,64px)!important;line-height:1.12!important;font-weight:400!important;text-transform:none!important;color:var(--atelier-ink)!important}
body[data-interior-layout] .imt-week .desc{grid-column:3!important}
body[data-interior-layout] .interior-cover{margin:48px 0 0;width:100%;height:clamp(260px,38vw,540px);overflow:hidden}
body[data-interior-layout] .interior-cover img{width:100%;height:100%;object-fit:cover;display:block}
@media(max-width:760px){body[data-interior-layout] .imt-week .desc{grid-column:2!important}}

/* Compositions drawn from the Atelier study, using the actual IMT copy. */
body[data-editorial-composition]{--at-olive:#783f46;--at-wash:#e8dcd6;--at-rule:#c4c3b9}
body[data-editorial-composition] .at-index{display:inline-block;font-size:12px!important;line-height:1.4!important;font-weight:400!important;letter-spacing:.04em;color:var(--at-olive);flex:none}
body[data-editorial-composition] .at-section-meta{display:flex;align-items:baseline;gap:24px;padding-top:20px;border-top:1px solid var(--at-rule);margin-bottom:44px}
body[data-editorial-composition] .at-section-meta .imt-sechead{margin:0!important;font-size:13px!important;text-transform:none!important}
body[data-editorial-composition] .at-photo{margin:0;min-width:0;overflow:hidden}
body[data-editorial-composition] .at-photo img{width:100%;height:100%;object-fit:cover;display:block}
/* The school: opening statement, offset studio photographs, then a working method. */
body[data-interior-layout] .at-story{padding-top:72px!important;border:0!important}
body[data-interior-layout] .at-story .at-story-opening .imt-seclead{font-size:clamp(48px,7vw,108px)!important;max-width:20ch!important;margin:0 0 64px!important;line-height:1.02!important;color:var(--atelier-ink)!important}
body[data-interior-layout] .at-story-spread{display:grid;grid-template-columns:1.05fr .75fr;gap:0 12%;align-items:start;position:relative}
body[data-interior-layout] .at-story-portrait{height:clamp(430px,55vw,780px);grid-column:1;grid-row:1/3}
body[data-interior-layout] .at-story-copy{padding-top:45px;grid-column:2;grid-row:1}
body[data-interior-layout] .at-story-copy p:first-child{font-size:clamp(23px,2.4vw,34px)!important;line-height:1.4!important;margin-bottom:32px!important}
body[data-interior-layout] .at-story-copy p{max-width:44ch}
body[data-interior-layout] .at-school-mark{display:block;font-size:clamp(72px,10vw,150px);font-weight:600;line-height:1;letter-spacing:-.08em;color:var(--at-olive);opacity:.22;margin:40px 0}
body[data-interior-layout] .at-story-detail{grid-column:2;grid-row:2;height:clamp(220px,25vw,360px);margin:0 0 -30px -20%;width:120%;border:14px solid var(--atelier-paper);box-sizing:border-box}
body[data-interior-layout] .at-method{display:grid!important;grid-template-columns:minmax(0,.9fr) minmax(0,1fr)!important;gap:12%!important;background:var(--at-wash)!important;border:0!important}
body[data-interior-layout] .at-method-heading>.imt-seclead{font-size:clamp(42px,5vw,76px)!important;max-width:14ch!important;margin:0 0 35px!important}
body[data-interior-layout] .at-method-heading>p:not(.imt-seclead){max-width:45ch}
body[data-interior-layout] .at-method-rows{padding-top:80px;min-width:0}
body[data-interior-layout] .at-method .k-acc{border-top:1px solid #b4b8a9!important;padding:26px 0!important}
body[data-interior-layout] .at-method .k-acc__t{display:grid;grid-template-columns:28px minmax(0,1fr);gap:20px;font-size:clamp(25px,2.8vw,38px)!important;line-height:1.2!important;list-style:none;position:relative;padding-right:32px!important}
body[data-interior-layout] .at-method .k-acc__t .at-index{padding-top:9px}
body[data-interior-layout] :is(.at-method,.at-curriculum) summary::-webkit-details-marker{display:none}
body[data-interior-layout] :is(.at-method,.at-curriculum) summary:after{content:'+';position:absolute;right:0;top:0;font-size:26px;font-weight:300;line-height:1.3;color:var(--at-olive)}
body[data-interior-layout] :is(.at-method,.at-curriculum) details[open]>summary:after{content:'−'}
body[data-interior-layout] .at-method .k-acc__b{padding-left:48px!important;box-sizing:border-box;line-height:1.7!important}
body[data-interior-layout] .at-orbits{position:relative;width:260px;height:180px;display:grid;place-items:center;color:var(--at-olive);margin:44px 0 0;opacity:.75}
body[data-interior-layout] .at-orbits i{position:absolute;width:150px;height:150px;border:1px solid currentColor;border-radius:50%;left:0}
body[data-interior-layout] .at-orbits i:nth-child(2){left:55px}
body[data-interior-layout] .at-orbits i:nth-child(3){left:110px}
body[data-interior-layout] .at-orbits span{font-size:12px;letter-spacing:.15em}
/* Five actual pillars, connected visually rather than presented as generic cards. */
body[data-interior-layout] .at-vision{border:0!important}
body[data-interior-layout] .at-vision-heading{display:grid;grid-template-columns:1.25fr .65fr;gap:10%;align-items:end;margin-bottom:70px}
body[data-interior-layout] .at-vision-heading>.imt-seclead{font-size:clamp(42px,5.5vw,82px)!important;max-width:18ch!important;margin:0!important}
body[data-interior-layout] .at-pillars{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:0;margin:40px 0 90px;position:relative}
body[data-interior-layout] .at-pillars:before{content:'';position:absolute;left:10%;right:10%;top:42px;border-top:1px solid var(--at-rule)}
body[data-interior-layout] .at-pillars .imt-pillar2{display:flex!important;flex-direction:column!important;align-items:center!important;text-align:center;gap:28px!important;border:0!important;padding:0 10px!important;position:relative}
body[data-interior-layout] .at-pillars .imt-pillar2 b{display:grid;place-items:center;width:84px;height:84px;border:1px solid var(--at-olive);border-radius:50%;background:var(--atelier-paper);font-size:17px!important;line-height:1!important}
body[data-interior-layout] .at-pillars .imt-pillar2 span{font-size:clamp(17px,1.7vw,24px)!important;line-height:1.35!important;max-width:16ch!important}
body[data-interior-layout] .at-vision-end{display:grid;grid-template-columns:1.15fr .85fr;gap:10%;align-items:center}
body[data-interior-layout] .at-vision-end .at-photo{aspect-ratio:1.45}
body[data-interior-layout] .at-vision-end .imt-vision2__note{font-size:clamp(28px,3.2vw,46px)!important;line-height:1.25!important;margin-top:35px!important;color:var(--at-olive)!important}
/* Course opening: display title above a photograph and a substantial reading panel. */
body[data-interior-layout] .at-course-opening{padding-top:170px!important;border:0!important;padding-bottom:68px!important}
body[data-interior-layout] .at-course-title{max-width:1250px;margin-bottom:58px}
body[data-interior-layout] .at-course-title :is(h1,.imt-seclead){font-size:clamp(48px,7.8vw,116px)!important;line-height:1.02!important;max-width:20ch!important;margin:0!important;color:var(--atelier-ink)!important}
body[data-interior-layout] .at-course-cover{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(0,1fr);align-items:stretch;position:relative}
body[data-interior-layout] .at-course-cover>.at-photo{min-height:520px}
body[data-interior-layout] .at-course-intro{background:var(--at-wash);padding:clamp(28px,4vw,62px);align-self:end;margin:60px 0 0 -42px;position:relative;min-width:0}
body[data-interior-layout] .at-course-intro p:first-child{font-size:clamp(22px,2.4vw,32px)!important;line-height:1.4!important}
body[data-interior-layout] .at-course-intro p{font-size:16px!important;line-height:1.75!important;margin-bottom:20px}
body[data-interior-layout] .at-course-intro p:last-child{margin-bottom:0}
body[data-interior-layout] .at-study-index{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0 36px;padding:0 var(--interior-edge) 70px;background:var(--atelier-paper)}
body[data-interior-layout] .at-study-index a{display:grid;grid-template-columns:24px minmax(0,1fr) 20px;align-items:start;gap:12px;border-top:1px solid var(--at-rule);padding:20px 0;min-width:0;font-size:15px;line-height:1.5;color:var(--atelier-ink);text-decoration:none}
body[data-interior-layout] .at-study-index a:hover{color:var(--at-olive)}
body[data-interior-layout] .at-study-chapter{scroll-margin-top:30px}
body[data-interior-layout] .at-study-chapter.imt-story2{background:var(--at-wash)!important;border:0!important}
body[data-interior-layout] .at-study-chapter.imt-story2 .imt-story2__inner{grid-template-columns:minmax(0,1fr) minmax(0,.85fr)!important;gap:0 12%!important}
body[data-interior-layout] .at-study-chapter.imt-story2 .imt-seclead{font-size:clamp(40px,5vw,74px)!important;line-height:1.08!important}
body[data-interior-layout] .at-duration{padding-block:50px!important;border-bottom:1px solid var(--at-rule)!important}
body[data-interior-layout] .at-duration .imt-pillars2{display:grid!important;grid-template-columns:repeat(5,minmax(0,1fr))!important;gap:24px!important;margin-top:32px!important}
body[data-interior-layout] .at-duration .imt-pillar2{display:flex!important;flex-direction:column!important;gap:16px!important;padding:20px 0!important}
body[data-interior-layout] .at-duration .imt-pillar2 span{font-size:clamp(21px,2.3vw,32px)!important;line-height:1.3!important}
body[data-interior-layout] .at-duration .imt-vision2__body{margin-top:28px!important}
body[data-interior-layout] .at-curriculum .imt-approach__inner{display:grid!important;grid-template-columns:minmax(0,.45fr) minmax(0,1fr)!important;gap:0 9%!important;align-items:start}
body[data-interior-layout] .at-curriculum .imt-approach__inner>.imt-sechead{grid-column:1!important;grid-row:1!important;font-size:clamp(28px,3vw,44px)!important;line-height:1.15!important;letter-spacing:-.02em!important;position:sticky;top:40px}
body[data-interior-layout] .at-curriculum .imt-approach__inner>.imt-approach__grid{grid-column:2!important;grid-row:1!important;grid-template-columns:1fr!important;gap:0!important;margin:0!important}
body[data-interior-layout] .at-curriculum .imt-approach__inner>.imt-outro{grid-column:2!important;grid-row:2!important;padding-top:30px;border-top:1px solid var(--at-rule)}
body[data-interior-layout] .at-curriculum .k-acc__t{display:grid;grid-template-columns:26px minmax(0,1fr);gap:16px;position:relative;list-style:none;font-size:clamp(22px,2.25vw,32px)!important;line-height:1.25!important;padding-right:32px!important}
body[data-interior-layout] .at-curriculum .k-acc__t .at-index{padding-top:7px}
body[data-interior-layout] .at-curriculum .k-acc__b{padding-left:42px!important;box-sizing:border-box;font-size:16px!important;line-height:1.75!important}
/* Faculty: a staggered portrait catalogue; every biography remains present. */
body[data-interior-layout] .imt-eduintro{padding-block:85px!important}
body[data-interior-layout] .imt-eduintro p{font-size:clamp(29px,3.8vw,54px)!important;max-width:1000px!important;line-height:1.35!important;margin:0!important}
body[data-interior-layout] .imt-educators{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;align-items:start;gap:90px 10%!important;border:0!important;padding-top:20px!important}
body[data-interior-layout] .imt-educators .imt-edu{display:flex!important;flex-direction:column!important;padding:0!important;gap:0!important;position:relative;border:0!important;min-width:0}
body[data-interior-layout] .imt-educators .imt-edu:nth-child(even){margin-top:150px}
body[data-interior-layout] .imt-educators .imt-edu>.at-index{order:0;position:absolute;top:18px;left:18px;z-index:1;background:var(--atelier-paper);border-radius:50%;width:42px;height:42px;display:grid;place-items:center}
body[data-interior-layout] .imt-educators .imt-edu__photo{order:1;width:100%!important;max-width:none!important;overflow:hidden;margin:0 0 28px!important}
body[data-interior-layout] .imt-educators .imt-edu__photo img{aspect-ratio:4/5;object-fit:cover;object-position:center 22%;height:auto!important;filter:saturate(.75)}
body[data-interior-layout] .imt-educators .imt-edu__txt{order:2;width:100%;max-width:none!important}
body[data-interior-layout] .imt-educators .imt-edu__name{font-size:clamp(34px,3.8vw,55px)!important;margin:0 0 16px!important}
body[data-interior-layout] .imt-educators .imt-edu__role{font-size:13px!important;line-height:1.6!important;color:var(--at-olive)!important;max-width:48ch;margin-bottom:28px!important;padding-bottom:24px;border-bottom:1px solid var(--at-rule)}
body[data-interior-layout] .imt-educators .imt-edu__bio{font-size:16px!important;line-height:1.75!important}
body[data-interior-layout] .imt-educators .imt-edu__more a{color:var(--at-olive)!important;text-underline-offset:6px}
/* Focused studies use a numbered catalogue, not repeated full-screen sections. */
body[data-interior-layout] .at-course-listing{padding-block:46px!important}
body[data-interior-layout] .at-course-listing .content{display:grid!important;grid-template-columns:60px minmax(0,1fr) minmax(0,1fr);gap:14px 5%;align-items:start}
body[data-interior-layout] .at-course-listing .content>.at-index{grid-column:1;grid-row:1/4;padding-top:4px}
body[data-interior-layout] .at-course-listing .content>.eyebrow{grid-column:2;grid-row:1;margin:0!important}
body[data-interior-layout] .at-course-listing .content>p:nth-of-type(2){grid-column:2;grid-row:2}
body[data-interior-layout] .at-course-listing .content>p:nth-of-type(n+3){grid-column:3}
body[data-interior-layout] .at-course-listing .content>p:nth-of-type(3){grid-row:1/3}
body[data-interior-layout] .at-course-listing .h3{font-size:clamp(28px,3vw,44px)!important;line-height:1.15!important}
/* Closing invitation follows the quiet, sentence-case homepage ending. */
body[data-editorial-composition] .atelier-closing{background:var(--at-wash)!important;border:0!important;padding-block:80px!important}
body[data-editorial-composition] .atelier-closing .imt-seclead{font-size:clamp(42px,6vw,86px)!important;max-width:20ch!important;line-height:1.05!important;margin-bottom:40px!important}
body[data-editorial-composition] .atelier-closing :is(.about-cta__inner,.edu-cta__inner){position:relative;border-top:1px solid #b4b8a9;padding-top:30px!important}
body[data-editorial-composition] .atelier-closing :is(.k-btnrow,.edu-cta__btns){display:flex;flex-wrap:wrap;gap:24px;align-items:center}
@media(max-width:900px){
body[data-interior-layout] .at-story-spread{gap:0 7%}
body[data-interior-layout] .at-story-copy{padding-top:0}
body[data-interior-layout] .at-school-mark{font-size:82px;margin:25px 0}
body[data-interior-layout] .at-method{gap:7%!important}
body[data-interior-layout] .at-course-cover{grid-template-columns:1fr 1fr}
body[data-interior-layout] .at-course-intro{margin:35px 0 0 -25px;padding:28px}
body[data-interior-layout] .at-study-index{grid-template-columns:repeat(2,minmax(0,1fr))}
body[data-interior-layout] .at-duration .imt-pillars2{grid-template-columns:repeat(3,minmax(0,1fr))!important}
}
@media(max-width:680px){
body[data-interior-layout] .at-section-meta{margin-bottom:28px}
body[data-interior-layout] .at-story .at-story-opening .imt-seclead{font-size:44px!important;line-height:1.08!important;margin-bottom:38px!important}
body[data-interior-layout] .at-story-spread{display:flex;flex-direction:column;gap:30px}
body[data-interior-layout] .at-story-portrait{height:auto;aspect-ratio:4/5;width:90%}
body[data-interior-layout] .at-story-copy{padding-left:8%;order:2}
body[data-interior-layout] .at-story-detail{order:1;width:65%;height:auto;aspect-ratio:1.3;align-self:flex-end;margin:-130px -8px 0 0;border-width:8px}
body[data-interior-layout] .at-school-mark{display:none}
body[data-interior-layout] .at-method{display:block!important}
body[data-interior-layout] .at-method-heading>.imt-seclead{font-size:44px!important}
body[data-interior-layout] .at-method-rows{padding-top:40px}
body[data-interior-layout] .at-orbits{margin-top:25px;transform:scale(.8);transform-origin:left center;height:145px}
body[data-interior-layout] .at-vision-heading{display:block;margin-bottom:40px}
body[data-interior-layout] .at-vision-heading>.imt-seclead{font-size:44px!important;margin-bottom:28px!important}
body[data-interior-layout] .at-pillars{display:flex;flex-direction:column;margin:30px 0 50px;gap:20px}
body[data-interior-layout] .at-pillars:before{left:27px;right:auto;top:25px;bottom:25px;border-top:0;border-left:1px solid var(--at-rule)}
body[data-interior-layout] .at-pillars .imt-pillar2{flex-direction:row!important;text-align:left!important;gap:25px!important;padding:0!important}
body[data-interior-layout] .at-pillars .imt-pillar2 b{width:54px;height:54px;flex-shrink:0;font-size:14px!important}
body[data-interior-layout] .at-pillars .imt-pillar2 span{max-width:none!important;font-size:21px!important}
body[data-interior-layout] .at-vision-end{display:block}
body[data-interior-layout] .at-vision-end>.at-photo{margin-bottom:30px}
body[data-interior-layout] .at-course-opening{padding-top:140px!important;padding-bottom:40px!important}
body[data-interior-layout] .at-course-title{margin-bottom:35px}
body[data-interior-layout] .at-course-title :is(h1,.imt-seclead){font-size:46px!important}
body[data-interior-layout] .at-course-cover{display:block}
body[data-interior-layout] .at-course-cover>.at-photo{min-height:0;height:360px;width:94%}
body[data-interior-layout] .at-course-intro{margin:-35px 0 0 6%;padding:28px;position:relative}
body[data-interior-layout] .at-study-index{grid-template-columns:1fr;padding-bottom:35px}
body[data-interior-layout] .at-study-chapter.imt-story2 .imt-story2__inner{display:block!important}
body[data-interior-layout] .at-duration .imt-pillars2{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:18px!important}
body[data-interior-layout] .at-curriculum .imt-approach__inner{display:block!important}
body[data-interior-layout] .at-curriculum .imt-approach__inner>.imt-sechead{position:static;margin-bottom:32px!important;font-size:34px!important}
body[data-interior-layout] .at-curriculum .k-acc__t{font-size:23px!important}
body[data-interior-layout] .imt-educators{display:block!important}
body[data-interior-layout] .imt-educators .imt-edu{margin:0 0 65px!important}
body[data-interior-layout] .imt-educators .imt-edu:last-child{margin-bottom:0!important}
body[data-interior-layout] .at-course-listing .content{grid-template-columns:28px minmax(0,1fr);gap:10px 20px}
body[data-interior-layout] .at-course-listing .content>p:nth-of-type(n+3){grid-column:2;grid-row:auto}
}
body[data-interior-layout] .at-course-intro .content{text-align:left!important}
body[data-interior-layout] .at-course-intro .h5{font-size:25px!important;line-height:1.4!important}
body[data-interior-layout] .at-pathway{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));padding:0 var(--interior-edge) 55px;gap:0;background:var(--atelier-paper)}
body[data-interior-layout] .at-pathway>a{padding:32px;position:relative;color:var(--atelier-ink);text-decoration:none;border:1px solid var(--at-rule);border-right:0;display:flex;flex-direction:column;align-items:start;min-width:0;transition:background .2s}
body[data-interior-layout] .at-pathway>a:last-child{border-right:1px solid var(--at-rule);background:var(--at-wash)}
body[data-interior-layout] .at-pathway>a:hover{background:#e1ccc7}
body[data-interior-layout] .at-pathway h2{font-size:clamp(27px,3vw,42px);line-height:1.12;letter-spacing:-.02em;margin:28px 0 40px;text-transform:none}
body[data-interior-layout] .at-pathway strong{font-size:clamp(30px,3vw,44px);font-weight:400;line-height:1.15;margin-top:auto}
body[data-interior-layout] .at-pathway p{font-size:14px;margin:14px 0 0}
body[data-interior-layout] .at-path-arrow{position:absolute;right:24px;top:24px;font-size:28px;color:var(--at-olive)}
body[data-interior-layout] .at-study-chapter.section-text-content .content,body[data-atelier-page="contact"][data-interior-layout] .section-text-content:not(.atelier-page-hero):not(.atelier-closing) .content{display:grid!important;grid-template-columns:minmax(0,.8fr) minmax(0,1fr)!important;gap:12px 10%!important;max-width:1320px!important}
body[data-interior-layout] .at-study-chapter.section-text-content .content>.eyebrow,body[data-atelier-page="contact"][data-interior-layout] .section-text-content:not(.atelier-page-hero):not(.atelier-closing) .content>.eyebrow{grid-column:1;grid-row:1;margin:0!important}
body[data-interior-layout] .at-study-chapter.section-text-content .content>p:nth-of-type(2),body[data-atelier-page="contact"][data-interior-layout] .section-text-content:not(.atelier-page-hero):not(.atelier-closing) .content>p:nth-of-type(2){grid-column:1;grid-row:2}
body[data-interior-layout] .at-study-chapter.section-text-content .h3{font-size:clamp(36px,4vw,56px)!important;line-height:1.12!important}
body[data-interior-layout] .at-study-chapter.section-text-content .content>:is(ul,div,p:nth-of-type(n+3)),body[data-atelier-page="contact"][data-interior-layout] .section-text-content:not(.atelier-page-hero):not(.atelier-closing) .content>:is(ul,div,p:nth-of-type(n+3)){grid-column:2;grid-row:auto}
body[data-interior-layout] .at-study-chapter.section-text-content .content>:is(ul,p:nth-of-type(3)),body[data-atelier-page="contact"][data-interior-layout] .section-text-content:not(.atelier-page-hero):not(.atelier-closing) .content>:is(ul,div,p:nth-of-type(3)){grid-row:1/4}
body[data-interior-layout] .at-study-chapter.section-text-content .imt-facts{grid-row:4!important;display:flex!important;gap:25px!important;margin:20px 0 0!important}
body[data-interior-layout] .at-study-chapter .imt-list{padding:0!important;list-style:none!important;counter-reset:study-item}
body[data-interior-layout] .at-study-chapter .imt-list li{display:grid;grid-template-columns:24px 1fr;gap:20px;border-top:1px solid var(--at-rule);padding:20px 0!important;margin:0!important;list-style:none!important;counter-increment:study-item}
body[data-interior-layout] .at-study-chapter .imt-list li:before{content:counter(study-item,decimal-leading-zero);position:static!important;background:none!important;font-size:12px;color:var(--at-olive);width:auto!important;height:auto!important;line-height:2.4!important}
body[data-atelier-page="contact"][data-interior-layout] .imt-form{width:100%;max-width:none;display:grid;grid-template-columns:1fr 1fr;gap:25px}
body[data-atelier-page="contact"][data-interior-layout] .imt-form .imt-field{margin:0}
body[data-atelier-page="contact"][data-interior-layout] .imt-form .imt-field:nth-child(5),body[data-atelier-page="contact"][data-interior-layout] .imt-form>button,body[data-atelier-page="contact"][data-interior-layout] .imt-form-note{grid-column:1/-1}
body[data-atelier-page^="fine-art"][data-interior-layout] .at-study-chapter .imt-vision2__inner>.imt-vision2__note:only-child{font-size:clamp(34px,5vw,76px)!important;line-height:1.3!important;max-width:100%!important;text-align:left;color:var(--at-olive)!important}
@media(max-width:680px){
body[data-interior-layout] .at-pathway{grid-template-columns:1fr;padding-bottom:35px}
body[data-interior-layout] .at-pathway>a{border-right:1px solid var(--at-rule);border-bottom:0;padding:28px}
body[data-interior-layout] .at-pathway>a:last-child{border-bottom:1px solid var(--at-rule)}
body[data-interior-layout] .at-pathway h2{font-size:32px;margin:24px 0}
body[data-interior-layout] .at-study-chapter.section-text-content .content,body[data-atelier-page="contact"][data-interior-layout] .section-text-content:not(.atelier-page-hero):not(.atelier-closing) .content{display:block!important}
body[data-interior-layout] .at-study-chapter.section-text-content .content>.eyebrow,body[data-atelier-page="contact"][data-interior-layout] .section-text-content:not(.atelier-page-hero):not(.atelier-closing) .content>.eyebrow{margin-bottom:22px!important}
body[data-atelier-page="contact"][data-interior-layout] .imt-form{display:block}
body[data-atelier-page="contact"][data-interior-layout] .imt-form .imt-field{margin-bottom:22px}
}

/* About client brief: text-only story, centered introduction, four visible boxes. */
body[data-atelier-page^="about"] .at-about-banner{display:block!important;position:relative!important;width:100%!important;height:100svh!important;min-height:540px!important;max-height:1100px;overflow:hidden;padding:0!important;background:#171813!important}
body[data-atelier-page^="about"] .at-about-banner .k-story__media{position:absolute!important;inset:0!important;width:100%!important;height:100%!important}
body[data-atelier-page^="about"] .at-about-banner .flagship-banner__bgimg{width:100%!important;height:100%!important;object-fit:cover!important;object-position:50% 55%!important}
body[data-atelier-page^="about"] .at-about-banner .k-story__content{position:absolute!important;inset:0!important;display:flex!important;align-items:center!important;justify-content:center!important;padding:100px 24px 40px!important;width:100%!important;box-sizing:border-box;max-width:none!important}
body[data-atelier-page^="about"] .at-about-banner h1{font-size:clamp(58px,11vw,166px)!important;line-height:1!important;color:#f3eee7!important;text-align:center!important;font-weight:400!important;letter-spacing:-.03em!important;margin:0!important}
body[data-interior-layout] .at-client-story>.imt-seclead{font-size:clamp(44px,6.5vw,96px)!important;line-height:1.06!important;max-width:21ch!important;margin:0 0 65px!important}
body[data-interior-layout] .at-client-story-copy{display:grid;grid-template-columns:1fr 1fr;gap:12px 8%;margin-left:17%;max-width:1100px}
body[data-interior-layout] .at-client-story-copy p{margin:0 0 22px!important;font-size:18px!important;line-height:1.8!important}
body[data-interior-layout] .at-client-story-copy p:first-child{font-size:25px!important;line-height:1.5!important;grid-column:1;grid-row:1}
body[data-interior-layout] .at-client-story-copy p:nth-child(2){grid-column:2;grid-row:1/3}
body[data-interior-layout] .at-client-story-copy p:nth-child(3){grid-column:1;grid-row:2/4}
body[data-interior-layout] .at-client-story-copy p:last-child{grid-column:2;grid-row:3;color:var(--atelier-blue)!important;font-size:25px!important;line-height:1.4!important}
body[data-interior-layout] .at-client-approach{background:#e8dcd6!important;border:0!important}
body[data-interior-layout] .at-client-approach-intro{text-align:center;max-width:850px;margin:0 auto 60px}
body[data-interior-layout] .at-client-approach-intro>.imt-seclead{font-size:clamp(42px,6vw,84px)!important;line-height:1.08!important;max-width:17ch!important;margin:0 auto 35px!important}
body[data-interior-layout] .at-client-approach-intro>p{max-width:70ch!important;margin:0 auto 20px!important;text-align:center!important}
body[data-interior-layout] .at-client-boxes{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}
body[data-interior-layout] .at-client-boxes article{padding:clamp(26px,3.5vw,52px);background:var(--atelier-paper);border:1px solid #bfc3b4;min-width:0}
body[data-interior-layout] .at-client-boxes h3{font-size:clamp(28px,3.2vw,46px)!important;line-height:1.15!important;margin:25px 0!important;max-width:20ch}
body[data-interior-layout] .at-client-boxes p{font-size:17px!important;line-height:1.8!important;margin:0!important}
body[data-interior-layout] .at-client-vision-end{max-width:850px;margin:0 auto;text-align:center}
body[data-interior-layout] .at-client-vision-end p{font-size:19px!important;line-height:1.8!important}
body[data-interior-layout] .at-client-vision-end .at-client-motto{font-size:clamp(38px,5.5vw,76px)!important;line-height:1.2!important;margin:55px 0 28px!important;max-width:none!important;color:var(--atelier-blue)!important}
body[data-atelier-page^="about"][data-interior-layout] .atelier-closing .at-client-enrollment{font-size:clamp(40px,5.2vw,74px)!important;line-height:1.1!important;margin:0 0 30px!important;max-width:none!important;color:var(--atelier-blue)!important}
body[data-atelier-page^="about"][data-interior-layout] .atelier-closing .imt-seclead{font-size:clamp(28px,3.5vw,48px)!important;max-width:25ch!important}
@media(max-width:680px){body[data-interior-layout] .at-client-story-copy{display:block;margin-left:0}body[data-interior-layout] .at-client-story>.imt-seclead{margin-bottom:36px!important}body[data-interior-layout] .at-client-boxes{grid-template-columns:1fr}body[data-interior-layout] .at-client-approach-intro{margin-bottom:36px}body[data-atelier-page^="about"] .at-about-banner{min-height:500px!important}}

body[data-atelier-page^="about"] .imt-home-header{background:transparent!important;background-color:transparent!important;box-shadow:none!important;border-color:transparent!important;opacity:var(--home-header-opacity,1)!important;transition:opacity .15s linear!important;--text-color:#f6f1e7!important;--heading-color:#f6f1e7!important}
body[data-atelier-page^="about"] .imt-home-header:focus-within{opacity:1!important;pointer-events:auto!important}
body[data-atelier-page^="about"] .imt-home-header.home-header-hidden{pointer-events:none}
body[data-atelier-page^="about"] .imt-home-header:before,body[data-atelier-page^="about"] .imt-home-header:after{background:transparent!important;box-shadow:none!important}
body[data-atelier-page^="about"] .imt-home-header .header__logo{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);margin:0}
body[data-atelier-page^="about"] .imt-home-header .header__logo-img{filter:none!important;height:88px!important;max-height:88px!important;width:auto!important}
body[data-atelier-page^="about"] .imt-home-header :is(.header__icon,.header__logo-link,.imt-lang a){color:#f6f1e7!important}
body[data-atelier-page^="about"] .imt-home-header .imt-lang a.is-active{background:#f6f1e7!important;color:#1c1a17!important}
body[data-atelier-page^="about"] .imt-home-header .header__btn .btn{background:#f6f1e7!important;color:#1c1a17!important;border-color:#f6f1e7!important}
body[data-atelier-page^="about"] .imt-home-header .header__btn .btn__txt-inner{color:#1c1a17!important}
@media(max-width:640px){body[data-atelier-page^="about"] .imt-home-header .header__logo-img{height:64px!important;max-height:64px!important}}
/* Isolate the About compositions from the legacy 24-column text grid. */
body[data-atelier-page^="about"] .at-vision-heading>*{grid-column:auto!important;grid-row:auto!important;min-width:0!important;max-width:100%!important;align-self:start!important}
body[data-atelier-page^="about"] .at-vision-heading{grid-template-columns:minmax(0,1.2fr) minmax(0,.8fr)!important;gap:clamp(30px,6vw,90px)!important;align-items:start!important;height:auto!important}
body[data-atelier-page^="about"] .at-vision-heading>.imt-seclead{font-size:clamp(38px,4.6vw,66px)!important;line-height:1.12!important;grid-column:1!important;grid-row:1!important}
body[data-atelier-page^="about"] .at-vision-heading>div{grid-column:2!important;grid-row:1!important}
body[data-atelier-page^="about"] .at-pillars .imt-pillar2 b{position:relative!important;inset:auto!important;transform:none!important;box-sizing:border-box}
body[data-atelier-page^="about"] .at-pillars .imt-pillar2{min-width:0!important;height:auto!important}
body[data-atelier-page^="about"] .at-client-story-copy>*{min-width:0;align-self:start}
body[data-atelier-page^="about"] .footer__cols-menu-items{display:block!important;height:auto!important;max-height:none!important;overflow:visible!important;opacity:1!important;visibility:visible!important}
body[data-atelier-page^="about"] .footer__cols-menu-title{cursor:default!important;padding:0!important;margin:0 0 20px!important}
body[data-atelier-page^="about"] .footer__cols-menu-title:after{display:none!important}
body[data-atelier-page^="about"] .footer__cols-menu{padding:24px 0!important;min-width:0}
@media(max-width:900px){body[data-atelier-page^="about"] .at-vision-heading{display:block!important}body[data-atelier-page^="about"] .at-vision-heading>.imt-seclead{margin-bottom:30px!important}body[data-atelier-page^="about"] .at-pillars{display:flex;flex-direction:column;gap:20px}body[data-atelier-page^="about"] .at-pillars:before{left:27px;right:auto;top:25px;bottom:25px;border-top:0;border-left:1px solid var(--at-rule)}body[data-atelier-page^="about"] .at-pillars .imt-pillar2{flex-direction:row!important;text-align:left!important;gap:25px!important;padding:0!important}body[data-atelier-page^="about"] .at-pillars .imt-pillar2 b{width:54px;height:54px;flex-shrink:0}body[data-atelier-page^="about"] .at-pillars .imt-pillar2 span{max-width:none!important}}
@media(max-width:560px){body[data-atelier-page^="about"] .header__icons .imt-lang{display:none!important}body[data-atelier-page^="about"] .header__inner{padding-inline:20px!important}body[data-atelier-page^="about"] .imt-home-header .header__btn .btn{padding:12px 14px!important;font-size:12px!important}body[data-atelier-page^="about"] .imt-home-header .header__logo-img{height:55px!important;max-height:55px!important}body[data-atelier-page^="about"] .footer__cols-menus{grid-template-columns:1fr!important;gap:0!important}}
@media(max-width:560px){body[data-atelier-page^="about"] .imt-home-header .header__inner{display:flex!important;align-items:center!important;justify-content:space-between!important;width:100%!important;box-sizing:border-box!important;gap:0!important}body[data-atelier-page^="about"] .imt-home-header .header__icons{margin:0!important;padding:0!important}body[data-atelier-page^="about"] .imt-home-header .header__btn{margin:0 0 0 auto!important;padding:0!important;flex:0 0 auto!important}body[data-atelier-page^="about"] .imt-home-header .header__btn .btn{font-size:11px!important;padding:12px!important;min-width:0!important}}
@media(max-width:560px){body[data-atelier-page^="about"] .imt-home-header .header__btn .btn{width:104px!important;max-width:104px!important;box-sizing:border-box!important;padding:12px 8px!important}body[data-atelier-page^="about"] .imt-home-header .header__btn :is(.btn__txt,.btn__txt-inner){font-size:10px!important;letter-spacing:0!important}}

/* Stable reading layouts and accessible navigation across the remaining pages. */
body[data-interior-finished] .footer__cols-menu-items{display:block!important;height:auto!important;max-height:none!important;overflow:visible!important;opacity:1!important;visibility:visible!important}
body[data-interior-finished] .footer__cols-menu-title{cursor:default!important;padding:0!important;margin:0 0 20px!important}
body[data-interior-finished] .footer__cols-menu-title:after{display:none!important}
body[data-interior-finished] .footer__cols-menu{padding:24px 0!important;min-width:0}
body[data-interior-finished] .atelier-section :is(.imt-pillar2,.imt-fact){min-width:0!important}
body[data-interior-finished] .atelier-section .imt-pillar2 b{position:static!important;transform:none!important;inset:auto!important}
body[data-interior-finished] .at-course-title :is(h1,.imt-seclead){font-size:clamp(44px,6.5vw,94px)!important}
body[data-interior-finished] .at-intro-dense p:first-child{font-size:19px!important;line-height:1.7!important}
body[data-interior-finished] .imt-eduintro p{font-size:clamp(25px,2.7vw,38px)!important;line-height:1.45!important;max-width:1100px!important}
body[data-interior-finished] .at-course-listing .content>*{min-width:0!important}
body[data-interior-finished] .at-course-listing .content>p{margin-top:0!important}
body[data-interior-finished] .at-curriculum .imt-approach__inner>.imt-outro{max-width:100%!important}
body[data-interior-finished] .imt-faq summary{list-style:revert!important}
body[data-interior-finished] .imt-faq summary::marker{color:var(--atelier-blue)}
body[data-interior-finished] .imt-week .mod{grid-column:2!important;grid-row:1!important}
body[data-interior-finished] .imt-week .desc{grid-row:1!important}
body[data-interior-finished] .at-study-index a:focus-visible{outline:2px solid var(--atelier-blue);outline-offset:4px}
body[data-interior-finished] .atelier-section .imt-form :is(input,select,textarea){width:100%!important;min-width:0!important}
body[data-interior-finished] .atelier-section .imt-form .imt-field{min-width:0!important}
@media(max-width:900px){body[data-interior-finished] .at-duration .imt-pillars2{grid-template-columns:repeat(2,minmax(0,1fr))!important}body[data-interior-finished] .at-curriculum .imt-approach__inner>.imt-sechead{position:static!important}}
@media(max-width:680px){body[data-interior-finished] .at-course-title :is(h1,.imt-seclead){font-size:44px!important}body[data-interior-finished] .imt-week .desc{grid-row:2!important}body[data-interior-finished] .atelier-section{overflow-wrap:break-word}body[data-interior-finished] .imt-educators .imt-edu__photo img{height:auto!important;object-position:center top}body[data-interior-finished] .footer__cols-menus{grid-template-columns:1fr!important;gap:0!important}}
@media(max-width:560px){body[data-interior-finished] .header__icons .imt-lang{display:none!important}body[data-interior-finished] .header__inner{display:flex!important;align-items:center!important;justify-content:space-between!important;width:100%!important;box-sizing:border-box!important;gap:0!important;padding-inline:20px!important}body[data-interior-finished] .header__icons{margin:0!important;padding:0!important}body[data-interior-finished] .header__logo{position:absolute!important;left:50%!important;top:50%!important;transform:translate(-50%,-50%)!important;margin:0!important}body[data-interior-finished] .header__logo-img{height:55px!important;max-height:55px!important;width:auto!important}body[data-interior-finished] .header__btn{margin:0 0 0 auto!important;padding:0!important;flex:0 0 auto!important}body[data-interior-finished] .header__btn .btn{width:104px!important;max-width:104px!important;min-width:0!important;box-sizing:border-box!important;padding:12px 8px!important}body[data-interior-finished] .header__btn :is(.btn__txt,.btn__txt-inner){font-size:10px!important;letter-spacing:0!important}}

/* Tattoo: a studio opening followed by an editorial programme prospectus. */
body:is([data-tattoo-atelier],[data-reading-atelier]){--tt-edge:clamp(24px,6.5vw,104px)}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-opening{padding:160px var(--tt-edge) 70px;background:var(--atelier-paper)}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-title{margin-bottom:48px}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-title .imt-sechead{font-size:13px!important;letter-spacing:.08em!important;color:var(--atelier-blue)!important;margin:0 0 24px!important}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-title h1{font-size:clamp(58px,10vw,150px)!important;line-height:.98!important;margin:0!important;max-width:none!important;letter-spacing:-.04em!important;font-weight:400!important}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-cover{position:relative;margin-right:7%}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-cover figure{margin:0;height:clamp(340px,40vw,590px);overflow:hidden}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-cover img{width:100%;height:100%;object-fit:cover}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-seal{position:absolute;right:-70px;bottom:-35px;width:144px;height:144px;border:1px solid var(--atelier-blue);background:var(--atelier-paper);border-radius:50%;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;color:var(--atelier-blue);text-decoration:none;transition:background .2s}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-seal span:first-child{font-size:14px;letter-spacing:.1em}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-seal span:last-child{font-size:48px;line-height:1}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-seal:hover{background:var(--atelier-sage)}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-introduction{display:grid;grid-template-columns:.65fr 1.35fr;gap:12%;padding-top:70px}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-mark{font-size:clamp(75px,13vw,180px);font-weight:600;line-height:1;letter-spacing:-.08em;color:#dfcfca;align-self:start}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-introduction p{font-size:17px;line-height:1.8;margin:0 0 24px}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-introduction p:first-child{font-size:clamp(25px,3vw,42px);line-height:1.3;margin-bottom:32px}
body:is([data-tattoo-atelier],[data-reading-atelier]) .at-pathway{padding-bottom:90px}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-chapter{padding:70px var(--tt-edge);display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);gap:10%;background:var(--atelier-paper);scroll-margin-top:20px;border-bottom:1px solid var(--atelier-line)}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-chapter-heading,body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-chapter-content{min-width:0}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-intro{padding-block:90px;background:#e8dcd6;border:0}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-chapter-number{display:block;font-size:clamp(64px,8vw,116px);font-weight:300;line-height:1;color:#b98c8b;margin-bottom:35px;letter-spacing:-.05em}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-eyebrow{font-size:13px!important;letter-spacing:.04em!important;line-height:1.5!important;color:var(--atelier-blue)!important;margin:0 0 24px!important;text-transform:none!important}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-lead{font-size:clamp(34px,4vw,60px)!important;line-height:1.08!important;font-weight:400!important;letter-spacing:-.02em!important;margin:0!important;text-transform:none!important}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-chapter-content p{font-size:17px;line-height:1.8;margin:0 0 24px}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-intro .tt-chapter-content{padding-top:25px;align-self:center}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-facts{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:26px;margin:0}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-fact{border-top:1px solid var(--atelier-line);padding-top:20px;display:flex;flex-direction:column;gap:16px}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-fact b{font-size:12px;color:var(--atelier-blue);font-weight:400}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-fact span{font-size:26px;line-height:1.3}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-facts-note{margin-top:32px}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-facts>.tt-fact:last-child{grid-column:1/-1}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-topics{display:block}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-topic{border-top:1px solid var(--atelier-line);padding:23px 0}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-topic-title{display:grid;grid-template-columns:25px 1fr;gap:18px;padding-right:30px;position:relative;cursor:pointer;list-style:none;font-size:24px;line-height:1.35;color:var(--atelier-ink)}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-topic-title::-webkit-details-marker{display:none}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-topic-title:after{content:'+';position:absolute;right:0;top:0;color:var(--atelier-blue)}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-topic[open]>.tt-topic-title:after{content:'−'}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-topic-title .at-index{font-size:12px;padding-top:7px;color:var(--atelier-blue)}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-topic-copy{padding-left:43px;margin:22px 0 0!important;font-size:16px!important}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-outcome{border-top:1px solid var(--atelier-line);padding-top:32px;margin-top:25px}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-curriculum .tt-chapter-heading{position:sticky;top:35px;align-self:start}
body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-curriculum .tt-eyebrow{font-size:30px!important;letter-spacing:-.02em!important}
@media(max-width:760px){body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-opening{padding-top:135px}body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-title h1{font-size:58px!important}body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-cover{margin-right:15px}body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-cover figure{height:340px}body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-seal{width:100px;height:100px;right:-15px;bottom:-30px}body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-introduction{display:block;padding-top:65px}body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-mark{display:none}body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-chapter{display:block;padding-block:50px}body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-chapter-heading{margin-bottom:32px}body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-intro .tt-chapter-content{padding:0}body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-curriculum .tt-chapter-heading{position:static}body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-chapter-number{font-size:70px;margin-bottom:24px}body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-topic-title{font-size:21px}body:is([data-tattoo-atelier],[data-reading-atelier]) .tt-fact span{font-size:23px}body:is([data-tattoo-atelier],[data-reading-atelier]) .at-pathway{padding-bottom:50px}}
/* The Atelier reading room: persistent chapter index beside the complete prospectus. */
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-room{padding:85px var(--tt-edge);background:var(--atelier-paper);border-top:1px solid var(--atelier-line)}
body:is([data-tattoo-atelier],[data-reading-atelier]) .rr-heading{display:grid;grid-template-columns:240px minmax(0,1fr);gap:8%;margin-bottom:65px}
body:is([data-tattoo-atelier],[data-reading-atelier]) .rr-heading>p{font-size:14px;letter-spacing:.03em;color:var(--atelier-blue);padding-top:10px}
body:is([data-tattoo-atelier],[data-reading-atelier]) .rr-heading h2{font-size:clamp(40px,5.3vw,76px);line-height:1.08;letter-spacing:-.03em;margin:0;max-width:17ch;text-transform:none}
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-layout{display:grid;grid-template-columns:240px minmax(0,1fr);gap:8%;align-items:start}
body:is([data-tattoo-atelier],[data-reading-atelier]) .rr-sidebar{position:sticky;top:28px;align-self:start;max-height:calc(100svh - 56px);overflow:auto}
body:is([data-tattoo-atelier],[data-reading-atelier]) .rr-navigation{border:0}
body:is([data-tattoo-atelier],[data-reading-atelier]) .rr-navigation>summary{font-size:12px;list-style:none;pointer-events:none;padding:0 0 18px;color:var(--atelier-blue)}
body:is([data-tattoo-atelier],[data-reading-atelier]) .rr-navigation>summary::-webkit-details-marker{display:none}
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-index{border-top:1px solid var(--atelier-ink);display:flex;flex-direction:column}
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-index a{text-decoration:none;color:var(--atelier-ink);font-size:13px;line-height:1.5;padding:12px 8px;border-bottom:1px solid var(--atelier-line);transition:background .2s}
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-index .rr-primary{display:grid;grid-template-columns:22px 1fr;gap:10px;margin-top:12px;font-size:15px}
body:is([data-tattoo-atelier],[data-reading-atelier]) .rr-primary>span:first-child{font-size:11px;color:var(--atelier-blue);padding-top:3px}
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-index .rr-secondary{padding-left:40px;font-size:12px;color:#785f59}
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-index a:hover,body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-index a[aria-current="location"]{background:#e8dcd6;color:var(--atelier-ink)}
body:is([data-tattoo-atelier],[data-reading-atelier]) .rr-progress{height:2px;background:var(--atelier-line);margin-top:22px}
body:is([data-tattoo-atelier],[data-reading-atelier]) .rr-progress span{height:100%;display:block;width:var(--reading-progress,0%);background:var(--atelier-blue)}
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-chapters{min-width:0}
body:is([data-tattoo-atelier],[data-reading-atelier]) .rr-toolbar{display:flex;justify-content:flex-end;border-top:1px solid var(--atelier-line);padding-top:15px;margin-bottom:32px}
body:is([data-tattoo-atelier],[data-reading-atelier]) .rr-expand{border:0;border-bottom:1px solid var(--atelier-blue);background:none;color:var(--atelier-blue);padding:8px 0;cursor:pointer;font-size:13px}
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-chapter{scroll-margin-top:30px;padding-bottom:60px;margin-bottom:65px;border-bottom:1px solid var(--atelier-ink)}
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-chapter:last-child{margin-bottom:0;padding-bottom:0;border-bottom:0}
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-chapter .tt-chapter{display:block;padding:30px 0;background:transparent;border-bottom:1px solid var(--atelier-line)}
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-chapter .tt-intro{padding-top:0;border:0}
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-chapter .tt-chapter-heading{position:static;margin-bottom:28px}
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-chapter .tt-chapter-number{font-size:14px;letter-spacing:.04em;color:var(--atelier-blue);margin-bottom:24px}
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-chapter .tt-lead{font-size:clamp(34px,3.8vw,54px)!important;max-width:22ch}
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-chapter .tt-chapter-content{padding-top:0;max-width:75ch}
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-chapter .tt-chapter-content p{font-size:16px;line-height:1.85}
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-chapter .tt-structure{background:#e8dcd6;padding:28px;margin:15px 0 35px;border:0}
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-chapter .tt-facts{grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-chapter .tt-facts>.tt-fact:last-child{grid-column:auto}
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-chapter .tt-fact span{font-size:21px}
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-chapter .tt-curriculum .tt-eyebrow{font-size:25px!important}
body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-chapter .tt-topic-title{font-size:23px}
@media(max-width:1000px){body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-layout,body:is([data-tattoo-atelier],[data-reading-atelier]) .rr-heading{grid-template-columns:190px minmax(0,1fr);gap:5%}}
@media(max-width:760px){body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-room{padding-block:50px}body:is([data-tattoo-atelier],[data-reading-atelier]) .rr-heading{display:block;margin-bottom:32px}body:is([data-tattoo-atelier],[data-reading-atelier]) .rr-heading h2{font-size:40px}body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-layout{display:block}body:is([data-tattoo-atelier],[data-reading-atelier]) .rr-sidebar{position:sticky;top:0;z-index:5;background:var(--atelier-paper);max-height:60svh;border-bottom:1px solid var(--atelier-line);margin-bottom:25px;padding:12px 0}body:is([data-tattoo-atelier],[data-reading-atelier]) .rr-navigation>summary{pointer-events:auto;cursor:pointer;padding:8px 0;display:flex;justify-content:space-between;font-size:14px}body:is([data-tattoo-atelier],[data-reading-atelier]) .rr-navigation>summary:after{content:'+'}body:is([data-tattoo-atelier],[data-reading-atelier]) .rr-navigation[open]>summary:after{content:'−'}body:is([data-tattoo-atelier],[data-reading-atelier]) .rr-progress{margin-top:10px}body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-chapter,body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-chapter .tt-chapter{scroll-margin-top:90px}body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-chapter .tt-facts{grid-template-columns:repeat(2,minmax(0,1fr))}body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-chapter .tt-structure{padding:22px}body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-chapter .tt-topic-title{font-size:21px}}
@media(prefers-reduced-motion:reduce){body:is([data-tattoo-atelier],[data-reading-atelier]) .reading-index a{transition:none}}
body[data-reading-atelier]{--tt-edge:clamp(24px,6.5vw,104px)}
body[data-reading-atelier] .rr-document{color:var(--atelier-ink)}
body[data-reading-atelier] .rr-document :is(h2,h3,.rr-lead,.h3){font-size:clamp(30px,3.6vw,48px)!important;line-height:1.15!important;letter-spacing:-.025em!important;font-weight:400!important;text-transform:none!important;margin:18px 0 28px!important;max-width:24ch}
body[data-reading-atelier] .rr-document :is(p,li){font-size:16px;line-height:1.85;color:var(--atelier-ink)}
body[data-reading-atelier] .rr-document>div{max-width:75ch}
body[data-reading-atelier] .rr-document p{margin:0 0 22px}
body[data-reading-atelier] .rr-document .rr-kicker,body[data-reading-atelier] .rr-chapter-number{font-size:12px!important;letter-spacing:.05em!important;color:var(--atelier-blue)!important;margin:0 0 20px!important;line-height:1.5!important}
body[data-reading-atelier] .rr-facts{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px 30px;margin:30px 0 35px;max-width:none!important}
body[data-reading-atelier] .rr-fact{padding:22px 0;border-top:1px solid var(--atelier-line);display:flex;flex-direction:column;gap:15px}
body[data-reading-atelier] .rr-fact b{font-size:13px;font-weight:400;color:var(--atelier-blue)}
body[data-reading-atelier] .rr-fact span{font-size:22px;line-height:1.45}
body[data-reading-atelier] .rr-document ul{padding-left:20px;margin:24px 0}
body[data-reading-atelier] .rr-document li{padding:10px 0;border-bottom:1px solid var(--atelier-line)}
body[data-reading-atelier] .rr-document .tt-topic{border-top:1px solid var(--atelier-line);padding:22px 0}
body[data-reading-atelier] .rr-document summary{cursor:pointer;font-size:23px;line-height:1.4;color:var(--atelier-ink)}
body[data-reading-atelier] .rr-document details p{margin-top:24px;font-size:16px;line-height:1.85}
body[data-reading-atelier] .rr-document details[open]>summary{color:var(--atelier-blue)}
body[data-reading-atelier] .rr-cover-link{display:flex;justify-content:space-between;align-items:center;gap:25px;border-bottom:1px solid var(--atelier-line);padding:22px 0;margin-top:40px;color:var(--atelier-blue);font-size:15px;text-decoration:none;max-width:410px}
body[data-reading-atelier] .rr-cover-link span{font-size:32px}
body[data-reading-atelier] .rr-week{display:grid;grid-template-columns:75px 1fr;gap:8px 20px;border-top:1px solid var(--atelier-line);padding:24px 0}
body[data-reading-atelier] .rr-week .wk{grid-row:1/3;font-size:12px;color:var(--atelier-blue)}
body[data-reading-atelier] .rr-week .mod{font-size:21px;line-height:1.4}
body[data-reading-atelier] .rr-week .desc{grid-column:2;font-size:15px;line-height:1.7}
body[data-tattoo-atelier] .tt-real-logo{width:clamp(100px,15vw,210px);height:auto;opacity:.7;letter-spacing:normal}
@media(max-width:760px){body[data-reading-atelier] .rr-facts{grid-template-columns:1fr}body[data-reading-atelier] .rr-document :is(h2,h3,.rr-lead,.h3){font-size:32px!important}body[data-reading-atelier] .rr-document summary{font-size:21px}body[data-reading-atelier] .rr-fact span{font-size:20px}}
body[data-reading-atelier] .rr-metrics{grid-template-columns:repeat(3,minmax(0,1fr))}
body[data-reading-atelier] .rr-metrics b{font-size:38px;line-height:1.2}
body[data-reading-atelier] .rr-metrics span{font-size:15px}
body[data-reading-atelier] .rr-faculty .imt-edu{display:flex!important;flex-direction:column!important;gap:28px!important;border:0!important;padding:0!important;position:relative}
body[data-reading-atelier] .rr-faculty .imt-edu>.at-index{position:absolute;top:18px;left:18px;z-index:1;background:var(--atelier-paper);width:40px;height:40px;border-radius:50%;display:grid;place-items:center}
body[data-reading-atelier] .rr-faculty .imt-edu__photo{order:0;margin:0!important;max-width:480px;width:85%!important}
body[data-reading-atelier] .rr-faculty .imt-edu__photo img{width:100%!important;height:auto!important;max-height:620px;object-fit:cover;object-position:center top;aspect-ratio:4/5}
body[data-reading-atelier] .rr-faculty .imt-edu__txt{order:1;max-width:75ch}
body[data-reading-atelier] .rr-faculty .imt-edu__name{font-size:clamp(34px,4vw,54px)!important;font-weight:400!important;line-height:1.15!important;margin:0 0 24px!important}
body[data-reading-atelier] .rr-faculty .imt-edu__role{font-size:14px!important;line-height:1.7;color:var(--atelier-blue)!important;padding-bottom:25px;border-bottom:1px solid var(--atelier-line)}
body[data-reading-atelier] .rr-faculty .imt-edu__bio{font-size:17px!important;line-height:1.85!important}
body[data-reading-atelier] .rr-faculty .imt-edu__more a{color:var(--atelier-blue);text-underline-offset:5px}
@media(max-width:760px){body[data-reading-atelier] .rr-metrics{grid-template-columns:1fr 1fr}body[data-reading-atelier] .rr-faculty .imt-edu__photo{width:100%!important}}
body[data-reading-atelier] .rr-faculty .imt-edu__txt{display:block!important}
body[data-reading-atelier] .rr-faculty .imt-edu__role{text-transform:none!important;letter-spacing:0!important}
@media(max-width:760px){body[data-reading-atelier] .reading-chapter{scroll-margin-top:110px!important}}

/* Editorial covers and document-specific hierarchy for additional education. */
body .imt-navigation-brand img{mix-blend-mode:multiply}
body[data-tattoo-atelier] .tt-introduction{display:block;max-width:960px;margin-left:auto}
body[data-tattoo-atelier] .tt-introduction>div{display:grid;grid-template-columns:1fr 1fr;gap:0 48px}
body[data-tattoo-atelier] .tt-introduction p:first-child{grid-column:1/-1;max-width:24ch;font-size:clamp(32px,4vw,56px);margin-bottom:40px}
body[data-tattoo-atelier] .header__inner{width:100%!important;padding-inline:var(--tt-edge)!important;box-sizing:border-box!important}
body[data-tattoo-atelier] .header__btn .btn{background:transparent!important;border:1px solid var(--atelier-line)}
body[data-tattoo-atelier] .home-menu-toggle{width:auto!important;min-width:48px;display:flex;align-items:center;gap:12px;padding:12px!important}
body[data-additional-atelier] .ae-opening{padding:170px var(--tt-edge) 80px;background:var(--atelier-paper)}
body[data-additional-atelier] .ae-title{padding-bottom:55px;border-bottom:1px solid var(--atelier-line)}
body[data-additional-atelier] .ae-title .imt-sechead{font-size:13px!important;letter-spacing:.06em!important;margin:0 0 30px!important;color:var(--atelier-blue)!important}
body[data-additional-atelier] .ae-title h1{font-size:clamp(56px,8vw,116px)!important;font-weight:400!important;letter-spacing:-.035em!important;line-height:1.02!important;max-width:16ch!important;margin:0!important;text-transform:none!important}
body[data-additional-atelier] .ae-spread{display:grid;grid-template-columns:1fr 1fr;gap:12%;padding:55px 0 10px}
body[data-additional-atelier] .ae-thesis p{font-size:clamp(30px,3.6vw,50px);line-height:1.2;margin:0;letter-spacing:-.02em}
body[data-additional-atelier] .ae-intro p{font-size:17px;line-height:1.8;margin:0 0 24px}
body[data-additional-atelier] .ae-intro .rr-cover-link{max-width:none;margin-top:30px}
body[data-additional-atelier] .ae-image{margin:60px 0 0;width:74%}
body[data-additional-atelier] .ae-image figure{margin:0;height:440px}
body[data-additional-atelier] .ae-image img{width:100%;height:100%;object-fit:cover}
body[data-additional-atelier] .ae-film{width:100%;background:var(--atelier-ink);padding:24px 24px 0;box-sizing:border-box}
body[data-additional-atelier] .ae-film figure{height:390px}
body[data-additional-atelier] .ae-film>span{display:block;color:var(--atelier-paper);font-size:11px;letter-spacing:.12em;padding:16px 0}
body[data-additional-atelier] .ae-syllabus .rr-facts{display:block}
body[data-additional-atelier] .ae-syllabus .rr-fact{display:grid;grid-template-columns:32px 1fr;gap:20px;padding:22px 0}
body[data-additional-atelier] .ae-syllabus .rr-fact span{font-size:21px}
body[data-additional-atelier] .ae-project{background:var(--atelier-sage,#e8dcd6);padding:36px!important;border:0}
body[data-additional-atelier] .ae-project .rr-facts{display:block}
body[data-additional-atelier] .ae-project .rr-fact{display:grid;grid-template-columns:26px 1fr;gap:18px;padding:18px 0}
body[data-additional-atelier] .ae-project .rr-fact span{font-size:20px}
body[data-additional-atelier] .ae-audience .rr-fact span{font-size:19px}
body[data-additional-atelier] .ae-endnote .rr-lead{font-size:clamp(36px,4.5vw,64px)!important;color:var(--atelier-blue)}
body[data-additional-atelier] .ae-pair{display:grid;grid-template-columns:1fr 1fr;margin-top:55px;border-block:1px solid var(--atelier-ink)}
body[data-additional-atelier] .ae-pair a{display:grid;grid-template-columns:1fr auto;gap:25px;padding:34px;text-decoration:none;color:var(--atelier-ink);transition:background .2s}
body[data-additional-atelier] .ae-pair a:first-child{border-right:1px solid var(--atelier-line)}
body[data-additional-atelier] .ae-pair a:hover{background:var(--atelier-sage)}
body[data-additional-atelier] .ae-pair h2{grid-column:1/-1;font-size:36px;line-height:1.15;margin:0;max-width:17ch}
body[data-additional-atelier] .ae-pair a>span:first-child{font-size:12px;color:var(--atelier-blue)}
body[data-additional-atelier] .ae-pair a>span:last-child{grid-column:2;grid-row:1;font-size:28px}
@media(max-width:760px){body[data-tattoo-atelier] .tt-introduction>div{display:block}body[data-additional-atelier] .ae-opening{padding-top:140px;padding-bottom:45px}body[data-additional-atelier] .ae-title{padding-bottom:35px}body[data-additional-atelier] .ae-title h1{font-size:54px!important;overflow-wrap:break-word}body[data-additional-atelier] .ae-spread{display:block;padding-top:32px}body[data-additional-atelier] .ae-thesis{margin-bottom:30px}body[data-additional-atelier] .ae-image{width:100%;margin-top:32px}body[data-additional-atelier] .ae-image figure{height:300px}body[data-additional-atelier] .ae-film{padding:12px 12px 0}body[data-additional-atelier] .ae-pair{grid-template-columns:1fr}body[data-additional-atelier] .ae-pair a{padding:26px 0}body[data-additional-atelier] .ae-pair a:first-child{border-right:0;border-bottom:1px solid var(--atelier-line)}body[data-additional-atelier] .ae-project{padding:24px!important}}
body[data-tattoo-atelier] .imt-navigation.home-simple-menu .home-menu-top{grid-template-columns:1fr 44px!important}
body[data-tattoo-atelier] .tt-menu-label{font-size:13px;line-height:1;color:var(--atelier-ink)}
body[data-tattoo-atelier] .home-burger{width:22px;flex-shrink:0}
body[data-additional-atelier] .ae-endnote>p:last-child{font-size:clamp(32px,4vw,58px);line-height:1.25;letter-spacing:-.025em;color:var(--atelier-blue)}

/* One shared Atelier system: paper, ink, fine rules and direct navigation. */
:root{--sys-corner:clamp(16px,2vw,30px);--sys-rule:1px solid var(--atelier-line)}
body[data-atelier-page] .header .header__inner{width:100%!important;max-width:none!important;box-sizing:border-box!important;padding-inline:var(--sys-corner)!important;margin:0!important}
body[data-atelier-page] .header .header__icons{margin:0!important;padding:0!important;gap:24px!important}
body[data-atelier-page] .header .home-menu-toggle{border:0!important;border-radius:0!important;padding:10px 0!important;min-width:44px!important;width:44px!important;background:transparent!important;box-shadow:none!important;display:flex!important;justify-content:flex-start!important}
body[data-atelier-page] .home-burger{width:28px!important;height:18px!important}
body[data-atelier-page] .home-burger span{width:28px!important;height:1px!important}
body[data-atelier-page] .home-burger span:nth-child(2){display:none!important}
body[data-atelier-page] .header .header__btn{margin-left:auto!important;padding:0!important}
body[data-atelier-page] .header .header__btn .btn{background:transparent!important;color:inherit!important;border:0!important;border-bottom:1px solid currentColor!important;border-radius:0!important;padding:10px 0!important;min-height:40px!important;width:auto!important;min-width:0!important;box-shadow:none!important;clip-path:none!important}
body[data-atelier-page] :is(.atelier-section,.ae-opening,.atelier-closing) :is(.btn,.k-btn){border-radius:0!important;clip-path:none!important;background:transparent!important;border:0!important;border-bottom:1px solid currentColor!important;color:inherit!important;padding:14px 0!important;min-height:48px!important;box-shadow:none!important;display:inline-flex!important;gap:24px!important;align-items:center!important;text-decoration:none!important}
body[data-atelier-page] :is(.atelier-section,.ae-opening,.atelier-closing) :is(.btn,.k-btn):after{content:'↗'!important;display:inline-block!important;position:static!important;background:none!important;width:auto!important;height:auto!important;font-size:24px!important;transform:none!important;clip-path:none!important}
body[data-atelier-page] :is(.header,.atelier-section,.ae-opening,.atelier-closing) .btn:before{display:none!important}
body[data-atelier-page] .btn__txt-inner{letter-spacing:0!important}
body[data-atelier-page] .tt-seal{border-radius:0!important;width:100px!important;height:100px!important;border:0!important;right:0!important;bottom:0!important;gap:4px!important}
body[data-atelier-page] .imt-navigation.home-simple-menu{width:100%!important;max-width:none!important;height:100dvh!important;inset:0!important;border:0!important;margin:0!important;overflow:auto!important}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-shell{padding:22px var(--sys-corner) 28px!important;min-height:100%;box-sizing:border-box;max-width:none!important}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-top{grid-template-columns:1fr 44px!important;gap:20px!important;margin-bottom:45px!important}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-close{border:0!important;border-radius:0!important;font-size:34px!important}
body[data-atelier-page] .sys-navigation{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:40px!important;flex:1!important;align-content:start}
body[data-atelier-page] .sys-navigation .home-menu-root{display:none!important}
body[data-atelier-page] .sys-menu-group{margin:0!important;padding:0!important;min-width:0}
body[data-atelier-page] .sys-menu-group h2{font-size:clamp(26px,2.7vw,42px)!important;line-height:1.15!important;text-transform:none!important;letter-spacing:-.02em!important;margin:0 0 30px!important;font-weight:400!important;min-height:2.3em}
body[data-atelier-page] .sys-menu-group ul{margin:0!important;padding:0!important;list-style:none!important}
body[data-atelier-page] .sys-menu-group li{border-top:var(--sys-rule)!important;border-bottom:0!important}
body[data-atelier-page] .sys-menu-group a{display:flex!important;align-items:center;justify-content:space-between;padding:18px 0!important;font-size:17px!important;line-height:1.5!important;text-decoration:none!important;color:var(--atelier-ink)!important;min-height:48px;box-sizing:border-box}
body[data-atelier-page] .sys-menu-group a:hover,body[data-atelier-page] .sys-menu-group a[aria-current=page]{color:var(--atelier-blue)!important;background:var(--atelier-sage)}
body[data-atelier-page] .sys-menu-group a[aria-current=page]:after{content:'•';padding-right:8px}
body[data-atelier-page] .sys-menu-direct{grid-column:1/-1;border-top:var(--sys-rule);padding-top:20px}
body[data-atelier-page] .sys-menu-direct ul{display:flex;gap:40px;list-style:none}
body[data-atelier-page] .sys-menu-direct li{border:0!important}
body[data-atelier-page] .sys-menu-direct a{display:flex;gap:25px;align-items:center;text-decoration:none;color:var(--atelier-ink)}
body[data-atelier-page] .sys-menu-direct .h3{font-size:30px!important;font-weight:400!important;margin:0!important}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-bottom{display:grid!important;grid-template-columns:1fr 1fr!important;gap:10%!important;margin-top:50px!important}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-apply{background:transparent!important;color:var(--atelier-ink)!important;padding:16px 0!important;min-height:48px!important;border-bottom:var(--sys-rule)!important}
body[data-atelier-page] .imt-navigation .home-simple-meta{margin:0!important;padding:16px 0!important;border-top:0!important}
body[data-atelier-page] .at-pathway{gap:30px!important}
body[data-atelier-page] .at-pathway>a{background:transparent!important;border:0!important;border-top:1px solid var(--atelier-ink)!important;padding:25px 0!important}
body[data-atelier-page] .at-pathway>a:hover{color:var(--atelier-blue)}
body[data-atelier-page] .sys-duration-track{width:100%;height:36px;background:var(--atelier-sage);margin-top:25px;position:relative;display:grid;grid-template-columns:repeat(6,1fr)}
body[data-atelier-page] .sys-duration-track span{position:absolute;inset:0 auto 0 0;background:var(--atelier-blue)}
body[data-atelier-page] .sys-duration-track i{z-index:1;border-right:1px solid var(--atelier-paper)}
body[data-atelier-page] .sys-study-map{padding:70px var(--tt-edge);background:var(--atelier-sage);color:var(--atelier-ink)}
body[data-atelier-page] .sys-study-map header{display:grid;grid-template-columns:1fr 2fr;gap:40px;margin-bottom:45px}
body[data-atelier-page] .sys-study-map header p{font-size:13px;color:var(--atelier-blue)}
body[data-atelier-page] .sys-study-map h2{font-size:clamp(40px,5vw,72px);line-height:1.1;margin:0;font-weight:400;letter-spacing:-.025em}
body[data-atelier-page] .sys-map-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));column-gap:40px}
body[data-atelier-page] .sys-map-node{display:grid;grid-template-columns:30px 1fr 20px;gap:15px;border-top:1px solid #a6ab9c;padding:25px 0;text-decoration:none;color:var(--atelier-ink);align-items:start}
body[data-atelier-page] .sys-map-node>span:first-child{font-size:12px;color:var(--atelier-blue);border:1px solid #a6ab9c;width:28px;height:28px;display:grid;place-items:center;border-radius:50%}
body[data-atelier-page] .sys-map-node>span:nth-child(2){font-size:19px;line-height:1.5}
body[data-atelier-page] .sys-map-node:hover{background:var(--atelier-paper)}
body[data-atelier-page] [id^=syllabus-topic]{scroll-margin-top:110px}
@media(max-width:900px){body[data-atelier-page] .sys-navigation{grid-template-columns:1fr 1fr!important;gap:35px!important}body[data-atelier-page] .sys-menu-group h2{min-height:0}body[data-atelier-page] .sys-map-grid{grid-template-columns:1fr 1fr}}
@media(max-width:560px){body[data-atelier-page] .sys-navigation{grid-template-columns:1fr!important;gap:30px!important}body[data-atelier-page] .sys-menu-group h2{font-size:30px!important;margin-bottom:18px!important}body[data-atelier-page] .sys-menu-group a{padding:13px 0!important;font-size:16px!important}body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-bottom{display:block!important}body[data-atelier-page] .sys-menu-direct .h3{font-size:28px!important}body[data-atelier-page] .sys-study-map header{display:block}body[data-atelier-page] .sys-map-grid{grid-template-columns:1fr}body[data-atelier-page] .sys-map-node{padding:18px 0}body[data-atelier-page] .sys-study-map{padding-block:45px}body[data-atelier-page] .header .header__btn .btn{max-width:110px!important}body[data-atelier-page] .at-pathway{gap:15px!important}}
body[data-atelier-page] .header .header__inner{grid-column:1/-1!important;justify-self:stretch!important}
body[data-atelier-page^=index] .header :is(.btn__txt,.btn__txt-inner){color:var(--atelier-paper)!important}
body[data-atelier-page] .imt-navigation .home-menu-top{position:sticky;top:-22px;z-index:2;background:var(--atelier-paper);padding-top:16px!important}
body[data-atelier-page] :is(.home-about-link,.home-discover,.home-manifesto-link){border-radius:0!important;background:transparent!important;border:0!important;border-bottom:1px solid currentColor!important;padding:16px 0!important;box-shadow:none!important;clip-path:none!important}
body[data-atelier-page] :is(.home-about-link,.home-discover,.home-manifesto-link):hover{opacity:.7}
body[data-atelier-page] :is(.sys-map-node,.sys-menu-group a,.home-menu-toggle,.home-menu-close,.btn,.k-btn):focus-visible{outline:2px solid currentColor;outline-offset:5px}
@media(prefers-reduced-motion:reduce){body[data-atelier-page] :is(.btn,.k-btn,.sys-map-node,.sys-menu-group a){transition:none!important}}
/* Additional education: compact covers and a concise curriculum overview. */
body[data-additional-atelier] .ae-opening{padding-top:150px;padding-bottom:65px}
body[data-additional-atelier] .ae-title h1{font-size:clamp(52px,6.6vw,94px)!important;max-width:20ch!important;text-wrap:balance}
body[data-additional-atelier] .ae-title{padding-bottom:38px}
body[data-additional-atelier] .ae-spread{grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:8%;padding-top:40px;align-items:start}
body[data-additional-atelier] .ae-thesis p{font-size:clamp(28px,2.7vw,38px);line-height:1.3}
body[data-additional-atelier] .ae-image{width:100%;margin-top:30px}
body[data-additional-atelier] .ae-image figure{height:auto;aspect-ratio:16/10}
body[data-additional-atelier] .ae-image img{display:block}
body[data-additional-atelier] .ae-intro p{font-size:17px;line-height:1.8}
body[data-additional-atelier] .sys-study-map{padding-block:50px}
body[data-additional-atelier] .sys-study-map header{grid-template-columns:1fr 2fr;margin-bottom:30px}
body[data-additional-atelier] .sys-study-map h2{font-size:clamp(36px,4vw,56px)}
body[data-additional-atelier] .sys-map-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:24px}
body[data-additional-atelier] .sys-map-node{grid-template-columns:1fr 20px;gap:18px;position:relative;padding-top:20px}
body[data-additional-atelier] .sys-map-node>span:first-child{grid-column:1;font-size:12px;background:var(--atelier-sage)}
body[data-additional-atelier] .sys-map-node>span:nth-child(2){grid-column:1/-1;grid-row:2;font-size:18px}
body[data-additional-atelier] .sys-map-node>span:last-child{grid-column:2;grid-row:1}
body[data-additional-atelier] .reading-room{padding-top:60px}
body[data-additional-atelier] .reading-index a{line-height:1.65!important}
body[data-additional-atelier] .rr-document>div{max-width:none}
body[data-additional-atelier] .rr-document .tt-topic-copy{max-width:65ch;box-sizing:border-box}
body[data-additional-atelier] .ae-pair{position:relative;gap:60px;border:0;margin-top:40px}
body[data-additional-atelier] .ae-pair:before{content:'+';position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);font-size:38px;color:var(--atelier-blue)}
body[data-additional-atelier] .ae-pair a{border:0!important;border-block:1px solid var(--atelier-line)!important;padding:26px 0}
body[data-additional-atelier] .ae-pair h2{font-size:32px;max-width:18ch}
body[data-additional-atelier] .ae-endnote{padding-block:20px!important}
body[data-additional-atelier] .ae-endnote>p:last-child{font-size:clamp(30px,3.7vw,48px);line-height:1.3}
body[data-additional-atelier] .atelier-closing .about-cta__inner{display:flex!important;flex-wrap:wrap!important;align-items:center!important;gap:24px!important}
body[data-additional-atelier] .atelier-closing .about-cta__inner>.imt-sechead{width:100%!important}
body[data-additional-atelier] .atelier-closing .about-cta__inner>.imt-seclead{width:100%!important;margin:0 0 16px!important;max-width:20ch!important}
@media(max-width:900px){body[data-additional-atelier] .sys-map-grid{grid-template-columns:1fr 1fr}}
@media(max-width:760px){body[data-additional-atelier] .ae-opening{padding-top:125px;padding-bottom:40px}body[data-additional-atelier] .ae-title h1{font-size:clamp(40px,10vw,54px)!important;overflow-wrap:normal}body[data-additional-atelier] .ae-spread{display:flex;flex-direction:column;gap:28px}body[data-additional-atelier] .ae-opening-aside{width:100%}body[data-additional-atelier] .ae-thesis{margin-bottom:0}body[data-additional-atelier] .ae-image figure{height:auto}body[data-additional-atelier] .ae-intro{width:100%}body[data-additional-atelier] .sys-study-map header{display:block}body[data-additional-atelier] .sys-map-node>span:nth-child(2){font-size:16px}body[data-additional-atelier] .sys-map-grid{gap:16px}body[data-additional-atelier] .ae-pair{gap:50px}body[data-additional-atelier] .ae-pair:before{top:50%;font-size:30px}body[data-additional-atelier] .ae-pair h2{font-size:28px}body[data-additional-atelier] .rr-heading h2{font-size:36px}body[data-additional-atelier] .rr-document .tt-topic-copy{padding-left:0!important}body[data-additional-atelier] .reading-room{padding-top:40px}}
/* Shared top bar, isolated from the original theme's header grid. */
body[data-atelier-page] .header{display:block!important;min-height:96px!important;height:96px!important;padding:0!important;--bar-ink:var(--atelier-ink);color:var(--bar-ink)!important}
body[data-atelier-page^=index] .header,body[data-atelier-page^=about] .header,body[data-atelier-page^=educators] .header{--bar-ink:var(--atelier-paper)}
body[data-atelier-page] .sys-topbar{height:100%;padding:0 var(--sys-corner);display:flex;align-items:center;justify-content:space-between;position:relative;box-sizing:border-box}
body[data-atelier-page] .sys-topbar-left{display:flex;align-items:center}
body[data-atelier-page] .sys-topbar .home-menu-toggle{color:var(--bar-ink)!important;border:0!important;width:44px!important;height:44px!important;padding:10px 0!important;background:none!important;display:flex!important;align-items:center!important}
body[data-atelier-page] .sys-topbar .home-burger span{background:var(--bar-ink)!important}
body[data-atelier-page] .sys-logo{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:72px;height:72px;display:block}
body[data-atelier-page] .sys-logo-image{width:100%;height:100%;object-fit:contain;filter:brightness(0)}
body[data-atelier-page^=index] .sys-logo-image,body[data-atelier-page^=about] .sys-logo-image,body[data-atelier-page^=educators] .sys-logo-image{filter:none}
body[data-atelier-page] .sys-topbar-right{display:flex;align-items:center;gap:36px}
body[data-atelier-page] .sys-languages{display:flex!important;align-items:center;gap:8px!important;font-size:12px;letter-spacing:.04em}
body[data-atelier-page] .sys-languages a{display:grid!important;place-items:center;min-width:28px;min-height:44px;padding:0!important;border:0!important;background:none!important;color:inherit!important;text-decoration:none;opacity:.55}
body[data-atelier-page] .sys-languages a[aria-current=page]{opacity:1;text-decoration:underline;text-underline-offset:6px;text-decoration-thickness:1px}
body[data-atelier-page] .sys-languages>span{opacity:.35}
body[data-atelier-page] .sys-languages a:hover{opacity:1}
body[data-atelier-page] .sys-apply{display:flex;align-items:center;gap:22px;padding:10px 0;border-bottom:1px solid currentColor;text-decoration:none;color:inherit;font-size:13px;line-height:1.4}
body[data-atelier-page] .sys-apply span{font-size:20px}
body[data-atelier-page] .sys-topbar :focus-visible{outline:1px solid currentColor;outline-offset:4px}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-shell{max-width:1440px!important;margin-inline:auto!important;padding-inline:var(--sys-corner)!important}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-top{grid-template-columns:44px 1fr 44px!important;height:64px;box-sizing:border-box;top:-22px;gap:0!important;padding:0!important;margin-bottom:48px!important}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-top p{grid-column:2;grid-row:1;text-align:center!important;font-size:15px!important}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-close{grid-column:1;grid-row:1;justify-self:start;padding:0!important;text-align:left!important}
body[data-atelier-page] .sys-menu-group{border:0!important}
body[data-atelier-page] .sys-menu-group>summary{font-size:25px;line-height:1.3;min-height:65px;margin:0 0 14px;padding:0;list-style:none;pointer-events:none;color:var(--atelier-blue)}
body[data-atelier-page] .sys-menu-group>summary::-webkit-details-marker{display:none}
body[data-atelier-page] .sys-menu-group a{font-size:16px!important;padding:15px 0!important;min-height:54px}
body[data-atelier-page] .sys-menu-direct{padding-top:24px}
body[data-atelier-page] .sys-menu-direct .h3{font-size:25px!important}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-bottom{margin-top:36px!important}
@media(max-width:760px){body[data-atelier-page] .header{height:80px!important;min-height:80px!important}body[data-atelier-page] .sys-logo{width:60px;height:60px}body[data-atelier-page] .sys-topbar-right{gap:0}body[data-atelier-page] .sys-apply{display:none}body[data-atelier-page] .sys-navigation{display:block!important}body[data-atelier-page] .sys-menu-group{border-bottom:var(--sys-rule)!important;margin-bottom:0!important}body[data-atelier-page] .sys-menu-group>summary{display:flex;justify-content:space-between;align-items:center;pointer-events:auto;cursor:pointer;font-size:24px;min-height:70px;margin:0;padding:10px 0;box-sizing:border-box}body[data-atelier-page] .sys-menu-group>summary:after{content:'+';font-size:24px;font-weight:300}body[data-atelier-page] .sys-menu-group[open]>summary:after{content:'−'}body[data-atelier-page] .sys-menu-group ul{padding-bottom:20px!important}body[data-atelier-page] .sys-menu-group a{min-height:48px;padding:12px 0!important}body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-top{margin-bottom:15px!important;height:56px}body[data-atelier-page] .sys-menu-direct{margin-top:25px;border:0}body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-bottom{display:block!important;margin-top:30px!important}}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-top p{width:100%!important;max-width:none!important;justify-self:stretch!important}
@view-transition{navigation:none}
body[data-atelier-page^=index] .sys-topbar{background:linear-gradient(180deg,rgba(0,0,0,.5),rgba(0,0,0,0));}
body[data-atelier-page^=index] .sys-topbar .sys-languages a{opacity:.85}
body[data-atelier-page^=index] .sys-topbar .sys-languages a[aria-current=page]{opacity:1}
/* Stronger calls to action and a compact navigation drawer. */
body[data-atelier-page] .sys-apply,
body[data-atelier-page] :is(.atelier-section,.ae-opening,.atelier-closing) :is(.btn,.k-btn),
body[data-atelier-page] :is(.home-about-link,.home-discover,.home-manifesto-link){background:var(--atelier-blue)!important;color:var(--atelier-paper)!important;border:1px solid var(--atelier-blue)!important;border-radius:3px!important;padding:15px 22px!important;min-height:48px!important;box-sizing:border-box!important;gap:24px!important;text-decoration:none!important;transition:background .18s,color .18s,transform .18s!important;opacity:1!important}
body[data-atelier-page] :is(.atelier-section,.ae-opening,.atelier-closing) .btn :is(.btn__txt,.btn__txt-inner){color:var(--atelier-paper)!important}
body[data-atelier-page] :is(.sys-apply,.home-about-link,.home-discover,.home-manifesto-link):hover,
body[data-atelier-page] :is(.atelier-section,.ae-opening,.atelier-closing) :is(.btn,.k-btn):hover{background:var(--atelier-ink)!important;border-color:var(--atelier-ink)!important;transform:translateY(-2px)}
body[data-atelier-page] .sys-apply{min-height:44px!important;padding:11px 18px!important;font-weight:500}
body[data-atelier-page^=index] .sys-apply,body[data-atelier-page^=about] .sys-apply,body[data-atelier-page^=educators] .sys-apply{background:var(--atelier-paper)!important;color:var(--atelier-ink)!important;border-color:var(--atelier-paper)!important}
body[data-atelier-page] .rr-cover-link{background:var(--atelier-blue);color:var(--atelier-paper)!important;padding:14px 20px!important;border:0!important;border-radius:3px;box-sizing:border-box;min-height:52px}
body[data-atelier-page] .rr-cover-link:hover{background:var(--atelier-ink)}
body[data-atelier-page] .imt-navigation.home-simple-menu{width:min(480px,100%)!important;max-width:100%!important;inset:0 auto 0 0!important;border-right:1px solid var(--atelier-line)!important;box-shadow:12px 0 50px #0002!important}
body[data-atelier-page] .imt-navigation.home-simple-menu::backdrop{background:rgba(20,22,18,.42)!important;backdrop-filter:blur(2px)}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-shell{padding:16px 28px 24px!important;min-height:100dvh!important;display:flex!important;flex-direction:column!important}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-top{position:sticky!important;top:-16px!important;grid-template-columns:1fr 44px!important;height:60px!important;flex-shrink:0;margin-bottom:16px!important;background:var(--atelier-paper)!important}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-top p{grid-column:1!important;text-align:left!important;font-size:15px!important}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-close{grid-column:2!important;justify-self:end!important;text-align:center!important}
body[data-atelier-page] .sys-navigation{display:block!important;flex:0 0 auto!important}
body[data-atelier-page] .sys-menu-group{border-bottom:var(--sys-rule)!important;margin:0!important}
body[data-atelier-page] .sys-menu-group>summary{display:flex!important;align-items:center!important;justify-content:space-between!important;pointer-events:auto!important;cursor:pointer!important;font-size:23px!important;line-height:1.3!important;min-height:66px!important;padding:16px 0!important;margin:0!important;gap:20px!important;box-sizing:border-box!important;color:var(--atelier-ink)!important}
body[data-atelier-page] .sys-menu-group>summary:after{content:'+'!important;font-size:25px;font-weight:300;flex-shrink:0;color:var(--atelier-blue)}
body[data-atelier-page] .sys-menu-group[open]>summary:after{content:'−'!important}
body[data-atelier-page] .sys-menu-group ul{padding:0 0 16px 15px!important;border-left:2px solid var(--atelier-line)!important;margin:0 0 16px!important}
body[data-atelier-page] .sys-menu-group li{border:0!important}
body[data-atelier-page] .sys-menu-group a{min-height:44px!important;padding:10px 8px!important;font-size:15px!important;line-height:1.5!important}
body[data-atelier-page] .sys-menu-direct{margin-top:0!important;padding:20px 0!important;border:0!important}
body[data-atelier-page] .sys-menu-direct ul{gap:28px!important}
body[data-atelier-page] .sys-menu-direct .h3{font-size:23px!important}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-bottom{display:block!important;margin-top:auto!important;padding-top:24px!important}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-apply{background:var(--atelier-blue)!important;color:var(--atelier-paper)!important;padding:15px 20px!important;border:0!important;border-radius:3px!important;min-height:54px!important;font-weight:500!important}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-apply:hover{background:var(--atelier-ink)!important}
body[data-atelier-page] .imt-navigation .home-simple-meta{padding-top:20px!important}
@media(max-width:560px){body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-shell{padding-inline:20px!important}body[data-atelier-page] .sys-menu-group>summary{font-size:21px!important;min-height:62px!important}body[data-atelier-page] .sys-menu-direct .h3{font-size:22px!important}}
@media(prefers-reduced-motion:reduce){body[data-atelier-page] :is(.sys-apply,.home-about-link,.home-discover,.home-manifesto-link,.btn,.k-btn){transition:none!important;transform:none!important}}
/* Warm paper and oxblood: shared colour and control treatment. */
:root{--atelier-paper:#f3eee7;--atelier-ink:#292522;--atelier-blue:#783f46;--atelier-sage:#e8dcd6;--atelier-line:#cfc1b8;--at-wash:#e8dcd6;--at-rule:#cfc1b8;--nav-surface:#f3eee7;--nav-ink:#292522;--nav-accent:#783f46;--nav-rule:#cfc1b8}
body[data-atelier-page]{background:var(--atelier-paper)!important;color:var(--atelier-ink)}
body[data-atelier-page] :is(.reading-room,.ae-opening,.tt-opening){background:var(--atelier-paper)!important}
body[data-atelier-page] :is(.ae-project,.sys-study-map,.reading-chapter .tt-structure){background:var(--atelier-sage)!important}
body[data-atelier-page] .reading-index a[aria-current=location],body[data-atelier-page] .sys-menu-group a[aria-current=page]{background:var(--atelier-sage)!important;color:var(--atelier-blue)!important}
body[data-atelier-page] :is(.sys-apply,.home-about-link,.home-discover,.home-manifesto-link,.rr-cover-link),
body[data-atelier-page] :is(.atelier-section,.ae-opening,.atelier-closing) :is(.btn,.k-btn){border-radius:999px!important;padding:14px 26px!important;background:var(--atelier-blue)!important;border-color:var(--atelier-blue)!important;color:var(--atelier-paper)!important;min-height:48px!important}
body[data-atelier-page] .rr-cover-link{max-width:390px!important}
body[data-atelier-page] .sys-apply{padding:11px 21px!important;min-height:44px!important}
body[data-atelier-page^=index] .sys-apply,body[data-atelier-page^=about] .sys-apply,body[data-atelier-page^=educators] .sys-apply{background:var(--atelier-paper)!important;border-color:var(--atelier-paper)!important;color:var(--atelier-ink)!important}
body[data-atelier-page] .imt-navigation.home-simple-menu{background:var(--atelier-paper)!important;border-color:var(--atelier-line)!important}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-top{background:var(--atelier-paper)!important}
body[data-atelier-page] .sys-menu-group>summary{font-size:30px!important;letter-spacing:-.025em!important;line-height:1.15!important;color:var(--atelier-ink)!important;min-height:76px!important}
body[data-atelier-page] .sys-menu-group>summary:after{font-size:24px;color:var(--atelier-blue)}
body[data-atelier-page] .sys-menu-group[open]>summary{color:var(--atelier-blue)!important}
body[data-atelier-page] .sys-menu-group ul{border-left:0!important;padding-left:0!important;margin-left:0!important}
body[data-atelier-page] .sys-menu-group a{padding:10px 14px!important;border-radius:4px;font-size:15px!important}
body[data-atelier-page] .sys-menu-group a[aria-current=page]{background:transparent!important;text-decoration:underline!important;text-underline-offset:5px}
body[data-atelier-page] .sys-menu-group a:hover{background:var(--atelier-sage)!important}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-apply{border-radius:999px!important;padding:15px 24px!important;background:var(--atelier-blue)!important;color:var(--atelier-paper)!important}
body[data-atelier-page] .sys-menu-direct .h3{font-size:28px!important}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-top p{font-size:12px!important;letter-spacing:.1em!important;text-transform:uppercase!important;color:var(--atelier-blue)!important}
body[data-atelier-page] .sys-menu-group{border-color:var(--atelier-line)!important}
body[data-atelier-page] .sys-duration-track{background:var(--atelier-sage)!important}
body[data-atelier-page] .tt-seal{border-radius:50%!important;right:-25px!important;bottom:-25px!important;border:1px solid var(--atelier-line)!important}
@media(max-width:560px){body[data-atelier-page] .sys-menu-group>summary{font-size:27px!important;min-height:70px!important}body[data-atelier-page] .sys-menu-direct .h3{font-size:25px!important}body[data-atelier-page] .tt-seal{right:-10px!important;bottom:-20px!important}}

/* Tattoo only: a joined programme diagram and interactive comparison. */
body[data-tattoo-atelier] .tp-overview{padding:65px var(--tt-edge) 75px;background:var(--atelier-paper);border-top:1px solid var(--atelier-line)}
body[data-tattoo-atelier] .tp-heading{display:grid;grid-template-columns:240px 1fr;gap:24px 8%;margin-bottom:50px}
body[data-tattoo-atelier] .tp-heading>p:first-child,.tp-small{font-size:13px;color:var(--atelier-blue)}
body[data-tattoo-atelier] .tp-heading h2{font-size:clamp(40px,5vw,72px);font-weight:400;letter-spacing:-.03em;line-height:1.1;margin:0;max-width:20ch}
body[data-tattoo-atelier] .tp-heading>p:last-child{grid-column:2;max-width:60ch;font-size:17px;line-height:1.8;margin:0}
body[data-tattoo-atelier] .tp-cards{display:grid!important;grid-template-columns:1fr 1fr!important;padding:0!important;gap:0!important;position:relative}
body[data-tattoo-atelier] .tp-cards>a{padding:30px!important;border:1px solid var(--atelier-line)!important;min-height:280px;box-sizing:border-box}
body[data-tattoo-atelier] .tp-cards>a:nth-child(2){border-left:0!important}
body[data-tattoo-atelier] .tp-cards>a:nth-child(3){grid-column:1/-1;min-height:0;background:var(--atelier-sage)!important;border-top:0!important;display:grid;grid-template-columns:1fr auto;column-gap:30px}
body[data-tattoo-atelier] .tp-cards h2{font-size:clamp(26px,3vw,40px);margin:22px 0!important}
body[data-tattoo-atelier] .tp-cards>a:nth-child(3) h2{grid-column:1;max-width:25ch}
body[data-tattoo-atelier] .tp-cards>a:nth-child(3) strong{grid-column:2;grid-row:2;align-self:center;margin:0}
body[data-tattoo-atelier] .tp-cards>a:nth-child(3) p{grid-column:2;grid-row:3;margin:0}
body[data-tattoo-atelier] .tp-cards .sys-duration-track{display:none!important}
body[data-tattoo-atelier] .tp-cards>a:first-child:after{content:'→';position:absolute;left:50%;top:115px;transform:translateX(-50%);z-index:1;width:46px;height:46px;display:grid;place-items:center;border-radius:50%;background:var(--atelier-blue);color:var(--atelier-paper);font-size:26px}
body[data-tattoo-atelier] .tp-scale{display:flex;justify-content:space-between;padding-top:15px;border-top:4px solid var(--atelier-blue);color:var(--atelier-blue);font-size:12px}
body[data-tattoo-atelier] .tp-comparison{margin-top:55px;border-top:1px solid var(--atelier-line);padding-top:30px}
body[data-tattoo-atelier] .tp-choice{display:flex;gap:10px;margin:20px 0 30px;flex-wrap:wrap}
body[data-tattoo-atelier] .tp-choice button{padding:12px 23px;border:1px solid var(--atelier-line);border-radius:999px;background:transparent;color:var(--atelier-ink);font-size:15px;cursor:pointer;min-height:44px}
body[data-tattoo-atelier] .tp-choice button[aria-pressed=true]{background:var(--atelier-blue);color:var(--atelier-paper);border-color:var(--atelier-blue)}
body[data-tattoo-atelier] .tp-result[hidden]{display:none!important}
body[data-tattoo-atelier] .tp-result{display:grid;grid-template-columns:1fr 1fr;gap:10%;align-items:center}
body[data-tattoo-atelier] .tp-result dl{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin:0}
body[data-tattoo-atelier] .tp-result dl>div{display:flex;flex-direction:column-reverse;gap:12px}
body[data-tattoo-atelier] .tp-result dt{font-size:13px;color:var(--atelier-blue)}
body[data-tattoo-atelier] .tp-result dd{font-size:clamp(42px,5vw,70px);line-height:1;margin:0;font-weight:400;letter-spacing:-.04em}
body[data-tattoo-atelier] .tp-result-note p{font-size:17px;line-height:1.7}
body[data-tattoo-atelier] .tp-link{display:inline-flex;gap:25px;align-items:center;padding:12px 0;border-bottom:1px solid var(--atelier-blue);color:var(--atelier-blue);text-decoration:none;font-size:15px;line-height:1.5}
body[data-tattoo-atelier] .tp-week{display:grid;grid-template-columns:1fr 1fr;gap:10%;padding:65px var(--tt-edge);background:var(--atelier-sage)}
body[data-tattoo-atelier] .tp-week h2{font-size:clamp(38px,4vw,58px);font-weight:400;margin:20px 0;line-height:1.1}
body[data-tattoo-atelier] .tp-week p{font-size:16px;line-height:1.8}
body[data-tattoo-atelier] .tp-week-diagram{display:flex;align-items:center;gap:15px;margin-top:32px}
body[data-tattoo-atelier] .tp-week-diagram span{border:1px solid var(--atelier-blue);width:85px;height:85px;border-radius:50%;display:grid;place-items:center;font-size:26px;color:var(--atelier-blue)}
body[data-tattoo-atelier] .tp-week-diagram strong{font-size:48px;color:var(--atelier-blue);font-weight:400}
body[data-tattoo-atelier] .tp-week-diagram b{font-weight:400}
body[data-tattoo-atelier] .tp-week-notes article{border-top:1px solid var(--atelier-line);padding:20px 0}
body[data-tattoo-atelier] .tp-week-notes h3{font-size:30px;font-weight:400;margin:0 0 12px}
body[data-tattoo-atelier] :is(.tp-choice button,.tp-link):focus-visible{outline:2px solid var(--atelier-blue);outline-offset:5px}
@media(max-width:760px){body[data-tattoo-atelier] .tp-overview{padding-block:45px}body[data-tattoo-atelier] .tp-heading{display:block;margin-bottom:30px}body[data-tattoo-atelier] .tp-heading h2{font-size:40px;margin:20px 0}body[data-tattoo-atelier] .tp-cards>a{padding:20px!important;min-height:240px}body[data-tattoo-atelier] .tp-cards h2{font-size:25px!important}body[data-tattoo-atelier] .tp-cards strong{font-size:26px}body[data-tattoo-atelier] .tp-cards>a:nth-child(3){display:flex!important}body[data-tattoo-atelier] .tp-cards>a:first-child:after{width:32px;height:32px;top:90px;font-size:21px}body[data-tattoo-atelier] .tp-result{display:block}body[data-tattoo-atelier] .tp-result-note{margin-top:25px}body[data-tattoo-atelier] .tp-choice{gap:8px}body[data-tattoo-atelier] .tp-choice button{padding-inline:15px;font-size:14px}body[data-tattoo-atelier] .tp-week{display:block;padding-block:40px}body[data-tattoo-atelier] .tp-week-notes{margin-top:38px}body[data-tattoo-atelier] .tp-week-diagram{gap:12px}}
body[data-tattoo-atelier] .tp-cards>a:first-child:after{left:100%}
/* Text-only opening: a clear title, purpose and complete introduction. */
body[data-tattoo-atelier] .tp-text-opening{padding:145px var(--tt-edge) 65px}
body[data-tattoo-atelier] .tp-opening-heading{border-bottom:1px solid var(--atelier-line);padding-bottom:34px}
body[data-tattoo-atelier] .tp-opening-heading .imt-sechead{font-size:12px!important;letter-spacing:.08em!important;color:var(--atelier-blue)!important;margin:0 0 24px!important}
body[data-tattoo-atelier] .tp-opening-heading h1{font-size:clamp(54px,7vw,100px)!important;line-height:1.05!important;font-weight:400!important;margin:0!important;letter-spacing:-.035em!important;text-transform:none!important}
body[data-tattoo-atelier] .tp-opening-intro{display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);gap:9%;padding-top:38px}
body[data-tattoo-atelier] .tp-opening-statement p{font-size:clamp(28px,3vw,42px);line-height:1.3;letter-spacing:-.02em;margin:0;max-width:20ch}
body[data-tattoo-atelier] .tp-opening-copy p{font-size:17px;line-height:1.8;margin:0 0 23px;max-width:65ch}
body[data-tattoo-atelier] .tp-opening-link{display:inline-flex;align-items:center;gap:28px;border-radius:999px;background:var(--atelier-blue);color:var(--atelier-paper);padding:15px 24px;min-height:48px;box-sizing:border-box;text-decoration:none;font-size:15px;margin-top:8px}
body[data-tattoo-atelier] .tp-opening-link:hover{background:var(--atelier-ink)}
body[data-tattoo-atelier] .tp-opening-link:focus-visible{outline:2px solid var(--atelier-blue);outline-offset:4px}
@media(max-width:760px){body[data-tattoo-atelier] .tp-text-opening{padding-top:120px;padding-bottom:40px}body[data-tattoo-atelier] .tp-opening-heading h1{font-size:54px!important}body[data-tattoo-atelier] .tp-opening-intro{display:block;padding-top:28px}body[data-tattoo-atelier] .tp-opening-statement{margin-bottom:25px}body[data-tattoo-atelier] .tp-opening-statement p{font-size:28px}body[data-tattoo-atelier] .tp-opening-copy p{font-size:16px;line-height:1.8}}
/* Three clear options; Complete is explicitly the combination of the first two. */
body[data-tattoo-atelier] .tp-options{padding:0!important;display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:28px!important}
body[data-tattoo-atelier] .tp-options>a{display:flex!important;flex-direction:column!important;align-items:stretch!important;padding:26px 0!important;border:0!important;border-top:2px solid var(--atelier-line)!important;background:none!important;min-width:0}
body[data-tattoo-atelier] .tp-options>a:last-child{padding:26px!important;background:var(--atelier-sage)!important;border-top:2px solid var(--atelier-blue)!important;border-radius:0 0 12px 12px}
body[data-tattoo-atelier] .tp-options .tp-course-kicker{font-size:12px;letter-spacing:.03em;color:var(--atelier-blue);min-height:20px}
body[data-tattoo-atelier] .tp-options h2{font-size:clamp(28px,3vw,40px)!important;line-height:1.15!important;margin:22px 0!important;min-height:3.45em}
body[data-tattoo-atelier] .tp-options .tp-course-fit{font-size:16px!important;line-height:1.75!important;margin:0 0 30px!important;min-height:7em}
body[data-tattoo-atelier] .tp-options strong{font-size:34px!important;margin-top:auto!important}
body[data-tattoo-atelier] .tp-options p{font-size:14px;line-height:1.6}
body[data-tattoo-atelier] .tp-options .tp-lessons{margin-top:4px!important}
body[data-tattoo-atelier] .tp-options .at-path-arrow{display:none!important}
body[data-tattoo-atelier] .tp-course-action{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-top:26px;padding:13px 20px;border:1px solid var(--atelier-blue);border-radius:999px;color:var(--atelier-blue);font-size:14px}
body[data-tattoo-atelier] .tp-options>a:hover .tp-course-action{background:var(--atelier-blue);color:var(--atelier-paper)}
@media(max-width:850px){body[data-tattoo-atelier] .tp-options{grid-template-columns:1fr!important;gap:22px!important}body[data-tattoo-atelier] .tp-options h2,body[data-tattoo-atelier] .tp-options .tp-course-fit{min-height:0}body[data-tattoo-atelier] .tp-options h2{font-size:32px!important;max-width:23ch}body[data-tattoo-atelier] .tp-options .tp-course-fit{margin-bottom:22px!important}body[data-tattoo-atelier] .tp-options>a:last-child{padding:24px!important}body[data-tattoo-atelier] .tp-course-action{align-self:flex-start;gap:30px}}

/* PMU: treatment areas, training balance and a full readable prospectus. */
body[data-pmu-atelier] .pmu-opening{padding:145px var(--tt-edge) 65px;background:var(--atelier-paper)}
body[data-pmu-atelier] .pmu-title{padding-bottom:36px;border-bottom:1px solid var(--atelier-line)}
body[data-pmu-atelier] .pmu-title .eyebrow{font-size:13px;color:var(--atelier-blue);margin:0 0 25px}
body[data-pmu-atelier] .pmu-title h1{font-size:clamp(48px,6.2vw,88px)!important;font-weight:400!important;line-height:1.08!important;letter-spacing:-.035em!important;max-width:20ch!important;margin:0!important;text-transform:none!important}
body[data-pmu-atelier] .pmu-cover{display:grid;grid-template-columns:1fr 1fr;gap:9%;padding-top:40px;align-items:center}
body[data-pmu-atelier] .pmu-intro>p{font-size:clamp(23px,2.5vw,34px);line-height:1.45;margin:0 0 30px}
body[data-pmu-atelier] .pmu-intro .btn{display:inline-flex!important;align-items:center;border:0!important;border-radius:999px!important;background:var(--atelier-blue)!important;color:var(--atelier-paper)!important;padding:15px 25px!important;min-height:48px!important;clip-path:none!important}
body[data-pmu-atelier] .pmu-intro .btn:before,body[data-pmu-atelier] .pmu-intro .btn:after{display:none!important}
body[data-pmu-atelier] .pmu-intro .btn__txt{color:var(--atelier-paper)!important}
body[data-pmu-atelier] .pmu-intro .rr-cover-link{background:transparent!important;color:var(--atelier-blue)!important;border-radius:0!important;padding:12px 0!important;margin-top:22px;border-bottom:1px solid var(--atelier-line)!important}
body[data-pmu-atelier] .pmu-photo figure{margin:0;aspect-ratio:4/3;overflow:hidden}
body[data-pmu-atelier] .pmu-photo img{width:100%;height:100%;object-fit:cover}
body[data-pmu-atelier] .pmu-training{padding:55px var(--tt-edge) 65px;background:var(--atelier-sage)}
body[data-pmu-atelier] .pmu-training header{display:grid;grid-template-columns:240px 1fr;gap:8%;margin-bottom:40px}
body[data-pmu-atelier] .pmu-kicker{font-size:13px;color:var(--atelier-blue)}
body[data-pmu-atelier] .pmu-training h2{font-size:clamp(38px,4.5vw,64px);font-weight:400;line-height:1.1;letter-spacing:-.025em;margin:0}
body[data-pmu-atelier] .pmu-training-grid{display:grid;grid-template-columns:1fr 1fr;gap:9%;align-items:center}
body[data-pmu-atelier] .pmu-ring{width:240px;aspect-ratio:1;border-radius:50%;background:conic-gradient(var(--atelier-blue) 0 80%,#c9b2ab 80% 100%);display:grid;place-items:center;margin:auto}
body[data-pmu-atelier] .pmu-ring>span{width:180px;aspect-ratio:1;border-radius:50%;background:var(--atelier-sage);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;font-size:14px;color:var(--atelier-blue)}
body[data-pmu-atelier] .pmu-ring strong{font-size:56px;line-height:1;font-weight:400;letter-spacing:-.04em}
body[data-pmu-atelier] .pmu-legend{display:flex;justify-content:center;gap:25px;margin-top:24px;font-size:13px}
body[data-pmu-atelier] .pmu-legend span:before{content:'';display:inline-block;width:9px;height:9px;border-radius:50%;background:var(--atelier-blue);margin-right:8px}
body[data-pmu-atelier] .pmu-legend span:last-child:before{background:#c9b2ab}
body[data-pmu-atelier] .pmu-training-copy .rr-metrics{margin:0 0 25px;gap:20px}
body[data-pmu-atelier] .pmu-training-copy .rr-fact{border-color:#b9a49d}
body[data-pmu-atelier] .pmu-training-copy>p{font-size:17px;line-height:1.75}
body[data-pmu-atelier] .pmu-jump{display:inline-flex;gap:30px;color:var(--atelier-blue);font-size:15px;text-decoration:none;border-bottom:1px solid currentColor;padding:12px 0}
body[data-pmu-atelier] .pmu-curriculum{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:25px}
body[data-pmu-atelier] .pmu-area{border-top:2px solid var(--atelier-blue);padding-top:20px;min-width:0}
body[data-pmu-atelier] .pmu-area-number{font-size:12px;color:var(--atelier-blue)}
body[data-pmu-atelier] .pmu-area h3{font-size:32px!important;margin:15px 0 20px!important}
body[data-pmu-atelier] .pmu-area ul{list-style:none;padding:0;margin:0}
body[data-pmu-atelier] .pmu-area li{font-size:15px;line-height:1.7;padding:10px 0}
body[data-pmu-atelier] .pmu-area:last-child{grid-column:1/-1;background:var(--atelier-sage);padding:25px;border:0;margin-top:10px}
body[data-pmu-atelier] .pmu-area:last-child ul{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:25px}
body[data-pmu-atelier] .pmu-certification{background:var(--atelier-sage);padding:30px!important;border:0}
body[data-pmu-atelier] .pmu-certification ul{list-style:none;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:15px 30px}
body[data-pmu-atelier] .pmu-certification li{border-top:1px solid var(--atelier-line);border-bottom:0;padding:15px 0}
@media(max-width:760px){body[data-pmu-atelier] .pmu-opening{padding-top:120px;padding-bottom:40px}body[data-pmu-atelier] .pmu-title h1{font-size:46px!important}body[data-pmu-atelier] .pmu-cover{display:flex;flex-direction:column;gap:30px;align-items:stretch}body[data-pmu-atelier] .pmu-intro>p{font-size:25px}body[data-pmu-atelier] .pmu-training{padding-block:40px}body[data-pmu-atelier] .pmu-training header{display:block;margin-bottom:30px}body[data-pmu-atelier] .pmu-training-grid{display:block}body[data-pmu-atelier] .pmu-training-copy{margin-top:35px}body[data-pmu-atelier] .pmu-training-copy .rr-metrics{grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}body[data-pmu-atelier] .pmu-training-copy .rr-fact b{font-size:32px}body[data-pmu-atelier] .pmu-curriculum{grid-template-columns:1fr}body[data-pmu-atelier] .pmu-area:last-child ul{grid-template-columns:1fr;gap:0}body[data-pmu-atelier] .pmu-certification ul{grid-template-columns:1fr}}
body[data-pmu-atelier] .sys-topbar{width:100%!important;flex:1 1 100%!important}
body[data-pmu-atelier] .header{width:100%!important;left:0!important;right:0!important}

body[data-additional-atelier=fine-art] .fa-curriculum-map{padding:65px var(--tt-edge);background:var(--atelier-sage)}
body[data-additional-atelier=fine-art] .fa-curriculum-map>header{display:grid;grid-template-columns:240px 1fr;gap:20px 8%;margin-bottom:50px}
body[data-additional-atelier=fine-art] .fa-curriculum-map>header>p:first-child{font-size:13px;color:var(--atelier-blue)}
body[data-additional-atelier=fine-art] .fa-curriculum-map h2{font-size:clamp(36px,4.7vw,66px);line-height:1.1;letter-spacing:-.03em;font-weight:400;max-width:21ch;margin:0}
body[data-additional-atelier=fine-art] .fa-curriculum-map>header>p:last-child{grid-column:2;font-size:17px;line-height:1.8;max-width:60ch;margin:0}
body[data-additional-atelier=fine-art] .fa-areas{display:grid;grid-template-columns:1fr 1fr;gap:40px 7%}
body[data-additional-atelier=fine-art] .fa-area{border-top:1px solid var(--atelier-blue);padding:22px 0;min-width:0}
body[data-additional-atelier=fine-art] .fa-area-top{display:flex;justify-content:space-between;align-items:flex-start;color:var(--atelier-blue);font-size:13px}
body[data-additional-atelier=fine-art] .fa-area svg{width:100px;height:88px}
body[data-additional-atelier=fine-art] .fa-area h3{font-size:clamp(28px,3vw,40px);font-weight:400;margin:0 0 25px;line-height:1.2}
body[data-additional-atelier=fine-art] .fa-area ul{list-style:none;margin:0;padding:0}
body[data-additional-atelier=fine-art] .fa-area .sys-map-node{display:grid;grid-template-columns:28px 1fr 20px;gap:15px;border-top:1px solid var(--atelier-line);padding:15px 0;text-decoration:none;align-items:baseline}
body[data-additional-atelier=fine-art] .fa-area .sys-map-node>span:first-child{grid-column:1;grid-row:1;width:auto;height:auto;border:0;background:none;font-size:11px}
body[data-additional-atelier=fine-art] .fa-area .sys-map-node>span:nth-child(2){grid-column:2;grid-row:1;font-size:17px;line-height:1.5}
body[data-additional-atelier=fine-art] .fa-area .sys-map-node>span:last-child{grid-column:3;grid-row:1}
body[data-additional-atelier=fine-art] .fa-area .sys-map-node:hover{background:var(--atelier-paper)}
@media(max-width:760px){body[data-additional-atelier=fine-art] .fa-curriculum-map{padding-block:40px}body[data-additional-atelier=fine-art] .fa-curriculum-map>header{display:block;margin-bottom:30px}body[data-additional-atelier=fine-art] .fa-curriculum-map h2{font-size:38px;margin:20px 0}body[data-additional-atelier=fine-art] .fa-areas{grid-template-columns:1fr;gap:15px}body[data-additional-atelier=fine-art] .fa-area h3{font-size:30px}body[data-additional-atelier=fine-art] .fa-area svg{width:80px;height:70px}}
/* Fine Art: a simple text index, with all curriculum topics visible. */
body[data-additional-atelier=fine-art] .fa-curriculum-map{background:var(--atelier-paper);border-top:1px solid var(--atelier-line);padding-block:55px}
body[data-additional-atelier=fine-art] .fa-curriculum-map>header{display:block;max-width:900px;margin-bottom:40px}
body[data-additional-atelier=fine-art] .fa-curriculum-map h2{font-size:clamp(34px,4vw,56px);max-width:25ch;margin:18px 0 22px}
body[data-additional-atelier=fine-art] .fa-curriculum-map>header>p:last-child{font-size:16px;max-width:65ch}
body[data-additional-atelier=fine-art] .fa-areas{display:block}
body[data-additional-atelier=fine-art] .fa-area{display:grid;grid-template-columns:36px minmax(180px,.8fr) minmax(0,1.7fr);gap:28px;padding:30px 0;border-top:1px solid var(--atelier-line)}
body[data-additional-atelier=fine-art] .fa-area-top{padding-top:8px}
body[data-additional-atelier=fine-art] .fa-area h3{font-size:30px;margin:0;line-height:1.25;max-width:16ch}
body[data-additional-atelier=fine-art] .fa-area .sys-map-node{border-top:0;border-bottom:1px solid var(--atelier-line);padding:12px 0;grid-template-columns:24px 1fr 18px}
body[data-additional-atelier=fine-art] .fa-area li:first-child .sys-map-node{padding-top:4px}
body[data-additional-atelier=fine-art] .fa-area li:last-child .sys-map-node{border-bottom:0}
body[data-additional-atelier=fine-art] .fa-area .sys-map-node:hover{background:var(--atelier-sage)}
@media(max-width:760px){body[data-additional-atelier=fine-art] .fa-area{grid-template-columns:25px 1fr;gap:12px;padding-block:25px}body[data-additional-atelier=fine-art] .fa-area-top{padding-top:5px}body[data-additional-atelier=fine-art] .fa-area h3{font-size:27px;max-width:none}body[data-additional-atelier=fine-art] .fa-area ul{grid-column:1/-1;margin-top:12px}body[data-additional-atelier=fine-art] .fa-curriculum-map{padding-block:40px}}
/* A single curriculum, organised into four readable chapters. */
body:is([data-additional-atelier=fine-art],[data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .reading-room{border-top:1px solid var(--atelier-line);padding-top:60px}
body:is([data-additional-atelier=fine-art],[data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .fa-reading-group{margin:0 0 42px;padding:0;border-top:2px solid var(--atelier-blue);scroll-margin-top:110px}
body:is([data-additional-atelier=fine-art],[data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .fa-reading-group>header{display:grid;grid-template-columns:28px 1fr auto;gap:18px;align-items:baseline;padding:25px 0}
body:is([data-additional-atelier=fine-art],[data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .fa-reading-group>header>span{font-size:12px;color:var(--atelier-blue)}
body:is([data-additional-atelier=fine-art],[data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .rr-document .fa-reading-group h3{font-size:32px!important;margin:0!important;line-height:1.2!important;max-width:none}
body:is([data-additional-atelier=fine-art],[data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .fa-reading-group>header>p{font-size:12px;color:var(--atelier-blue);margin:0;white-space:nowrap}
body:is([data-additional-atelier=fine-art],[data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .fa-reading-group .tt-topic{padding:19px 0!important}
body:is([data-additional-atelier=fine-art],[data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .fa-reading-group .tt-topic-title{font-size:20px!important;gap:14px}
body:is([data-additional-atelier=fine-art],[data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .fa-reading-group .tt-topic[open]{background:var(--atelier-sage);padding:20px!important;border-radius:0 0 8px 8px;margin-bottom:10px}
body:is([data-additional-atelier=fine-art],[data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .fa-reading-group .tt-topic-copy{font-size:16px!important;line-height:1.85!important;padding-left:0!important;margin-top:20px!important;max-width:70ch}
body:is([data-additional-atelier=fine-art],[data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .reading-index .fa-group-link{border-bottom:0;font-size:13px!important;padding:9px 8px 9px 40px!important;color:var(--atelier-blue)}
body:is([data-additional-atelier=fine-art],[data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .ae-syllabus{padding-bottom:0}
body:is([data-additional-atelier=fine-art],[data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .fa-integrated-curriculum{scroll-margin-top:110px}
@media(max-width:760px){body:is([data-additional-atelier=fine-art],[data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .fa-reading-group>header{grid-template-columns:22px 1fr;gap:10px;padding-block:22px}body:is([data-additional-atelier=fine-art],[data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .rr-document .fa-reading-group h3{font-size:27px!important}body:is([data-additional-atelier=fine-art],[data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .fa-reading-group>header>p{grid-column:2}body:is([data-additional-atelier=fine-art],[data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .fa-reading-group .tt-topic-title{font-size:19px!important}body:is([data-additional-atelier=fine-art],[data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .fa-reading-group .tt-topic[open]{padding:18px!important}}
body:is([data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .fa-reading-group .rr-fact{display:grid;grid-template-columns:28px minmax(0,1fr);gap:16px;padding:18px 0;border-top:1px solid var(--atelier-line);margin:0}
body:is([data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .fa-reading-group .rr-fact b{font-size:12px;padding-top:5px;color:var(--atelier-blue)}
body:is([data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .fa-reading-group .rr-fact span{font-size:20px;line-height:1.55}
body:is([data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .ae-opening{padding-bottom:50px}
@media(max-width:760px){body:is([data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .fa-reading-group .rr-fact span{font-size:18px}body:is([data-additional-atelier=media-production],[data-additional-atelier=brand-growth],[data-additional-atelier=visibility-package]) .fa-reading-group .rr-fact{grid-template-columns:24px minmax(0,1fr);gap:12px}}

body[data-additional-atelier=visibility-package] .vp-course-link{color:var(--atelier-blue);text-decoration:none;display:flex;justify-content:space-between;align-items:baseline;gap:25px}
body[data-additional-atelier=visibility-package] .vp-course-link:hover{text-decoration:underline;text-underline-offset:5px}
body[data-additional-atelier=visibility-package] .vp-course-link>span{font-size:22px;flex-shrink:0}
body[data-additional-atelier=visibility-package] .fa-reading-group>header{grid-template-columns:28px minmax(0,1fr)}
body[data-additional-atelier=visibility-package] .vp-course-link:focus-visible{outline:2px solid var(--atelier-blue);outline-offset:5px}

/* Weekend Lab uses the shared reading room, with the schedule made explicit. */
body[data-weekend-reading] .header{width:100%!important;left:0!important;right:0!important}
body[data-weekend-reading] .wl-opening{padding:145px var(--tt-edge) 55px;background:var(--atelier-paper)}
body[data-weekend-reading] .wl-title{border-bottom:1px solid var(--atelier-line);padding-bottom:35px}
body[data-weekend-reading] .wl-title .imt-sechead{font-size:13px!important;letter-spacing:.06em!important;color:var(--atelier-blue)!important;margin:0 0 24px!important}
body[data-weekend-reading] .wl-title h1{font-size:clamp(50px,7vw,96px)!important;line-height:1.06!important;font-weight:400!important;letter-spacing:-.035em!important;margin:0!important;text-transform:none!important}
body[data-weekend-reading] .wl-intro{display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);gap:9%;padding-top:38px}
body[data-weekend-reading] .wl-statement p{font-size:clamp(28px,3vw,40px);line-height:1.3;letter-spacing:-.02em;margin:0;max-width:22ch}
body[data-weekend-reading] .wl-copy p{font-size:17px;line-height:1.8;margin:0 0 23px;max-width:65ch}
body[data-weekend-reading] .reading-room{border-top:1px solid var(--atelier-line);padding-top:55px}
body[data-weekend-reading] .wl-format-group{margin:30px 0 38px;border-top:2px solid var(--atelier-blue);padding-top:20px;scroll-margin-top:110px}
body[data-weekend-reading] .rr-document .wl-format-group h3{font-size:29px!important;margin:0 0 20px!important;line-height:1.25!important}
body[data-weekend-reading] .wl-format-items{display:block}
body[data-weekend-reading] .wl-format-items .rr-fact{display:grid;grid-template-columns:26px minmax(0,1fr);gap:18px;padding:17px 0;border-top:1px solid var(--atelier-line)}
body[data-weekend-reading] .wl-format-items .rr-fact b{font-size:12px;color:var(--atelier-blue);padding-top:5px}
body[data-weekend-reading] .wl-format-items .rr-fact span{font-size:21px;line-height:1.5}
body[data-weekend-reading] .wl-format-group:first-child .wl-format-items{display:grid;grid-template-columns:1fr 1fr;gap:25px}
body[data-weekend-reading] .wl-complete .rr-facts{display:block;margin-top:30px}
body[data-weekend-reading] .wl-complete .rr-fact{display:grid;grid-template-columns:26px minmax(0,1fr);gap:18px;padding:17px 0}
body[data-weekend-reading] .wl-complete .rr-fact span{font-size:21px;line-height:1.5}
body[data-weekend-reading] .wl-complete .rr-fact b{font-size:12px;padding-top:5px}
body[data-weekend-reading] .reading-index .rr-secondary{padding-left:40px!important;font-size:13px!important;line-height:1.6!important;border-bottom:0;color:var(--atelier-blue)}
@media(max-width:760px){body[data-weekend-reading] .wl-opening{padding-top:120px;padding-bottom:40px}body[data-weekend-reading] .wl-title h1{font-size:50px!important}body[data-weekend-reading] .wl-intro{display:block;padding-top:28px}body[data-weekend-reading] .wl-statement{margin-bottom:26px}body[data-weekend-reading] .wl-statement p{font-size:28px}body[data-weekend-reading] .wl-copy p{font-size:16px}body[data-weekend-reading] .wl-format-group:first-child .wl-format-items{grid-template-columns:1fr;gap:0}body[data-weekend-reading] .wl-format-items .rr-fact span,body[data-weekend-reading] .wl-complete .rr-fact span{font-size:19px}body[data-weekend-reading] .rr-document .wl-format-group h3{font-size:27px!important}}

/* Homepage: the same ruled editorial structure as the course reading rooms. */
body[data-home-layout="atelier-editorial"]{--home-edge:6.5%}
body[data-home-layout="atelier-editorial"] .header{width:100%!important;left:0;right:0}
body[data-home-layout="atelier-editorial"] #section-1{background:var(--atelier-paper)!important;color:var(--atelier-ink)!important;padding:70px var(--home-edge)!important}
body[data-home-layout="atelier-editorial"] #section-1 .home-about-row{display:grid!important;grid-template-columns:240px minmax(0,1fr);gap:7%;align-items:start;max-width:none!important}
body[data-home-layout="atelier-editorial"] #section-1 .k-display{color:var(--atelier-ink)!important;font-size:clamp(30px,3.3vw,48px)!important;line-height:1.25!important;max-width:35ch!important;text-transform:none!important;letter-spacing:-.015em!important}
body[data-home-layout="atelier-editorial"] .home-about-link{display:flex!important;align-items:center;justify-content:space-between;font-size:15px!important;max-width:225px!important;transform:none!important}
body[data-home-layout="atelier-editorial"] #programs-intro{display:grid!important;grid-template-columns:240px minmax(0,1fr)!important;gap:7%!important;padding:65px var(--home-edge) 40px!important;border-top:1px solid var(--atelier-line)!important}
body[data-home-layout="atelier-editorial"] #programs-intro .k-display{font-size:clamp(44px,4.6vw,68px)!important;line-height:1.05!important;margin:0!important;max-width:none!important;text-transform:none!important}
body[data-home-layout="atelier-editorial"] #programs-intro .k-module__right{margin:0!important;padding:0!important;max-width:760px!important}
body[data-home-layout="atelier-editorial"] :is(#programs-intro,.imt-beyond) .k-serif-text{font-size:18px!important;line-height:1.7!important;max-width:65ch!important;margin:0 0 22px!important}
body[data-home-layout="atelier-editorial"] #section-9{padding:0 var(--home-edge) 75px!important}
body[data-home-layout="atelier-editorial"] .atelier-card-grid{display:block!important;padding:0!important;border-top:1px solid var(--atelier-line)!important;max-width:none!important}
body[data-home-layout="atelier-editorial"] .atelier-card:nth-child(n){padding:0!important;margin:0!important;border-bottom:1px solid var(--atelier-line);opacity:1!important;transform:none!important}
body[data-home-layout="atelier-editorial"] .atelier-card>a{display:grid!important;grid-template-columns:40px 200px minmax(0,1fr);gap:28px;padding:36px 0;align-items:start}
body[data-home-layout="atelier-editorial"] .home-course-number{font-size:14px;line-height:1.5;color:var(--atelier-blue);padding-top:8px}
body[data-home-layout="atelier-editorial"] .atelier-card-image{aspect-ratio:1!important;border-radius:0;align-self:start}
body[data-home-layout="atelier-editorial"] .atelier-card-copy{padding:0 0 0 3%!important;border:0!important;display:grid;grid-template-columns:150px minmax(0,1fr);gap:22px 7%;align-items:start}
body[data-home-layout="atelier-editorial"] .atelier-card-copy h3{font-size:clamp(38px,3.4vw,50px)!important;line-height:1.1!important;margin:0!important}
body[data-home-layout="atelier-editorial"] .atelier-card-copy p{font-size:17px!important;line-height:1.7!important;margin:0!important;max-width:60ch}
body[data-home-layout="atelier-editorial"] .home-course-cta{grid-column:2;display:inline-flex;justify-self:start;align-items:center;gap:26px;padding:13px 22px;background:var(--atelier-blue);color:var(--atelier-paper);border-radius:999px;font-size:15px;line-height:1.4;transition:background .2s}
body[data-home-layout="atelier-editorial"] .home-course-cta span{font-size:22px;line-height:1}
body[data-home-layout="atelier-editorial"] .atelier-card>a:hover .home-course-cta{background:var(--atelier-ink)}
body[data-home-layout="atelier-editorial"] .atelier-card>a:focus-visible{outline:2px solid var(--atelier-blue);outline-offset:6px}
body[data-home-layout="atelier-editorial"] .imt-beyond{display:grid!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;gap:8%!important;padding:65px var(--home-edge) 75px!important;border-top:1px solid var(--atelier-line)!important;background:var(--atelier-paper)!important}
body[data-home-layout="atelier-editorial"] .imt-beyond .k-display{font-size:clamp(42px,5vw,72px)!important;line-height:1.08!important;max-width:16ch!important;text-transform:none!important;margin:0!important}
body[data-home-layout="atelier-editorial"] .imt-beyond .k-display a{color:var(--atelier-ink)!important;text-decoration:none}
body[data-home-layout="atelier-editorial"] .imt-beyond .k-display a:hover{color:var(--atelier-blue)!important}
body[data-home-layout="atelier-editorial"] .imt-beyond .k-module__right{display:block!important;margin:0!important;padding:0!important;width:auto!important}
body[data-home-layout="atelier-editorial"] .home-discover{display:inline-flex!important;width:auto!important;min-height:52px!important;align-items:center;gap:26px!important;transform:none!important;text-align:left!important;margin-top:8px;font-size:15px!important}
body[data-home-layout="atelier-editorial"] .home-discover>span:last-child{font-size:24px!important}
body[data-home-layout="atelier-editorial"] .home-manifesto{padding:70px var(--home-edge) 80px!important;background:var(--atelier-sage)!important}
body[data-home-layout="atelier-editorial"] .home-manifesto-inner{grid-template-columns:240px minmax(0,1fr);gap:30px 7%;max-width:none;border:0;padding:0}
body[data-home-layout="atelier-editorial"] .home-manifesto-label{color:var(--atelier-blue)!important;font-size:16px!important;margin:5px 0 0!important}
body[data-home-layout="atelier-editorial"] .home-manifesto h2{font-size:clamp(30px,3.1vw,46px)!important;line-height:1.3!important;font-weight:500!important;text-transform:none!important;max-width:36ch!important}
body[data-home-layout="atelier-editorial"] .home-manifesto-link{justify-self:start;width:auto!important;min-height:52px!important;font-size:15px!important;margin-top:5px!important}
body[data-home-layout="atelier-editorial"] .home-manifesto-link>span:last-child{font-size:24px!important}
@media(max-width:1100px){
body[data-home-layout="atelier-editorial"] .atelier-card>a{grid-template-columns:30px 160px minmax(0,1fr);gap:22px}
body[data-home-layout="atelier-editorial"] .atelier-card-copy{grid-template-columns:1fr;gap:18px;padding-left:0!important}
body[data-home-layout="atelier-editorial"] .home-course-cta{grid-column:1}
body[data-home-layout="atelier-editorial"] :is(#section-1 .home-about-row,#programs-intro,.home-manifesto-inner){grid-template-columns:190px minmax(0,1fr)!important;gap:6%!important}
}
@media(max-width:700px){
body[data-home-layout="atelier-editorial"] :is(#section-1,#programs-intro,.imt-beyond,.home-manifesto){padding:42px var(--home-edge)!important}
body[data-home-layout="atelier-editorial"] :is(#section-1 .home-about-row,#programs-intro,.imt-beyond,.home-manifesto-inner){display:flex!important;flex-direction:column!important;gap:28px!important}
body[data-home-layout="atelier-editorial"] #section-1 .home-about-row .k-display{order:-1;font-size:30px!important;line-height:1.25!important}
body[data-home-layout="atelier-editorial"] .home-about-link{width:auto!important;min-width:180px}
body[data-home-layout="atelier-editorial"] #programs-intro .k-display{font-size:46px!important;max-width:none!important}
body[data-home-layout="atelier-editorial"] :is(#programs-intro,.imt-beyond) .k-serif-text{font-size:17px!important}
body[data-home-layout="atelier-editorial"] #section-9{padding-bottom:42px!important}
body[data-home-layout="atelier-editorial"] .atelier-card>a{grid-template-columns:24px minmax(0,1fr) 90px;gap:16px;padding:28px 0}
body[data-home-layout="atelier-editorial"] .atelier-card-image{grid-column:3;grid-row:1;width:90px;align-self:start}
body[data-home-layout="atelier-editorial"] .atelier-card-copy{display:contents}
body[data-home-layout="atelier-editorial"] .atelier-card-copy h3{grid-row:1;grid-column:2;font-size:38px!important;padding-top:0!important}
body[data-home-layout="atelier-editorial"] .atelier-card-copy p{grid-column:2/4;max-width:none}
body[data-home-layout="atelier-editorial"] .home-course-cta{grid-column:2/4;font-size:14px}
body[data-home-layout="atelier-editorial"] .imt-beyond .k-display{font-size:42px!important}
body[data-home-layout="atelier-editorial"] .home-manifesto h2{font-size:30px!important}
body[data-home-layout="atelier-editorial"] .home-manifesto-link{align-self:start}
}
body[data-home-layout="atelier-editorial"] #programs-intro{grid-template-columns:minmax(0,1fr) minmax(0,1.25fr)!important}
body[data-home-layout="atelier-editorial"][data-atelier-page="index-el"] #programs-intro .k-display{font-size:clamp(38px,4vw,58px)!important;max-width:none!important}
body[data-home-layout="atelier-editorial"] :is(#programs-intro,.imt-beyond):before{display:none!important}
body[data-home-layout="atelier-editorial"] .home-about-link>span:last-child{color:inherit!important}
body[data-home-layout="atelier-editorial"] .home-discover{flex-direction:row!important;aspect-ratio:auto!important}
@media(max-width:700px){body[data-home-layout="atelier-editorial"][data-atelier-page="index-el"] #programs-intro .k-display{font-size:38px!important;overflow-wrap:anywhere}}
body[data-home-layout="atelier-editorial"] #programs-intro.k-module{grid-template-columns:minmax(0,1fr) minmax(0,1.25fr)!important}
/* About is a quiet editorial link, separate from the primary application action. */
body[data-home-layout="atelier-editorial"] #section-1 .home-about-row{display:flex!important;flex-direction:column!important;align-items:stretch!important;gap:28px!important}
body[data-home-layout="atelier-editorial"] #section-1 .home-about-row .k-display{order:0!important;max-width:35ch!important;margin:0!important}
body[data-home-layout="atelier-editorial"] #section-1 .home-about-link{order:1;align-self:flex-end!important;display:inline-flex!important;width:auto!important;min-width:0!important;max-width:none!important;background:transparent!important;color:var(--atelier-ink)!important;border:0!important;border-bottom:1px solid var(--atelier-ink)!important;border-radius:0!important;padding:10px 0!important;gap:40px!important;box-shadow:none!important;font-size:16px!important;min-height:48px!important}
body[data-home-layout="atelier-editorial"] #section-1 .home-about-link:hover{color:var(--atelier-blue)!important;border-color:var(--atelier-blue)!important;transform:none!important}
body[data-home-layout="atelier-editorial"] #section-1 .home-about-link:focus-visible{outline:2px solid var(--atelier-blue);outline-offset:6px}
/* Interactive study explorer: one media surface, three programme states. */
body[data-home-layout="atelier-editorial"] #programs-intro.k-module{display:grid!important;grid-template-columns:1fr 1.2fr!important;align-items:start;gap:8%!important;padding:50px var(--home-edge) 32px!important}
body[data-home-layout="atelier-editorial"] #programs-intro .k-display{font-size:clamp(46px,5vw,72px)!important;max-width:none!important}
body[data-home-layout="atelier-editorial"][data-atelier-page="index-el"] #programs-intro .k-display{font-size:clamp(36px,4vw,58px)!important}
body[data-home-layout="atelier-editorial"] #programs-intro .k-module__right{margin:0!important;padding:0!important;display:block!important}
body[data-home-layout="atelier-editorial"] #programs-intro .k-serif-text{font-size:16px!important;line-height:1.65!important;margin:0 0 16px!important}
body[data-home-layout="atelier-editorial"] #section-9.hx-explorer{padding:0 var(--home-edge) 60px!important}
.hx-tabs{display:none}
.hx-enhanced .hx-tabs{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));border-bottom:1px solid var(--atelier-line)}
.hx-tab{display:flex;align-items:center;gap:18px;padding:18px 20px;border:0;border-bottom:3px solid transparent;background:none;color:var(--atelier-ink);cursor:pointer;text-align:left;min-height:70px;font-size:24px;transition:color .2s,border-color .2s,background .2s}
.hx-tab[aria-selected="true"]{border-bottom-color:var(--atelier-blue);color:var(--atelier-blue);background:var(--atelier-sage)}
.hx-index{font-size:13px;line-height:1.5;font-variant-numeric:tabular-nums;letter-spacing:.04em;color:var(--atelier-blue)}
.hx-tab-arrow{margin-left:auto;font-size:22px;opacity:0;transform:translate(-5px,5px);transition:opacity .2s,transform .2s}
.hx-tab[aria-selected="true"] .hx-tab-arrow,.hx-tab:hover .hx-tab-arrow{opacity:1;transform:none}
.hx-stage{display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);border-bottom:1px solid var(--atelier-line)}
.hx-visual{position:relative;min-height:360px;overflow:hidden;background:var(--atelier-ink)}
.hx-visual img{position:absolute!important;inset:0!important;width:100%!important;height:100%!important;object-fit:cover!important;object-position:50% 45%;filter:saturate(.65);transition:object-position .7s}
.hx-explorer[data-active="1"] .hx-visual img{object-position:50% 38%}
.hx-explorer[data-active="2"] .hx-visual img{object-position:50% 52%}
.hx-visual>span{position:absolute;left:22px;bottom:20px;color:white;font-size:14px;padding:7px 10px;background:#292522aa}
.hx-content{min-width:0;display:flex;flex-direction:column}
.hx-track{min-width:0}
.hx-enhanced .hx-track{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;overscroll-behavior-x:contain;flex:1;align-items:stretch}
.hx-track::-webkit-scrollbar{display:none}
body[data-home-layout="atelier-editorial"] #section-9.hx-explorer .atelier-card:nth-child(n){box-sizing:border-box;flex:0 0 100%;min-width:0;display:flex;flex-direction:column;gap:22px;padding:32px 36px 20px!important;margin:0!important;border:0;border-radius:0;background:transparent;scroll-snap-align:start;scroll-snap-stop:always;opacity:1!important;transform:none!important}
.hx-panel-heading{display:flex;align-items:baseline;justify-content:space-between;gap:20px}
body[data-home-layout="atelier-editorial"] #section-9 .hx-panel-heading h3{font-size:48px!important;line-height:1.05!important;font-weight:400!important;margin:0!important;text-transform:none!important;letter-spacing:-.02em!important}
body[data-home-layout="atelier-editorial"] #section-9 .atelier-card>p{font-size:17px;line-height:1.7;margin:0!important}
body[data-home-layout="atelier-editorial"] #section-9 .atelier-card>.hx-link{display:flex!important;align-items:center;justify-content:space-between;gap:25px;padding:14px 0!important;margin-top:auto;border-top:1px solid var(--atelier-line);color:var(--atelier-blue);font-size:16px;text-decoration:none;min-height:48px;box-sizing:border-box}
.hx-link>span:last-child{font-size:28px;transition:transform .2s}
.hx-link:hover>span:last-child{transform:translate(3px,-3px)}
.hx-controls{display:none}
.hx-enhanced .hx-controls{display:flex;align-items:center;justify-content:space-between;margin:0 36px 22px;border-top:1px solid var(--atelier-line);padding-top:10px}
.hx-controls button{width:44px;height:44px;border:0;background:transparent;color:var(--atelier-blue);font-size:26px;cursor:pointer}
.hx-controls button:disabled{opacity:.25;cursor:default}
.hx-position{font-size:13px;font-variant-numeric:tabular-nums;color:var(--atelier-blue)}
.hx-explorer :is(button,a):focus-visible{outline:2px solid var(--atelier-blue);outline-offset:-3px}
body[data-home-layout="atelier-editorial"] .imt-beyond .home-discover{background:transparent!important;color:var(--atelier-blue)!important;border:0!important;border-bottom:1px solid currentColor!important;border-radius:0!important;padding:12px 0!important;justify-content:space-between;min-width:200px;transform:none!important}
body[data-home-layout="atelier-editorial"] .home-manifesto{background:var(--atelier-ink)!important;color:var(--atelier-paper)!important}
body[data-home-layout="atelier-editorial"] .home-manifesto :is(.home-manifesto-label,h2){color:var(--atelier-paper)!important}
body[data-home-layout="atelier-editorial"] .home-manifesto-link{background:transparent!important;color:var(--atelier-paper)!important;border:0!important;border-bottom:1px solid currentColor!important;border-radius:0!important;padding:12px 0!important}
@media(max-width:760px){
body[data-home-layout="atelier-editorial"] #programs-intro.k-module{display:block!important;padding:36px var(--home-edge) 20px!important}
body[data-home-layout="atelier-editorial"] #programs-intro .k-module__right{margin-top:22px!important}
body[data-home-layout="atelier-editorial"] #programs-intro .k-display{font-size:44px!important}
body[data-home-layout="atelier-editorial"] #section-9.hx-explorer{padding-bottom:40px!important}
.hx-tab{padding:14px 8px;gap:8px;font-size:18px;min-height:60px;justify-content:center}
.hx-tab .hx-index{font-size:11px}.hx-tab-arrow{display:none}
.hx-stage{grid-template-columns:1fr}
.hx-visual{min-height:0;height:180px}
.hx-visual>span{left:16px;bottom:12px;font-size:12px}
body[data-home-layout="atelier-editorial"] #section-9.hx-explorer .atelier-card:nth-child(n){padding:24px 0 12px!important;gap:20px}
body[data-home-layout="atelier-editorial"] #section-9 .hx-panel-heading h3{font-size:40px!important}
body[data-home-layout="atelier-editorial"] #section-9 .atelier-card>p{font-size:16px;line-height:1.65}
.hx-enhanced .hx-controls{margin:0 0 8px}
}
@media(prefers-reduced-motion:reduce){.hx-explorer *{transition:none!important}}
/* Separate each editorial beat, and keep related copy in one reading column. */
body[data-home-layout="atelier-editorial"] #section-1{padding-top:80px!important;padding-bottom:80px!important}
body[data-home-layout="atelier-editorial"] #section-1 .home-about-row{gap:38px!important}
body[data-home-layout="atelier-editorial"] #programs-intro.k-module{padding-top:76px!important;padding-bottom:40px!important;gap:10%!important;align-items:start!important}
body[data-home-layout="atelier-editorial"] #programs-intro .k-module__right{max-width:60ch!important}
body[data-home-layout="atelier-editorial"] #programs-intro .k-serif-text{margin:0 0 26px!important;line-height:1.8!important}
body[data-home-layout="atelier-editorial"] #programs-intro .k-serif-text:last-child{margin-bottom:0!important}
body[data-home-layout="atelier-editorial"] #section-9.hx-explorer{padding-bottom:80px!important}
body[data-home-layout="atelier-editorial"] .imt-beyond{padding-top:72px!important;padding-bottom:76px!important;gap:34px 10%!important;border-top:1px solid var(--atelier-line)!important}
body[data-home-layout="atelier-editorial"] .imt-beyond .k-module__right{max-width:56ch!important}
body[data-home-layout="atelier-editorial"] .imt-beyond .k-serif-text{margin-bottom:24px!important;line-height:1.8!important}
.home-additional-directory{grid-column:1/-1;display:grid;grid-template-columns:1fr 1fr;gap:0 6%;margin-top:16px;scroll-margin-top:30px}
.home-additional-directory a{display:flex;justify-content:space-between;align-items:center;gap:24px;min-height:64px;padding:18px 0;border-top:1px solid var(--atelier-line);color:var(--atelier-ink);font-size:17px;text-decoration:none;line-height:1.5}
.home-additional-directory a>span:last-child{color:var(--atelier-blue);font-size:24px}
.home-additional-directory a:hover{color:var(--atelier-blue)}
.home-additional-directory a:focus-visible{outline:2px solid var(--atelier-blue);outline-offset:4px}
body[data-home-layout="atelier-editorial"] .home-manifesto{padding-top:76px!important;padding-bottom:82px!important}
@media(max-width:760px){
body[data-home-layout="atelier-editorial"] #section-1{padding-top:48px!important;padding-bottom:50px!important}
body[data-home-layout="atelier-editorial"] #programs-intro.k-module{display:block!important;padding-top:48px!important;padding-bottom:30px!important}
body[data-home-layout="atelier-editorial"] #programs-intro .k-module__right{margin-top:28px!important}
body[data-home-layout="atelier-editorial"] #programs-intro .k-serif-text{margin-bottom:22px!important}
body[data-home-layout="atelier-editorial"] #section-9.hx-explorer{padding-bottom:50px!important}
body[data-home-layout="atelier-editorial"] .imt-beyond{display:block!important;padding-top:46px!important;padding-bottom:48px!important}
body[data-home-layout="atelier-editorial"] .imt-beyond .k-module__right{margin-top:28px!important}
.home-additional-directory{grid-template-columns:1fr;margin-top:32px}
body[data-home-layout="atelier-editorial"] .home-manifesto{padding-top:48px!important;padding-bottom:54px!important}
}
/* Cleaner homepage: whitespace defines sections; actions share a restrained hierarchy. */
body[data-home-layout="atelier-editorial"] :is(#programs-intro.k-module,.imt-beyond,.home-manifesto-inner,.hx-stage,.hx-tabs,.hx-controls){border:0!important}
body[data-home-layout="atelier-editorial"] :is(#programs-intro,.imt-beyond):before{display:none!important}
body[data-home-layout="atelier-editorial"] .hx-tabs{gap:8px;padding:0 0 16px}
body[data-home-layout="atelier-editorial"] .hx-tab{border:0!important;border-radius:8px;background:transparent;padding:16px 20px;min-height:64px;color:var(--atelier-ink)}
body[data-home-layout="atelier-editorial"] .hx-tab[aria-selected="true"]{background:var(--atelier-ink);color:var(--atelier-paper)}
body[data-home-layout="atelier-editorial"] .hx-tab[aria-selected="true"] .hx-index{color:var(--atelier-paper)}
body[data-home-layout="atelier-editorial"] .hx-tab:not([aria-selected="true"]):hover{background:var(--atelier-sage)}
body[data-home-layout="atelier-editorial"] #section-9 .atelier-card>.hx-link{align-self:flex-start;width:auto!important;justify-content:center;gap:24px;background:var(--atelier-blue);color:var(--atelier-paper);border:0!important;border-radius:999px;padding:13px 24px!important;min-height:50px;margin-top:auto;transition:background .2s}
body[data-home-layout="atelier-editorial"] #section-9 .atelier-card>.hx-link:hover{background:var(--atelier-ink)}
body[data-home-layout="atelier-editorial"] .hx-link>span:last-child{font-size:22px}
body[data-home-layout="atelier-editorial"] .hx-controls{padding-top:2px;margin-top:0}
body[data-home-layout="atelier-editorial"] .hx-controls button{border:0;border-radius:50%;background:var(--atelier-sage);width:42px;height:42px;font-size:23px}
body[data-home-layout="atelier-editorial"] .hx-controls button:disabled{background:transparent;opacity:.25}
body[data-home-layout="atelier-editorial"] #section-1 .home-about-link,
body[data-home-layout="atelier-editorial"] .imt-beyond .home-discover,
body[data-home-layout="atelier-editorial"] .home-manifesto .home-manifesto-link{display:inline-flex!important;align-items:center;justify-content:space-between;background:transparent!important;border:0!important;border-radius:0!important;padding:8px 0!important;min-height:48px!important;min-width:0!important;gap:24px!important;box-shadow:none!important;font-size:16px!important;text-decoration:none!important}
body[data-home-layout="atelier-editorial"] #section-1 .home-about-link>span:last-child,
body[data-home-layout="atelier-editorial"] .imt-beyond .home-discover>span:last-child,
body[data-home-layout="atelier-editorial"] .home-manifesto-link>span:last-child{display:grid;place-items:center;width:40px;height:40px;border-radius:50%;background:var(--atelier-sage);color:var(--atelier-blue)!important;font-size:22px!important;transition:transform .2s}
body[data-home-layout="atelier-editorial"] .home-manifesto-link>span:last-child{background:var(--atelier-paper);color:var(--atelier-ink)!important}
body[data-home-layout="atelier-editorial"] :is(.home-about-link,.home-discover,.home-manifesto-link):hover>span:last-child{transform:translateX(3px)}
body[data-home-layout="atelier-editorial"] .home-additional-directory{gap:12px 6%;margin-top:26px}
body[data-home-layout="atelier-editorial"] .home-additional-directory a{border:0!important;min-height:54px;padding:12px 0}
body[data-home-layout="atelier-editorial"] .home-additional-directory a>span:first-child{max-width:34ch}
body[data-home-layout="atelier-editorial"] .home-additional-directory a:hover>span:first-child{text-decoration:underline;text-underline-offset:5px}
body[data-home-layout="atelier-editorial"] .imt-beyond{background:var(--atelier-paper)!important}
@media(max-width:760px){body[data-home-layout="atelier-editorial"] .hx-tab{padding:13px 8px;font-size:18px;gap:7px;min-height:56px}body[data-home-layout="atelier-editorial"] .hx-tabs{gap:6px}body[data-home-layout="atelier-editorial"] .home-additional-directory{gap:8px}body[data-home-layout="atelier-editorial"] #section-9 .atelier-card>.hx-link{width:auto!important}}
@media(prefers-reduced-motion:reduce){body[data-home-layout="atelier-editorial"] :is(.home-about-link,.home-discover,.home-manifesto-link)>span:last-child{transition:none!important;transform:none!important}}
/* Native scroll stays in control; motion is an enhancement, never a visibility gate. */
body[data-home-layout="atelier-editorial"] .home-hero-controls{position:absolute;z-index:3;bottom:28px;left:var(--home-edge);right:var(--home-edge);display:flex;justify-content:space-between;align-items:center;color:white}
.home-scroll-cue{display:inline-flex;align-items:center;gap:22px;padding:12px 0;min-height:44px;color:white;text-decoration:none;font-size:14px}
.home-scroll-cue>span:last-child{display:inline-block;font-size:24px;transition:transform .25s}
.home-scroll-cue:hover>span:last-child{transform:translateY(4px)}
.home-video-control{width:44px;height:44px;display:grid;place-items:center;background:#29252265;border:1px solid #ffffff60;border-radius:50%;color:white;font-size:20px;cursor:pointer;backdrop-filter:blur(8px)}
.home-video-control[hidden]{display:none}
.home-hero-controls :is(a,button):focus-visible{outline:2px solid white;outline-offset:5px}
body[data-home-layout="atelier-editorial"] .home-phrase{translate:0 var(--home-hero-drift,0px);opacity:var(--home-hero-copy-opacity,1);will-change:translate}
body[data-home-layout="atelier-editorial"] .hx-stage{overflow:hidden;border-radius:10px}
body[data-home-layout="atelier-editorial"] .hx-content{background:color-mix(in srgb,var(--atelier-sage) 25%,var(--atelier-paper))}
body[data-home-layout="atelier-editorial"] .hx-tab{transition:background .25s,color .25s}
body[data-home-layout="atelier-editorial"] .home-additional-directory a{transition:color .2s,translate .2s}
body[data-home-layout="atelier-editorial"] .home-additional-directory a:hover{translate:4px 0}
body[data-home-layout="atelier-editorial"] :is(#section-1,#programs-intro,#home-additional-programmes){scroll-margin-top:30px}
@media(max-width:760px){body[data-home-layout="atelier-editorial"] .hx-content{padding-inline:18px}body[data-home-layout="atelier-editorial"] .home-hero-controls{bottom:20px}}
@media(prefers-reduced-motion:reduce){body[data-home-layout="atelier-editorial"] .home-phrase{translate:none!important;opacity:1!important;will-change:auto}body[data-home-layout="atelier-editorial"] :is(.home-scroll-cue>span:last-child,.home-additional-directory a){transition:none!important;transform:none!important;translate:none!important}}
/* Content-led sections use their own layout, independent of the old module grid. */
body[data-home-layout="atelier-editorial"] #section-1.hp-intro{padding:64px var(--home-edge)!important;background:var(--atelier-paper)!important;border:0!important}
.hp-intro-inner{max-width:1150px;margin:auto}
body[data-home-layout="atelier-editorial"] .hp-intro-statement{font-size:clamp(28px,3vw,42px)!important;line-height:1.3!important;font-weight:400!important;letter-spacing:-.015em!important;text-transform:none!important;max-width:39ch!important;margin:0!important;color:var(--atelier-ink)!important}
.hp-intro-support{display:flex;flex-direction:column;gap:18px;max-width:65ch;margin:28px 0 0 auto}
.hp-intro-support>p{font-size:17px;line-height:1.75;margin:0;color:var(--atelier-ink)}
body[data-home-layout="atelier-editorial"] #section-1 .hp-intro-support .home-about-link{align-self:flex-end;order:0!important;width:auto!important;margin:0!important}
body[data-home-layout="atelier-editorial"] #programs-intro.hp-programme-intro{display:block!important;padding:48px var(--home-edge) 30px!important;background:var(--atelier-paper)!important;border:0!important}
.hp-programme-heading{max-width:1150px;margin:auto}
body[data-home-layout="atelier-editorial"] #programs-intro .hp-programme-heading h2{font-size:clamp(38px,4vw,58px)!important;line-height:1.12!important;letter-spacing:-.02em!important;text-transform:none!important;max-width:none!important;margin:0 0 22px!important;font-weight:400!important}
body[data-home-layout="atelier-editorial"] #programs-intro .hp-programme-heading>p{font-size:18px!important;line-height:1.75!important;max-width:68ch!important;margin:0!important}
body[data-home-layout="atelier-editorial"] #section-9.hx-explorer{max-width:calc(1150px + 2 * var(--home-edge));margin-inline:auto;padding-bottom:64px!important}
body[data-home-layout="atelier-editorial"] .hp-additional{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:8%;padding:60px var(--home-edge);background:var(--atelier-sage);align-items:start}
.hp-additional-copy{max-width:54ch;min-width:0}
body[data-home-layout="atelier-editorial"] .hp-additional-copy h2{font-size:clamp(34px,3.4vw,48px)!important;line-height:1.15!important;letter-spacing:-.02em!important;font-weight:400!important;text-transform:none!important;margin:0 0 24px!important;max-width:19ch}
.hp-additional-copy>p{font-size:17px;line-height:1.75;margin:0 0 22px}
body[data-home-layout="atelier-editorial"] .hp-additional .home-additional-directory{grid-column:auto!important;display:flex;flex-direction:column;gap:10px;margin:0!important;padding:0;min-width:0}
body[data-home-layout="atelier-editorial"] .hp-additional .home-additional-directory a{padding:14px 18px;min-height:58px;background:var(--atelier-paper);border-radius:6px;font-size:16px;gap:20px}
body[data-home-layout="atelier-editorial"] .hp-additional .home-discover{display:inline-flex!important;flex-direction:row;align-items:center;gap:24px!important;padding:8px 0!important;border:0!important;border-radius:0!important;background:none!important;color:var(--atelier-ink)!important;min-height:44px!important;width:auto!important;aspect-ratio:auto!important;transform:none!important;font-size:16px!important}
.hp-additional .home-discover>span:last-child{font-size:24px!important}
body[data-home-layout="atelier-editorial"] .hp-ambition{padding:64px var(--home-edge);background:var(--atelier-ink);color:var(--atelier-paper)}
.hp-ambition-inner{max-width:1000px;margin:auto;display:flex;flex-direction:column;align-items:start;gap:24px}
body[data-home-layout="atelier-editorial"] .hp-section-label{font-size:16px!important;line-height:1.5!important;font-weight:400!important;text-transform:none!important;letter-spacing:0!important;margin:0!important;color:var(--atelier-paper)!important}
body[data-home-layout="atelier-editorial"] .hp-ambition-statement{font-size:clamp(26px,2.6vw,36px)!important;line-height:1.4!important;font-weight:500!important;text-transform:none!important;letter-spacing:-.01em!important;margin:0!important;max-width:45ch;color:var(--atelier-paper)!important}
body[data-home-layout="atelier-editorial"] .hp-ambition .home-manifesto-link{display:inline-flex!important;align-self:flex-end;align-items:center;gap:24px!important;width:auto!important;padding:8px 0!important;min-height:48px!important;border:0!important;border-radius:0!important;background:transparent!important;color:var(--atelier-paper)!important;margin:0!important;font-size:16px!important}
.hp-ambition .home-manifesto-link>span:last-child{font-size:24px!important}
@media(max-width:760px){
body[data-home-layout="atelier-editorial"] #section-1.hp-intro{padding-block:42px!important}
body[data-home-layout="atelier-editorial"] .hp-intro-statement{font-size:28px!important;line-height:1.3!important}
.hp-intro-support{margin-top:24px;max-width:none}
body[data-home-layout="atelier-editorial"] #programs-intro.hp-programme-intro{padding-top:34px!important;padding-bottom:26px!important}
body[data-home-layout="atelier-editorial"] #programs-intro .hp-programme-heading h2{font-size:38px!important}
body[data-home-layout="atelier-editorial"] #programs-intro .hp-programme-heading>p{font-size:17px!important}
body[data-home-layout="atelier-editorial"] .hp-additional{display:block;padding-block:42px}
body[data-home-layout="atelier-editorial"] .hp-additional .home-additional-directory{margin-top:28px!important}
body[data-home-layout="atelier-editorial"] .hp-ambition{padding-block:44px}
body[data-home-layout="atelier-editorial"] .hp-ambition-statement{font-size:27px!important}
}

/* Continuous paper surface: no white gutters outside the programme container. */
body[data-home-layout="atelier-editorial"],body[data-home-layout="atelier-editorial"] .page-wrap{background:var(--atelier-paper)!important}
body[data-home-layout="atelier-editorial"] #section-9.hx-explorer{box-shadow:0 0 0 100vmax var(--atelier-paper);clip-path:inset(0 -100vmax)}
body[data-home-layout="atelier-editorial"] .hx-visual img{filter:none;object-position:center!important}
@media(max-width:760px){body[data-home-layout="atelier-editorial"] .hx-visual{height:220px!important}}
/* Strong CTA contrast while keeping About distinct from Apply Now. */
body[data-home-layout="atelier-editorial"] #section-1 .hp-intro-support .home-about-link{color:var(--atelier-ink)!important;font-weight:650!important;gap:18px!important}
body[data-home-layout="atelier-editorial"] #section-1 .hp-intro-support .home-about-link>span:last-child{background:var(--atelier-ink)!important;color:var(--atelier-paper)!important;width:48px!important;height:48px!important;display:grid!important;place-items:center!important;border-radius:50%!important}
body[data-home-layout="atelier-editorial"] .hp-additional .home-discover{background:var(--atelier-blue)!important;color:#fff!important;border-radius:999px!important;padding:14px 24px!important;min-height:52px!important;box-sizing:border-box;font-weight:650!important}
body[data-home-layout="atelier-editorial"] .hp-ambition .home-manifesto-link{background:var(--atelier-paper)!important;color:var(--atelier-ink)!important;border-radius:999px!important;padding:14px 24px!important;min-height:52px!important;box-sizing:border-box;font-weight:650!important}
body[data-home-layout="atelier-editorial"] :is(.hp-additional .home-discover,.hp-ambition .home-manifesto-link)>span:last-child{background:transparent!important;color:inherit!important}
body[data-home-layout="atelier-editorial"] :is(.home-about-link,.home-discover,.home-manifesto-link):focus-visible{outline:3px solid currentColor;outline-offset:5px}
body[data-home-layout="atelier-editorial"] #section-1 .hp-intro-support .home-about-link{background:var(--atelier-blue)!important;color:#fff!important;border:0!important;border-radius:999px!important;padding:14px 24px!important;min-height:52px!important;box-sizing:border-box;gap:24px!important}
body[data-home-layout="atelier-editorial"] #section-1 .hp-intro-support .home-about-link>span:last-child{background:transparent!important;color:inherit!important;width:auto!important;height:auto!important;border-radius:0!important;font-size:24px!important}

body[data-contact-atelier] .header{width:100%!important;left:0;right:0}
body[data-contact-atelier] #ct-form .ct-no-portfolio{display:flex!important;align-items:center;gap:10px;margin-top:12px!important;cursor:pointer}
body[data-contact-atelier] #ct-form .ct-no-portfolio input{width:20px!important;height:20px!important;min-height:20px!important;padding:0!important;accent-color:var(--atelier-blue)}
.ct-input-hint,.ct-input-error{font-size:14px!important;line-height:1.5;margin:8px 0 0!important}
.ct-input-error{color:#87343f}
.ct-input-error[hidden]{display:none!important}
body[data-contact-atelier] #ct-form input[aria-invalid=true]{outline:2px solid #87343f!important;outline-offset:2px}
body[data-contact-atelier] #ct-form input[readonly]{opacity:.7}
body[data-contact-atelier] .ct-page{padding:140px 6.5% 0;color:var(--atelier-ink)}
.ct-page *{box-sizing:border-box}
.ct-page .eyebrow{font-size:13px!important;color:var(--atelier-blue)!important;text-transform:none!important;letter-spacing:.03em!important;margin:0 0 20px!important}
.ct-opening{display:grid;grid-template-columns:1.2fr 1fr;gap:20px 8%;padding-bottom:48px;border-bottom:1px solid var(--atelier-line)}
.ct-opening .eyebrow{grid-column:1/-1}
body[data-contact-atelier] .ct-opening h1{grid-row:2/4;font-size:clamp(44px,5.4vw,78px)!important;line-height:1.06!important;letter-spacing:-.025em!important;text-transform:none!important;font-weight:400!important;margin:0!important}
.ct-opening .lede{font-size:19px;line-height:1.7;margin:0}
.ct-opening>p:last-child{grid-column:2;margin:0}
.ct-workspace{display:grid;grid-template-columns:minmax(0,1.6fr) minmax(240px,1fr);gap:9%;padding:48px 0}
.ct-application{scroll-margin-top:30px;min-width:0}
body[data-contact-atelier] .ct-page .h3{font-size:34px!important;line-height:1.15!important;text-transform:none!important;font-weight:400!important;letter-spacing:-.01em!important}
.ct-application>p,.ct-details>p{margin:0 0 24px}
body[data-contact-atelier] .ct-page .imt-form{display:grid!important;grid-template-columns:1fr 1fr;gap:22px!important;max-width:none!important;width:100%!important;padding:0!important;background:transparent!important;border:0!important}
.ct-page .imt-field{min-width:0;margin:0!important}
.ct-page .imt-field:has(textarea),.ct-page .imt-form>button,.ct-page .imt-form>p{grid-column:1/-1}
body[data-contact-atelier] .ct-page label{display:block;font-size:14px!important;margin-bottom:10px!important;color:var(--atelier-ink)!important}
body[data-contact-atelier] .ct-page :is(input,select,textarea){width:100%!important;max-width:100%!important;border:1px solid var(--atelier-line)!important;border-radius:0!important;background:transparent!important;color:var(--atelier-ink)!important;padding:13px 12px!important;font-size:16px!important;min-height:50px;box-shadow:none!important}
body[data-contact-atelier] .ct-page :is(input,select,textarea):focus{outline:2px solid var(--atelier-blue)!important;outline-offset:2px!important}
.ct-page textarea{resize:vertical;min-height:135px}
.ct-page .ct-email-note,.ct-page .imt-form-note{font-size:14px!important;line-height:1.6!important;margin:0!important}
body[data-contact-atelier] .ct-page .btn{border-radius:0!important;background:var(--atelier-blue)!important;color:var(--atelier-paper)!important;padding:16px 24px!important;min-height:50px!important;display:inline-flex!important;justify-content:center!important;border:0!important;clip-path:none!important;font-size:15px!important}
body[data-contact-atelier] .ct-opening .btn{padding:10px 0!important;min-height:44px!important;background:transparent!important;color:var(--atelier-blue)!important;border-bottom:1px solid currentColor!important}
.ct-details{border-left:1px solid var(--atelier-line);padding-left:32px;align-self:start;position:sticky;top:30px}
.ct-details p{font-size:16px;line-height:1.8}
.ct-details small{display:block;color:var(--atelier-blue);font-size:13px}
.ct-process{padding:40px 0 48px;border-top:1px solid var(--atelier-line)}
.ct-process .imt-list{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr));gap:26px;margin:32px 0 0!important;padding:0!important;list-style:none!important;counter-reset:admission}
.ct-process .imt-list li{list-style:none!important;padding:20px 0 0!important;border-top:2px solid var(--atelier-blue);font-size:16px;line-height:1.7;margin:0!important}
.ct-process .imt-list li:before{counter-increment:admission;content:'0' counter(admission);display:block;position:static!important;width:auto!important;height:auto!important;background:none!important;color:var(--atelier-blue);font-size:13px;margin-bottom:16px}
.ct-closing{padding:38px 0 48px;border-top:1px solid var(--atelier-line)}
body[data-contact-atelier] .ct-closing .h2{font-size:42px!important;text-transform:none!important;line-height:1.15!important}
.ct-closing .lede{font-size:17px;line-height:1.7}
.ct-closing>p:last-child{display:flex;flex-wrap:wrap;gap:16px}
.ct-review[hidden]{display:none!important}
.ct-review{padding:24px 0;margin-top:24px;border-top:2px solid var(--atelier-blue);scroll-margin-top:30px}
.ct-review>p{font-size:16px;line-height:1.7}
.ct-review-copy{white-space:pre-wrap;overflow-wrap:anywhere;font:inherit;font-size:16px;line-height:1.7;padding:20px;background:var(--atelier-sage)}
.ct-review-actions{display:flex;flex-wrap:wrap;gap:12px 24px;align-items:center}
.ct-review-actions :is(a,button){display:inline-flex;gap:30px;align-items:center;background:none;border:0;border-bottom:1px solid var(--atelier-blue);padding:12px 0;color:var(--atelier-blue);font-size:15px;min-height:44px;cursor:pointer;text-decoration:none}
.ct-page :is(a,button):focus-visible{outline:2px solid var(--atelier-blue);outline-offset:4px}
@media(max-width:760px){body[data-contact-atelier] .ct-page{padding-top:110px}.ct-opening{display:block;padding-bottom:30px}.ct-opening .lede{margin-top:24px;font-size:17px}.ct-opening>p:last-child{margin-top:20px}.ct-workspace{grid-template-columns:1fr;gap:34px;padding:32px 0}.ct-details{position:static;padding:24px 0 0;border-left:0;border-top:1px solid var(--atelier-line)}.ct-process .imt-list{grid-template-columns:1fr 1fr;gap:24px}.ct-closing>p:last-child{display:block}body[data-contact-atelier] .ct-page .imt-form{grid-template-columns:1fr}.ct-closing .btn{margin-bottom:12px}}
@media(max-width:420px){.ct-process .imt-list{grid-template-columns:1fr}}
.ct-review-actions button:disabled{opacity:.45;cursor:default;border:0}
.ct-pending{color:var(--atelier-blue);font-size:14px!important}
/* Application rhythm follows the updated eight-field structure. */
body[data-contact-atelier] .ct-page #ct-form{display:flex!important;flex-direction:column!important;gap:0!important;max-width:920px;margin-inline:auto}
body[data-contact-atelier] #ct-form .ct-field-group{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;min-width:0;margin:0 0 40px;padding:0;border:0}
body[data-contact-atelier] #ct-form .ct-field-group legend{float:left;width:100%;grid-column:1/-1;margin:0 0 4px;padding:0;font-family:var(--font-display);font-size:30px;line-height:1.3;color:var(--atelier-ink)}
body[data-contact-atelier] #ct-form .imt-field{grid-column:auto!important;width:100%;min-width:0;margin:0!important}
body[data-contact-atelier] #ct-form .imt-field label{text-transform:none!important;font-size:14px!important;letter-spacing:0!important;display:block;margin-bottom:10px;font-weight:500}
body[data-contact-atelier] #ct-form :is(input,select){width:100%!important;max-width:100%;min-height:54px;box-sizing:border-box;font-size:16px!important;border:1px solid var(--atelier-line)!important;border-radius:10px!important;padding:14px!important;background:var(--atelier-paper)!important;color:var(--atelier-ink)!important}
body[data-contact-atelier] #ct-form :is(input,select):focus{outline:2px solid var(--atelier-blue);outline-offset:2px}
body[data-contact-atelier] #ct-form .ct-email-note{max-width:65ch;margin:0 0 20px!important;font-size:14px;line-height:1.65}
body[data-contact-atelier] #ct-form>button{align-self:flex-start;width:auto!important;min-height:52px!important;padding:14px 24px!important;border-radius:999px!important;background:var(--atelier-blue)!important;color:var(--atelier-paper)!important}
body[data-contact-atelier] #ct-form .imt-form-note{margin-top:14px!important;font-size:13px!important}
@media(max-width:760px){body[data-contact-atelier] #ct-form .ct-field-group{grid-template-columns:1fr;gap:20px;margin-bottom:32px}body[data-contact-atelier] #ct-form .ct-field-group legend{font-size:27px}body[data-contact-atelier] #ct-form>button{width:100%!important}}
body[data-contact-atelier] .ct-form-only{max-width:1000px!important;margin:auto!important;padding-top:140px!important}
body[data-contact-atelier] .ct-form-only>h1{font-size:clamp(36px,5vw,60px)!important;margin:0 0 48px!important}
body[data-contact-atelier] .ct-form-only .ct-application{padding:0!important;border:0!important}
body[data-contact-atelier] .ct-form-only .ct-application>.imt-sechead{display:none}
body[data-contact-atelier] #ct-form .ct-choice-list{display:flex;flex-direction:column;gap:10px;border:0;margin:0;padding:0;min-width:0}
body[data-contact-atelier] #ct-form .ct-choice-list legend{float:none;width:auto;font:600 16px/1.5 var(--font-body, sans-serif);margin:0 0 8px}
body[data-contact-atelier] #ct-form .ct-choice-hint{font-size:13px;margin:0 0 6px;line-height:1.5}
body[data-contact-atelier] #ct-form label.ct-choice{display:flex!important;align-items:flex-start;gap:12px;padding:14px;margin:0!important;min-height:48px;box-sizing:border-box;border:1px solid var(--atelier-line);border-radius:10px;cursor:pointer;line-height:1.5}
body[data-contact-atelier] #ct-form label.ct-choice:has(:checked){background:var(--atelier-sage);border-color:var(--atelier-blue)}
body[data-contact-atelier] #ct-form .ct-choice :is(input[type=checkbox],input[type=radio]){appearance:auto!important;position:static!important;flex:0 0 18px;width:18px!important;height:18px!important;min-height:18px!important;padding:0!important;margin:2px 0 0!important;accent-color:var(--atelier-blue);opacity:1!important}
body[data-contact-atelier] #ct-form .ct-choice span{position:static;white-space:normal;overflow-wrap:anywhere;font-size:14px;line-height:1.5}
@media(max-width:760px){body[data-contact-atelier] .ct-form-only{padding-top:110px!important}body[data-contact-atelier] .ct-form-only>h1{margin-bottom:32px!important}}
/* Application uses the same paper, display type and open rhythm as the reading rooms. */
body[data-contact-atelier],body[data-contact-atelier] .page-wrap{background:var(--atelier-paper)!important}
body[data-contact-atelier] .ct-form-only{max-width:1120px!important;padding:140px 7% 80px!important;box-sizing:border-box}
body[data-contact-atelier] .ct-form-only>h1{font-family:var(--font-display)!important;font-weight:400!important;letter-spacing:-.025em!important;font-size:clamp(44px,6vw,76px)!important;margin-bottom:56px!important}
body[data-contact-atelier] #ct-form .ct-field-group{gap:24px 30px;margin-bottom:48px}
body[data-contact-atelier] #ct-form .ct-field-group>legend{font-size:26px!important;color:var(--atelier-blue);margin-bottom:14px}
body[data-contact-atelier] #ct-form input:not([type=checkbox]):not([type=radio]){background:var(--atelier-sage)!important;border-color:transparent!important;border-radius:8px!important}
body[data-contact-atelier] #ct-form .ct-choice-list>legend{font-family:inherit!important;font-size:14px!important;font-weight:500!important;margin-bottom:10px}
.ct-multiselect{position:relative;border:0!important;padding:0!important;background:none!important}
body[data-contact-atelier] #ct-form .ct-multiselect>summary{display:flex!important;align-items:center;justify-content:space-between;gap:16px;list-style:none;cursor:pointer;min-height:54px;padding:14px;box-sizing:border-box;background:var(--atelier-sage);border-radius:8px;font-size:16px;line-height:1.5}
.ct-multiselect>summary::-webkit-details-marker{display:none}
.ct-multiselect>summary:after{display:none!important}
.ct-multiselect>summary>span:last-child{flex:none;transition:transform .2s}
.ct-multiselect[open]>summary>span:last-child{transform:rotate(180deg)}
.ct-options{position:absolute;top:calc(100% + 8px);left:0;right:0;z-index:55;max-height:340px;overflow:auto;overscroll-behavior:contain;background:var(--atelier-paper);border:1px solid var(--atelier-line);border-radius:12px;padding:12px;box-shadow:0 12px 32px #29252220}
body[data-contact-atelier] #ct-form .ct-options .ct-choice{border:0;border-radius:6px;padding:12px 8px;gap:12px}
body[data-contact-atelier] #ct-form .ct-options .ct-choice-hint{padding:4px 8px 10px}
body[data-contact-atelier] #ct-form .ct-options-done{position:sticky;bottom:0;display:block;margin:10px 0 0 auto;background:var(--atelier-blue);color:var(--atelier-paper);padding:10px 22px;border:0;border-radius:999px;font:inherit;cursor:pointer;min-height:44px}
body[data-contact-atelier] #ct-form .ct-selected{font-size:13px;line-height:1.65;color:var(--atelier-blue);margin:8px 0 0;overflow-wrap:anywhere}
@media(max-width:760px){body[data-contact-atelier] .ct-form-only{padding:112px 8% 56px!important}.ct-options{max-height:300px}body[data-contact-atelier] #ct-form .ct-field-group{gap:22px;margin-bottom:38px}}
body[data-contact-atelier] .ct-admissions{max-width:1280px!important;padding:144px 7% 88px!important;margin:auto!important}
.ct-admissions-intro{display:grid;grid-template-columns:1.2fr 1fr;gap:20px 10%;margin-bottom:72px}
.ct-admissions-intro>.imt-sechead{grid-column:1/-1;color:var(--atelier-blue)}
body[data-contact-atelier] .ct-admissions-intro h1{font-size:clamp(44px,5.5vw,76px)!important;line-height:1.08!important;font-weight:400!important;margin:0!important;letter-spacing:-.025em}
.ct-admissions-intro>p:last-child{align-self:end;font-size:20px;line-height:1.6;max-width:30ch;margin:0}
.ct-admissions-layout{display:grid;grid-template-columns:minmax(240px,.7fr) minmax(0,1.3fr);gap:9%;align-items:start}
.ct-admissions-aside{position:sticky;top:110px}
body[data-contact-atelier] .ct-admissions-aside h2,body[data-contact-atelier] .ct-admissions-form>h2{font-size:30px!important;font-weight:400!important;margin:0 0 22px!important}
.ct-admissions-aside>p{font-size:16px;line-height:1.8}
.ct-contact-card{margin:32px 0;padding:26px;background:var(--atelier-sage);border-radius:12px}
.ct-contact-card h3{font-size:22px;margin:0 0 22px;font-weight:500}
.ct-contact-card dl{margin:0}.ct-contact-card dl>div{margin-bottom:18px}.ct-contact-card dt{font-size:12px;color:var(--atelier-blue);margin-bottom:4px}.ct-contact-card dd{margin:0;font-size:17px}.ct-contact-card p{font-size:13px;line-height:1.7}
.ct-contact-card a{display:flex;justify-content:space-between;color:var(--atelier-blue);font-weight:600;margin-top:22px;text-decoration:none}
.ct-small-note{font-size:14px!important}
.ct-admissions-form .ct-application{padding:0!important;border:0!important}.ct-admissions-form .ct-application>.imt-sechead{display:none}
body[data-contact-atelier] .ct-admissions #ct-form .ct-field-group{gap:20px;margin-bottom:34px}
body[data-contact-atelier] .ct-admissions #ct-form .ct-field-group>legend{font-size:22px!important}
body[data-contact-atelier] .ct-options-done[hidden]{display:none!important}
body[data-contact-atelier] #ct-form .ct-multiselect>summary>span:first-child{min-width:0;white-space:normal;line-height:1.5}
@media(max-width:900px){.ct-admissions-layout{grid-template-columns:1fr;gap:36px}.ct-admissions-aside{position:static;display:grid;grid-template-columns:1fr 1fr;gap:0 24px}.ct-contact-card{grid-column:2;grid-row:1/4;margin:0}.ct-admissions-aside>p{margin-top:0}}
@media(max-width:600px){body[data-contact-atelier] .ct-admissions{padding:112px 8% 56px!important}.ct-admissions-intro{display:block;margin-bottom:36px}.ct-admissions-intro>p:last-child{font-size:17px;margin-top:22px;max-width:none}.ct-admissions-aside{display:block}.ct-contact-card{margin-top:24px;padding:22px}.ct-small-note{display:none}.ct-admissions-layout{gap:24px}}
/* Current admissions controls, shared by English and Greek. */
body[data-contact-atelier] .ct-field-status{font-size:12px!important;line-height:1.5!important;font-weight:400!important;color:#645b54;margin-left:8px;letter-spacing:0;text-transform:none;white-space:nowrap}
body[data-contact-atelier] .ct-required-note,body[data-contact-atelier] .ct-privacy-note{font-size:14px;line-height:1.7;margin:0 0 24px}
body[data-contact-atelier] .ct-privacy-note a{color:var(--atelier-blue);text-decoration:underline;text-underline-offset:4px}
body[data-contact-atelier] .ct-validation{font-size:15px;color:#843b42;border-left:3px solid currentColor;padding:10px 16px}
body[data-contact-atelier] .ct-multiselect>summary[aria-invalid=true]{outline:2px solid #843b42;outline-offset:2px}
body[data-contact-atelier] .ct-review-button{display:inline-flex;align-items:center;justify-content:space-between;gap:24px;min-height:52px;background:var(--atelier-blue)!important;color:var(--atelier-paper)!important;border:0!important;border-radius:999px;padding:14px 26px;font:inherit;font-weight:600;cursor:pointer}
body[data-contact-atelier] .ct-review-button:hover{background:var(--atelier-ink)!important}
body[data-contact-atelier] .ct-review-button:disabled{opacity:.5;cursor:not-allowed}
body[data-contact-atelier] .ct-review-copy{white-space:pre-wrap;overflow-wrap:anywhere;font:inherit;font-size:15px;line-height:1.7}
body[data-contact-atelier] .ct-admissions .ct-field-group>.imt-field{min-width:0}
body[data-contact-atelier] .ct-review-actions{display:flex;flex-wrap:wrap;gap:12px}
body[data-contact-atelier] .ct-review-actions button{font:inherit;min-height:44px;border-radius:999px;padding:12px 22px;cursor:pointer}
@media(max-width:600px){body[data-contact-atelier] .ct-admissions-intro h1{font-size:clamp(36px,10vw,48px)!important}body[data-contact-atelier] .ct-field-status{display:inline-block;margin-left:0}body[data-contact-atelier] .imt-field>label{display:flex;flex-wrap:wrap;gap:4px 10px}}
body[data-contact-atelier] .ct-review-actions .ct-copy{background:var(--atelier-blue)!important;color:var(--atelier-paper)!important;border:0!important}
body[data-contact-atelier] .ct-review-actions .ct-edit{background:transparent!important;color:var(--atelier-ink)!important;border:1px solid var(--atelier-line)!important}
body[data-contact-atelier] .ct-review-actions .ct-copy:hover{background:var(--atelier-ink)!important}
/* Keep the Done control outside the scrolling list so it never covers an option. */
body[data-contact-atelier] #ct-form .ct-options-wrap{position:absolute;top:calc(100% + 6px);left:0;right:0;z-index:40;background:var(--atelier-paper);border:1px solid var(--atelier-line);border-radius:12px;box-shadow:0 12px 26px #29252218;overflow:hidden;padding:10px}
body[data-contact-atelier] #ct-form .ct-options-wrap .ct-options{position:static!important;max-height:min(300px,40dvh);overflow-y:auto;overscroll-behavior:contain;border:0!important;box-shadow:none!important;background:transparent!important;margin:0!important;padding:0!important}
body[data-contact-atelier] #ct-form .ct-options-wrap .ct-options-done{position:static!important;width:100%;margin:10px 0 0!important;min-height:44px}
.ct-form-actions{display:flex;flex-wrap:wrap;gap:12px;align-items:center}
body[data-contact-atelier] .ct-submit-button{display:inline-flex;align-items:center;justify-content:space-between;gap:24px;min-height:52px;background:var(--atelier-blue);color:var(--atelier-paper);border:0;border-radius:999px;padding:14px 26px;font:inherit;font-weight:600;cursor:pointer}
body[data-contact-atelier] .ct-submit-button:disabled,body[data-contact-atelier] .ct-review-button:disabled{opacity:.45;cursor:not-allowed}
body[data-contact-atelier] .ct-form-actions .ct-review-button{background:transparent!important;color:var(--atelier-ink)!important;border:1px solid var(--atelier-line)!important;font-weight:400}
.ct-submit-status{font-size:14px;line-height:1.7;margin-top:14px}
.ct-success{width:min(520px,calc(100vw - 32px));padding:clamp(28px,6vw,48px);border:1px solid var(--atelier-line);border-radius:20px;background:var(--atelier-paper);color:var(--atelier-ink);text-align:center;box-shadow:0 24px 80px #201e1a30}
.ct-success::backdrop{background:#201e1a99;backdrop-filter:blur(5px)}
.ct-success-mark{display:grid;place-items:center;width:56px;height:56px;margin:0 auto 24px;border:1px solid var(--atelier-blue);border-radius:50%;color:var(--atelier-blue);font-size:28px}
.ct-success h2{font:400 clamp(32px,6vw,44px)/1.15 var(--font-display);margin:0 0 20px}
.ct-success p{font-size:17px;line-height:1.7;margin:0 0 28px}
.ct-success-close{border:0;border-radius:999px;padding:12px 28px;min-height:44px;background:var(--atelier-blue);color:var(--atelier-paper);font:inherit;cursor:pointer}

.ct-contact-card dd a{display:inline;margin-top:0;overflow-wrap:anywhere;text-decoration:underline;text-underline-offset:3px}

/* Country and national number remain one readable phone field on small screens. */
body[data-contact-atelier] .ct-phone-row{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.2fr);gap:10px}
body[data-contact-atelier] .ct-phone-row>div{min-width:0}
body[data-contact-atelier] .ct-phone-row select,body[data-contact-atelier] .ct-phone-row input{width:100%;min-width:0;max-width:100%;height:56px;font-size:16px}
.ct-phone-accessible{position:absolute!important;width:1px;height:1px;padding:0!important;margin:-1px!important;overflow:hidden;clip-path:inset(50%);white-space:nowrap;border:0}
body[data-contact-atelier] .ct-phone-row select{padding:12px 24px 12px 10px;text-overflow:ellipsis;background:var(--atelier-paper);border:1px solid var(--atelier-line);border-radius:8px;color:var(--atelier-ink);font-family:inherit}

body[data-contact-atelier] .ct-review-copy{display:grid;gap:24px;white-space:normal;padding:24px;background:var(--atelier-sage);border-radius:12px;margin:20px 0}
.ct-summary-group h4{font:inherit;font-size:15px;font-weight:600;color:var(--atelier-blue);margin:0 0 16px}
.ct-summary-group dl{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px 28px;margin:0}
.ct-summary-field{min-width:0}
.ct-summary-field dt{font-size:12px;line-height:1.5;opacity:.72;margin:0 0 5px}
.ct-summary-field dd{font-size:17px;line-height:1.6;margin:0;overflow-wrap:anywhere}
.ct-summary-field .ct-summary-empty{font-size:15px;opacity:.65}
.ct-summary-wide{grid-column:1/-1}
.ct-summary-field ul{display:grid;gap:8px;list-style:none;padding:0;margin:0}
.ct-summary-field li{padding-left:16px;position:relative}
.ct-summary-field li:before{content:'•';position:absolute;left:0;color:var(--atelier-blue)}
@media(max-width:600px){body[data-contact-atelier] .ct-review-copy{padding:22px 18px;gap:28px}.ct-summary-group dl{grid-template-columns:1fr;gap:16px}.ct-summary-field dd{font-size:16px}}

/* A single interior interface: compact openings, open reading surfaces, precise controls. */
body[data-studio-system]{--studio-edge:6.5%}
body[data-studio-system] .header{width:100%!important;left:0;right:0}
body[data-studio-system] :is(.atelier-page-hero,.ae-opening,.at-course-opening,.wl-opening,.tp-text-opening){padding-top:125px!important;padding-bottom:40px!important}
body[data-studio-system] :is(.atelier-page-hero,.ae-title,.at-course-opening,.wl-title,.tp-text-opening) h1{font-size:clamp(44px,5.2vw,76px)!important;line-height:1.08!important;letter-spacing:-.025em!important;max-width:22ch!important}
body[data-studio-system] .reading-room{padding-top:36px!important;padding-bottom:48px!important}
body[data-studio-system] .rr-heading{margin-bottom:32px!important;padding-bottom:24px!important;border-bottom:1px solid var(--atelier-line)}
body[data-studio-system] .rr-heading h2{font-size:clamp(34px,4vw,54px)!important;line-height:1.12!important}
body[data-studio-system] .reading-layout{grid-template-columns:minmax(200px,.65fr) minmax(0,2fr)!important;gap:6%!important}
body[data-studio-system] .rr-navigation{border:0!important;background:none!important;box-shadow:none!important;border-radius:0!important}
body[data-studio-system] .reading-index a{border:0!important;border-left:2px solid transparent!important;padding:12px 14px!important;transition:background .2s,border-color .2s;color:var(--atelier-ink)}
body[data-studio-system] .reading-index a[aria-current]{border-left-color:var(--atelier-blue)!important;background:var(--atelier-sage)!important;color:var(--atelier-blue)!important}
body[data-studio-system] .reading-index .rr-secondary{padding:9px 14px 9px 30px!important;font-size:14px!important}
body[data-studio-system] .reading-chapter{padding-top:25px!important;padding-bottom:36px!important;min-height:0!important}
body[data-studio-system] .reading-chapter :is(h2,.h2){font-size:clamp(30px,3.3vw,46px)!important;line-height:1.15!important}
body[data-studio-system] .reading-chapter .tt-topic{border:0!important;border-bottom:1px solid var(--atelier-line)!important;border-radius:0!important;background:transparent!important;box-shadow:none!important}
body[data-studio-system] .reading-chapter .tt-topic summary{padding:18px 0!important}
body[data-studio-system] :is(.rr-cover-link,.pmu-jump,.tp-opening-link,.ae-opening .btn,.atelier-page-hero .btn){background:transparent!important;color:var(--atelier-blue)!important;border:0!important;border-bottom:1px solid currentColor!important;border-radius:0!important;padding:12px 0!important;min-height:46px!important;box-shadow:none!important;clip-path:none!important}
body[data-studio-system] .atelier-closing{padding-top:35px!important;padding-bottom:42px!important;min-height:0!important;border-top:1px solid var(--atelier-line)!important}
body[data-studio-system] .atelier-closing :is(h2,.h2){font-size:clamp(30px,3.5vw,48px)!important;line-height:1.15!important}
body[data-studio-system] .atelier-closing .btn{background:transparent!important;color:var(--atelier-ink)!important;border:0!important;border-bottom:1px solid currentColor!important;border-radius:0!important;padding:12px 0!important;min-height:44px!important}
body[data-studio-system] .pmu-opening{grid-template-columns:1fr!important}
body[data-studio-system] .pmu-opening:has(.pmu-image:empty) .pmu-image{display:none}
body[data-studio-system] .at-course-visual:empty{display:none}
.st-page-index{position:fixed;bottom:20px;right:24px;z-index:20;display:flex;gap:16px;align-items:center;padding:10px 16px;background:var(--atelier-ink);color:var(--atelier-paper);box-shadow:0 5px 20px #0002;max-width:calc(100% - 40px)}
.st-page-index label{font-size:13px;white-space:nowrap}
.st-page-index select{font-size:14px;max-width:240px;min-height:38px;border:0;border-bottom:1px solid #ffffff70;background:var(--atelier-ink);color:var(--atelier-paper);padding:8px}
/* Contact behaves as a small admissions workspace, rather than stacked landing-page blocks. */
body[data-studio-system][data-contact-atelier] .ct-page{padding-top:120px}
body[data-studio-system] .ct-opening{grid-template-columns:1fr 1.2fr;gap:16px 8%;padding-bottom:32px}
body[data-studio-system] .ct-opening h1{font-size:clamp(40px,4.5vw,62px)!important}
body[data-studio-system] .ct-opening .lede{font-size:17px;line-height:1.65}
.st-contact-workspace{display:grid;grid-template-columns:minmax(190px,.65fr) minmax(0,2fr);gap:6%;padding:36px 0 44px}
.st-contact-tabs{display:none}
.st-contact-ready .st-contact-tabs{display:flex;flex-direction:column;align-self:start;position:sticky;top:30px;border-top:1px solid var(--atelier-line)}
.st-contact-tabs button{display:flex;align-items:center;gap:16px;border:0;border-left:2px solid transparent;background:none;color:var(--atelier-ink);padding:18px 16px;text-align:left;min-height:60px;font-size:17px;cursor:pointer}
.st-contact-tabs button>span{font-size:13px;color:var(--atelier-blue)}
.st-contact-tabs button[aria-selected="true"]{background:var(--atelier-sage);border-left-color:var(--atelier-blue)}
.st-contact-panels{min-width:0}
.st-contact-panels>[hidden]{display:none!important}
.st-contact-panels>section,.st-contact-panels>.ct-details{position:static!important;border:0!important;padding:0!important}
.st-contact-panels .ct-process .imt-list{grid-template-columns:1fr 1fr!important}
body[data-studio-system] .ct-application .imt-form{gap:24px 30px!important}
body[data-studio-system] .ct-application :is(input,select,textarea){border:0!important;border-bottom:1px solid var(--atelier-line)!important;background:transparent!important;padding:12px 0!important}
body[data-studio-system] .ct-application :is(input,select,textarea):focus{outline:0!important;border-bottom:2px solid var(--atelier-blue)!important;background:var(--atelier-sage)!important}
body[data-studio-system] .ct-application .imt-form>button{justify-self:start;min-width:230px;width:auto!important;border-radius:999px!important}
body[data-studio-system] .ct-closing{padding:28px 0 36px;display:grid;grid-template-columns:1fr 1.2fr;gap:14px 8%}
body[data-studio-system] .ct-closing .eyebrow{grid-column:1/-1;margin:0!important}
body[data-studio-system] .ct-closing>p:nth-child(2){grid-row:2/4;margin:0!important}
body[data-studio-system] .ct-closing .h2{font-size:36px!important}
body[data-studio-system] .ct-closing>p:last-child{grid-column:2;margin:0}
body[data-studio-system] .ct-closing .btn{background:transparent!important;color:var(--atelier-blue)!important;border-bottom:1px solid currentColor!important;border-radius:0!important;padding:10px 0!important}
.st-contact-tabs button:focus-visible,.st-page-index select:focus-visible{outline:2px solid var(--atelier-blue);outline-offset:3px}
@media(max-width:760px){
body[data-studio-system] :is(.atelier-page-hero,.ae-opening,.at-course-opening,.wl-opening,.tp-text-opening){padding-top:108px!important;padding-bottom:30px!important}
body[data-studio-system] .reading-layout{display:block!important}
body[data-studio-system] .rr-navigation{background:var(--atelier-paper)!important}
body[data-studio-system] .rr-heading h2{font-size:36px!important}
body[data-studio-system][data-contact-atelier] .ct-page{padding-top:104px}
body[data-studio-system] .ct-opening,body[data-studio-system] .ct-closing{display:block}
.st-contact-workspace{display:block;padding-top:24px}
.st-contact-ready .st-contact-tabs{position:static;flex-direction:row;margin-bottom:28px;border-bottom:1px solid var(--atelier-line)}
.st-contact-tabs button{flex:1;justify-content:center;padding:14px 7px;min-height:56px;border-left:0;border-bottom:2px solid transparent;font-size:14px;gap:6px}
.st-contact-tabs button>span{display:none}
.st-contact-tabs button[aria-selected="true"]{border-bottom-color:var(--atelier-blue)}
.st-contact-panels .ct-process .imt-list{grid-template-columns:1fr!important}
.st-page-index{bottom:12px;right:12px;max-width:calc(100% - 24px);padding:7px 12px}.st-page-index label{display:none}.st-page-index select{max-width:260px}
body[data-studio-system] .ct-closing .lede{margin-top:18px}
}
@media(prefers-reduced-motion:reduce){body[data-studio-system] *{scroll-behavior:auto!important;transition:none!important}}
body[data-studio-system] :is(.pmu-photo,.at-photo):empty{display:none!important}
body[data-studio-system] .pmu-photo:has(.at-photo:empty){display:none!important}
body[data-studio-system] :is(.pmu-cover,.at-course-cover){grid-template-columns:1fr!important;min-height:0!important}
body[data-studio-system] .pmu-opening{padding-top:125px!important;padding-bottom:40px!important}
body[data-studio-system] .pmu-title h1{font-size:clamp(44px,5.2vw,76px)!important}
body[data-studio-system] .st-contact-workspace:not(.st-contact-ready){display:block}
@media(max-width:760px){body[data-studio-system] .pmu-opening{padding-top:108px!important}}

.mobile-dock{display:none}
@media(max-width:760px){
body[data-atelier-page]{padding-bottom:calc(72px + env(safe-area-inset-bottom,0px))!important}
body[data-atelier-page] .mobile-dock{position:fixed;z-index:45;bottom:0;left:0;right:0;display:grid;grid-template-columns:1fr 1fr 1fr;gap:6px;padding:8px max(12px,env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom,0px)) max(12px,env(safe-area-inset-left));background:var(--atelier-paper);box-shadow:0 -4px 22px #29252212;transition:translate .2s,opacity .2s}
.mobile-dock :is(a,button){display:flex;justify-content:center;align-items:center;gap:8px;min-height:46px;padding:10px 6px;border:0;border-radius:8px;background:transparent;color:var(--atelier-ink);font-size:14px;line-height:1.3;text-decoration:none;cursor:pointer}
.mobile-dock .mobile-apply{background:var(--atelier-blue);color:var(--atelier-paper)}
.mobile-dock .mobile-menu:before{content:'☰';font-size:16px}
.mobile-dock [aria-expanded=true]{background:var(--atelier-sage)}
.mobile-dock :is(a,button):focus-visible{outline:2px solid var(--atelier-blue);outline-offset:-3px}
body[data-hero-visible=true] .mobile-dock,body[data-mobile-editing=true] .mobile-dock,body:has(.home-menu[open]) .mobile-dock{translate:0 110%;opacity:0;visibility:hidden;pointer-events:none}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-shell{padding-bottom:calc(24px + env(safe-area-inset-bottom,0px))!important}
body[data-atelier-page] .sys-menu-group>summary{min-height:60px!important;font-size:23px!important}
body[data-atelier-page] .sys-menu-group a{min-height:48px!important;padding-block:13px!important}
body[data-studio-system] .rr-navigation[open]{position:fixed!important;z-index:50;inset:auto 12px calc(76px + env(safe-area-inset-bottom,0px))!important;max-height:60dvh;overflow-y:auto;overscroll-behavior:contain;background:var(--atelier-paper)!important;border-radius:14px!important;padding:10px 14px 16px!important;box-shadow:0 0 0 100vmax #29252265,0 10px 30px #0002}
body[data-studio-system] .rr-navigation[open]>summary{position:sticky;top:-10px;background:var(--atelier-paper);z-index:1;padding:16px 0!important;min-height:52px}
body[data-studio-system] .reading-index a{min-height:46px;font-size:15px!important;line-height:1.45!important}
body[data-studio-system] .rr-heading{display:block!important;padding-bottom:0!important;border:0!important;margin-bottom:22px!important}
body[data-studio-system] .rr-heading h2{font-size:30px!important;line-height:1.15!important;margin-top:10px!important}
body[data-studio-system] .reading-chapter{padding-top:24px!important;padding-bottom:28px!important;scroll-margin-top:28px!important}
body[data-studio-system] .rr-progress{display:none}
body[data-studio-system] .rr-navigation:not([open])>summary{min-height:48px!important}
body[data-studio-system] :is(.atelier-page-hero,.ae-title,.at-course-opening,.wl-title,.tp-text-opening,.pmu-title) h1{font-size:clamp(34px,8.8vw,44px)!important;line-height:1.12!important;max-width:100%!important;overflow-wrap:break-word}
body[data-studio-system] :is(.ae-opening,.wl-opening,.at-course-opening,.pmu-opening){padding-bottom:30px!important}
body[data-home-layout="atelier-editorial"] #section-1.hp-intro{padding-block:34px!important}
body[data-home-layout="atelier-editorial"] .hp-intro-statement{font-size:26px!important}
.hp-intro-support>p{font-size:16px;line-height:1.65}
body[data-home-layout="atelier-editorial"] #programs-intro .hp-programme-heading h2{font-size:34px!important;margin-bottom:18px!important}
body[data-home-layout="atelier-editorial"] #programs-intro .hp-programme-heading>p{font-size:16px!important;line-height:1.65!important}
body[data-home-layout="atelier-editorial"] .hx-visual{height:120px}
body[data-home-layout="atelier-editorial"] .hx-visual>span{display:none}
body[data-home-layout="atelier-editorial"] .hx-tab{font-size:17px;min-height:52px;gap:0}
body[data-home-layout="atelier-editorial"] .hx-tab>.hx-index{display:none}
body[data-home-layout="atelier-editorial"] .hx-content{padding-inline:16px}
body[data-home-layout="atelier-editorial"] #section-9.hx-explorer .atelier-card:nth-child(n){padding-top:18px!important;gap:16px;align-self:flex-start}
body[data-home-layout="atelier-editorial"] #section-9 .hx-panel-heading h3{font-size:32px!important}
body[data-home-layout="atelier-editorial"] #section-9 .atelier-card>p{font-size:16px;line-height:1.6}
body[data-home-layout="atelier-editorial"] .hx-enhanced .hx-track{align-items:flex-start;flex:none;transition:height .2s ease}
body[data-home-layout="atelier-editorial"] #section-9 .atelier-card>.hx-link{font-size:15px;min-height:48px;margin-top:0}
body[data-home-layout="atelier-editorial"] .hp-additional-copy h2{font-size:32px!important}
body[data-home-layout="atelier-editorial"] .hp-additional .home-additional-directory a{min-height:58px;font-size:16px}
body[data-home-layout="atelier-editorial"] .hp-ambition-statement{font-size:25px!important;line-height:1.4!important}
body[data-studio-system][data-contact-atelier] .ct-page{padding-top:100px}
body[data-studio-system] .ct-opening h1{font-size:36px!important;line-height:1.1!important}
body[data-studio-system] .ct-opening .lede{font-size:16px;line-height:1.6;margin-top:18px}
body[data-studio-system] .ct-opening{padding-bottom:20px;border:0}
body[data-studio-system] .ct-opening>p:last-child{display:none}
.st-contact-ready .st-contact-tabs{margin-bottom:22px;border-top:0;gap:4px}
.st-contact-tabs button{border-radius:8px;min-height:48px;padding:12px 6px;font-size:13px}
body[data-studio-system] .ct-application>.eyebrow{display:none}
body[data-studio-system] .ct-page .h3{font-size:27px!important}
body[data-studio-system] .ct-page .imt-form{gap:18px!important}
body[data-studio-system] .ct-page label{text-transform:none!important;font-size:15px!important;letter-spacing:0!important;margin-bottom:4px!important}
body[data-studio-system] .ct-page :is(input,select,textarea){font-size:16px!important;min-height:48px}
body[data-studio-system] .ct-page textarea{min-height:110px}
body[data-studio-system] .ct-application .imt-form>button{width:100%!important;min-height:52px!important}
body[data-studio-system] .st-page-index{display:none}
body[data-atelier-page] .footer__cols-menu-title{min-height:48px;display:flex;align-items:center}
}
@media(prefers-reduced-motion:reduce){.mobile-dock,.hx-track{transition:none!important}}
@media(max-width:760px){
body[data-home-layout="atelier-editorial"]{overflow-anchor:none}
body[data-studio-system] .rr-sidebar:has(.rr-navigation[open]){z-index:60!important}
body[data-studio-system] #prospectus .rr-navigation[open]{box-shadow:0 0 0 100vmax #29252265,0 10px 30px #0002!important;border-radius:14px!important;border:0!important}
}
@media(max-width:760px){.mobile-dock select{min-width:0;width:100%;min-height:46px;border:0;background:transparent;color:var(--atelier-ink);font-size:14px;padding:8px 4px}.mobile-dock select:focus-visible{outline:2px solid var(--atelier-blue);outline-offset:-2px}}
/* Top navigation only, with a three-line menu icon on every viewport. */
body[data-atelier-page] .home-burger{display:flex!important;flex-direction:column!important;justify-content:space-between!important;gap:0!important;height:18px!important;width:28px!important}
body[data-atelier-page] .home-burger>span:nth-child(n){display:block!important;height:1px!important;width:28px!important;flex:0 0 1px}
.mobile-top-context{display:none}
@media(max-width:760px){
body[data-atelier-page]{padding-bottom:0!important}
body[data-atelier-page] .header{position:fixed!important;top:0!important;left:0!important;right:0!important;z-index:40!important;width:100%!important;height:80px!important;opacity:1!important;pointer-events:auto!important;transform:none!important;background:var(--atelier-paper)!important}
body[data-home-layout="atelier-editorial"][data-hero-visible="true"] .header{background:transparent!important}
body[data-home-layout="atelier-editorial"]:not([data-hero-visible="true"]) .sys-topbar{--bar-ink:var(--atelier-ink)!important}
body[data-home-layout="atelier-editorial"]:not([data-hero-visible="true"]) .sys-logo-image{filter:none!important}
body[data-home-layout="atelier-editorial"][data-hero-visible="true"] .sys-logo-image{filter:brightness(0) invert(1)!important}
body[data-atelier-page] .mobile-top-context{display:block;position:fixed;top:80px;left:0;right:0;z-index:39;padding:4px 6.5% 8px;background:var(--atelier-paper)}
.mobile-top-context :is(button,select){display:block;width:100%;min-height:42px;padding:10px 12px;border:0;border-radius:6px;background:var(--atelier-sage);color:var(--atelier-ink);font-size:14px;text-align:left}
.mobile-top-context button:after{content:'+';float:right}.mobile-top-context button[aria-expanded=true]:after{content:'−'}
body.has-mobile-context :is(.atelier-page-hero,.ae-opening,.at-course-opening,.wl-opening,.tp-text-opening,.pmu-opening){padding-top:150px!important}
body[data-studio-system] #prospectus .rr-navigation[open]{inset:136px 12px auto!important;max-height:calc(100dvh - 156px);}
body[data-studio-system] .rr-sidebar:has(.rr-navigation[open]){z-index:60!important}
body[data-studio-system] .rr-navigation:not([open])>summary{display:none!important}
body[data-studio-system] .reading-chapter{scroll-margin-top:145px!important}
body[data-studio-system] .st-page-index{display:none}
body[data-atelier-page] .footer,body[data-atelier-page] .footer__section{display:block!important;opacity:1!important;visibility:visible!important;transform:none!important;height:auto!important;overflow:visible!important}
body[data-atelier-page] .footer__section-inner{width:100%!important;padding:30px 6.5%!important;box-sizing:border-box!important}
body[data-atelier-page] :is(.footer__cols,.footer__cols-menus){display:grid!important;grid-template-columns:1fr!important;gap:28px!important;width:100%!important}
body[data-atelier-page] .footer__cols-menu{width:100%!important;min-width:0!important}
body[data-atelier-page] .footer__cols-menu-items{display:block!important;height:auto!important;max-height:none!important;overflow:visible!important;opacity:1!important;visibility:visible!important;transform:none!important}
body[data-atelier-page] .footer__cols-menu-title{margin:0 0 8px!important;min-height:30px;font-size:16px!important;pointer-events:none}
body[data-atelier-page] .footer__cols-menu-title:after{display:none!important}
body[data-atelier-page] .footer .menu{display:block!important;margin:0!important;padding:0!important;list-style:none!important}
body[data-atelier-page] .footer .menu a{display:flex!important;align-items:center;min-height:44px;padding:8px 0!important;font-size:15px!important;line-height:1.5!important}
body[data-atelier-page] .footer__meta{display:block!important;margin-top:28px!important}
body[data-atelier-page] .footer__section--strapline{display:none!important}
}
@media(max-width:760px){
body[data-atelier-page] .header{--bar-ink:var(--atelier-ink)!important;color:var(--atelier-ink)!important}
body[data-atelier-page] .header .sys-topbar{background:transparent!important;color:var(--bar-ink)!important}
body[data-atelier-page] .header .sys-languages{color:var(--bar-ink)!important}
body[data-atelier-page] .header .sys-logo-image{filter:brightness(0)!important}
body[data-home-layout="atelier-editorial"][data-hero-visible="true"] .header{--bar-ink:var(--atelier-paper)!important}
body[data-home-layout="atelier-editorial"][data-hero-visible="true"] .header .sys-topbar{background:linear-gradient(180deg,#0006,transparent)!important}
body[data-home-layout="atelier-editorial"][data-hero-visible="true"] .header .sys-logo-image{filter:brightness(0) invert(1)!important}
}
@media(max-width:760px){html body[data-atelier-page][data-interior-layout][data-studio-system] .header{position:fixed!important;top:0!important}}

:root{--imt-dark:#211f1c;--imt-on-dark:#f3eee7;--imt-dark-muted:#bdb4aa}
body[data-atelier-page] .footer,body[data-atelier-page] .footer__section{background:var(--imt-dark)!important;color:var(--imt-on-dark)!important;border:0!important}
body[data-atelier-page] .footer__section-inner{max-width:1440px!important;width:100%!important;margin:auto!important;padding:48px 6.5% 24px!important;box-sizing:border-box}
body[data-atelier-page] .footer__cols{display:flex!important;flex-direction:column!important;gap:28px!important;align-items:stretch!important}
body[data-atelier-page] .footer__brand{order:-1;display:block!important;margin:0!important;padding:0!important;width:64px!important;height:64px!important}
body[data-atelier-page] .footer__brand :is(a,img){display:block;width:64px!important;height:64px!important;object-fit:contain}
body[data-atelier-page] .footer__cols-menus{display:grid!important;grid-template-columns:1fr 1fr 1.4fr 1.2fr .7fr!important;gap:28px!important;width:100%!important}
.footer-group{min-width:0;padding:0;margin:0;border:0}
.footer-group>summary{font-size:15px;line-height:1.4;color:var(--imt-dark-muted);list-style:none;cursor:default;pointer-events:none;margin-bottom:12px}
.footer-group>summary::-webkit-details-marker{display:none}
body[data-atelier-page] .footer .menu,body[data-atelier-page] .footer .menu li{list-style:none;margin:0!important;padding:0!important;border:0!important}
body[data-atelier-page] .footer .menu a{display:block!important;min-height:38px!important;padding:8px 0!important;font-size:14px!important;line-height:1.5!important;text-transform:none!important;color:var(--imt-on-dark)!important;opacity:1!important;text-decoration:none}
body[data-atelier-page] .footer .menu a:hover{color:white!important;text-decoration:underline;text-underline-offset:5px}
body[data-atelier-page] .footer__meta{margin-top:28px!important;padding-top:20px!important;border-top:1px solid #ffffff20!important;font-size:13px!important;color:var(--imt-dark-muted)}
body[data-atelier-page] .footer__meta p{font-size:13px!important;color:var(--imt-dark-muted)!important;margin:0!important}
body[data-atelier-page] .imt-navigation.home-simple-menu{background:var(--imt-dark)!important;color:var(--imt-on-dark)!important;border-color:#ffffff20!important}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-top{background:var(--imt-dark)!important;border-color:#ffffff20!important}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-top p,body[data-atelier-page] .imt-navigation .home-menu-close{color:var(--imt-on-dark)!important}
body[data-atelier-page] .imt-navigation .sys-menu-group{border-color:#ffffff25!important}
body[data-atelier-page] .imt-navigation .sys-menu-group>summary,body[data-atelier-page] .imt-navigation .sys-menu-group>summary:after{color:var(--imt-on-dark)!important}
body[data-atelier-page] .imt-navigation .sys-menu-group li{border-color:#ffffff18!important}
body[data-atelier-page] .imt-navigation .sys-menu-group a,body[data-atelier-page] .imt-navigation .sys-menu-direct a,body[data-atelier-page] .imt-navigation .home-simple-meta a{color:var(--imt-on-dark)!important;background:transparent!important}
body[data-atelier-page] .imt-navigation .sys-menu-group a:hover,body[data-atelier-page] .imt-navigation .sys-menu-group a[aria-current=page]{background:#ffffff10!important;color:white!important}
body[data-atelier-page] .imt-navigation .home-menu-bottom{border-color:#ffffff25!important}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-apply{background:var(--imt-on-dark)!important;color:var(--imt-dark)!important;font-weight:600!important;min-height:54px!important}
body[data-atelier-page] .imt-navigation :focus-visible{outline:2px solid var(--imt-on-dark)!important;outline-offset:3px}
body[data-atelier-page] .sys-apply{display:inline-flex!important;align-items:center;justify-content:center;gap:14px!important;background:var(--atelier-blue)!important;color:white!important;border:0!important;border-radius:999px!important;min-height:46px!important;padding:12px 22px!important;font-size:14px!important;font-weight:600!important;box-shadow:0 3px 12px #29252218!important}
body[data-home-layout="atelier-editorial"] #section-9 .atelier-card>.hx-link{font-weight:600;box-shadow:0 3px 12px #29252220}
body[data-atelier-page] :is(.sys-apply,.hx-link):hover{filter:brightness(1.13)}
body[data-home-layout="atelier-editorial"] .home-about-link,body[data-home-layout="atelier-editorial"] .hp-additional .home-discover,body[data-home-layout="atelier-editorial"] .hp-ambition .home-manifesto-link{font-weight:500!important}
@media(max-width:1000px) and (min-width:761px){body[data-atelier-page] .footer__cols-menus{grid-template-columns:repeat(3,minmax(0,1fr))!important}}
@media(max-width:760px){
body[data-atelier-page] .sys-topbar-right .sys-languages{display:none!important}
body[data-atelier-page] .sys-topbar .sys-apply{display:inline-flex!important;min-height:44px!important;padding:10px 15px!important;font-size:13px!important;gap:0!important;max-width:115px;white-space:nowrap}
body[data-atelier-page] .sys-apply>span{display:none}
body[data-atelier-page] .sys-logo{width:54px!important;height:54px!important}
body[data-home-layout="atelier-editorial"][data-hero-visible=true] .sys-apply{background:var(--imt-on-dark)!important;color:var(--imt-dark)!important}
body[data-atelier-page] .footer__section-inner{padding:32px 6.5% 24px!important}
body[data-atelier-page] .footer__cols,body[data-atelier-page] .footer__cols-menus{display:flex!important;flex-direction:column!important;gap:0!important}
body[data-atelier-page] .footer__brand{margin-bottom:22px!important}
.footer-group{border-bottom:1px solid #ffffff20;padding:0!important}
.footer-group>summary{display:flex;justify-content:space-between;align-items:center;min-height:58px;padding:14px 0;margin:0;pointer-events:auto;cursor:pointer;color:var(--imt-on-dark);font-size:16px}
.footer-group>summary:after{content:'+';font-size:22px;font-weight:400;color:var(--imt-dark-muted)}
.footer-group[open]>summary:after{content:'−'}
body[data-atelier-page] .footer-group .footer__cols-menu-items{padding-bottom:16px!important}
body[data-atelier-page] .footer .menu a{min-height:44px!important;font-size:15px!important}
body[data-atelier-page] .footer-group:not([open]) .footer__cols-menu-items{display:none!important}
.footer-group>summary:focus-visible{outline:2px solid var(--imt-on-dark);outline-offset:2px}
}
body[data-atelier-page] .imt-navigation .sys-menu-direct .h3{color:var(--imt-on-dark)!important}
/* Give the footer one spacing system, without inherited desktop offsets. */
body[data-atelier-page] .footer__section--main{display:block!important;padding:0!important}
body[data-atelier-page] .footer__cols{padding:0!important;border:0!important}
body[data-atelier-page] .footer__brand{position:static!important;inset:auto!important}
body[data-atelier-page] .footer__meta{justify-content:flex-start!important}
body[data-atelier-page] .footer__meta-copyright{opacity:1!important;margin:0!important;color:var(--imt-dark-muted)!important}
.footer-contact{margin:0}.footer-contact>div{margin-bottom:18px}.footer-contact dt{font-size:13px;color:var(--imt-dark-muted);margin-bottom:5px}.footer-contact dd{margin:0;font-size:15px;line-height:1.5;color:var(--imt-on-dark)}
@media(max-width:760px){.footer-contact{padding:4px 0 16px}}

/* Legal placeholders stay separate from navigation; copyright anchors the corner. */
body[data-atelier-page] .footer__meta{display:flex!important;flex-direction:row!important;align-items:center!important;justify-content:space-between!important;gap:20px 32px!important;width:100%;box-sizing:border-box}
.footer-legal{display:flex;flex-wrap:wrap;gap:12px 24px;font-size:13px;line-height:1.5;color:var(--imt-dark-muted)}
.footer-legal span{cursor:default}
body[data-atelier-page] .footer__meta-copyright{margin-left:auto!important;white-space:nowrap;text-align:right}
@media(max-width:760px){body[data-atelier-page] .footer__meta{align-items:flex-end!important}.footer-legal{flex-direction:column;gap:12px;font-size:12px}body[data-atelier-page] .footer__meta-copyright{font-size:12px!important}}

.footer-contact dd a{color:inherit;overflow-wrap:anywhere;text-decoration:underline;text-underline-offset:3px}

/* Tattoo: programme comparison followed by an editorial reading room. */
body[data-tattoo-atelier][data-studio-system] .tp-text-opening{padding-bottom:48px!important}
body[data-tattoo-atelier][data-studio-system] .tp-opening-heading{border:0;padding-bottom:0}
body[data-tattoo-atelier][data-studio-system] .tp-opening-intro{gap:8%;padding-top:28px}
body[data-tattoo-atelier][data-studio-system] .tp-opening-statement p{font-size:clamp(25px,2.6vw,36px);line-height:1.3}
body[data-tattoo-atelier][data-studio-system] .tp-opening-copy p{font-size:16px;line-height:1.7}
body[data-tattoo-atelier][data-studio-system] .tp-opening-link{border:0!important;border-radius:999px!important;background:var(--atelier-blue)!important;color:white!important;padding:14px 22px!important;font-weight:600}
body[data-tattoo-atelier][data-studio-system] .tp-overview{padding-top:32px!important;padding-bottom:56px!important;border:0!important}
body[data-tattoo-atelier][data-studio-system] .tp-heading{display:grid!important;grid-template-columns:1.1fr 1fr;gap:12px 8%;margin-bottom:28px}
body[data-tattoo-atelier][data-studio-system] .tp-heading>p:first-child{grid-column:1/-1;font-size:13px;margin:0}
body[data-tattoo-atelier][data-studio-system] .tp-heading h2{font-size:clamp(30px,3.2vw,44px)!important;line-height:1.15;margin:0!important}
body[data-tattoo-atelier][data-studio-system] .tp-heading>p:last-child{font-size:16px;line-height:1.65;margin:0;align-self:end}
body[data-tattoo-atelier][data-studio-system] .tp-options{gap:16px!important}
body[data-tattoo-atelier][data-studio-system] .tp-options>a:nth-child(n){padding:24px!important;background:#ebe6dd!important;border:0!important;border-radius:18px!important;box-shadow:none!important;transition:background .2s,translate .2s}
body[data-tattoo-atelier][data-studio-system] .tp-options h2{font-size:clamp(26px,2.5vw,34px)!important;min-height:3.45em;margin:16px 0!important}
body[data-tattoo-atelier][data-studio-system] .tp-options .tp-course-fit{font-size:15px!important;line-height:1.65!important;min-height:6.6em;margin-bottom:24px!important}
body[data-tattoo-atelier][data-studio-system] .tp-options strong{font-size:30px!important}
body[data-tattoo-atelier][data-studio-system] .tp-course-action{background:var(--atelier-blue);border:0;color:white;font-weight:600;min-height:46px;margin-top:20px}
body[data-tattoo-atelier][data-studio-system] .tp-options>a:focus-visible{outline:2px solid var(--atelier-blue);outline-offset:5px}
@media(hover:hover){body[data-tattoo-atelier][data-studio-system] .tp-options>a:hover{translate:0 -4px}}
body[data-tattoo-atelier][data-studio-system] .tp-week{background:transparent!important;border:0!important;padding-block:36px!important;gap:8%}
body[data-tattoo-atelier][data-studio-system] .tp-week h2{font-size:36px;margin:12px 0}
body[data-tattoo-atelier][data-studio-system] .tp-week-diagram{gap:12px;margin-top:22px}
body[data-tattoo-atelier][data-studio-system] .tp-week-diagram span{width:64px;height:64px;font-size:22px;background:#ebe6dd;border:0}
body[data-tattoo-atelier][data-studio-system] .tp-week-diagram strong{font-size:36px}
body[data-tattoo-atelier][data-studio-system] .tp-week-notes article{border:0;padding:0 0 20px}
body[data-tattoo-atelier][data-studio-system] .tp-week-notes h3{font-size:26px}
body[data-tattoo-atelier][data-studio-system] .tp-week p{font-size:16px;line-height:1.7}
body[data-tattoo-atelier][data-studio-system] .reading-room{padding-top:48px!important;border:0!important}
body[data-tattoo-atelier][data-studio-system] .rr-heading{border:0!important}
body[data-tattoo-atelier][data-studio-system] .rr-navigation{background:var(--imt-dark)!important;color:var(--imt-on-dark)!important;border:0!important;border-radius:16px!important;padding:18px!important}
body[data-tattoo-atelier][data-studio-system] .rr-navigation summary{color:var(--imt-on-dark)!important}
body[data-tattoo-atelier][data-studio-system] .reading-index a{color:var(--imt-on-dark)!important;border:0!important;border-radius:8px!important}
body[data-tattoo-atelier][data-studio-system] .reading-index a[aria-current]{background:#ffffff18!important;color:white!important}
body[data-tattoo-atelier][data-studio-system] .reading-index a span{color:inherit!important}
body[data-tattoo-atelier][data-studio-system] .reading-index a:focus-visible{outline:2px solid white;outline-offset:-2px}
body[data-tattoo-atelier][data-studio-system] .tt-chapter{border:0!important;padding-block:24px!important}
body[data-tattoo-atelier][data-studio-system] .tt-chapter-content>p{font-size:16px!important;line-height:1.8!important;max-width:66ch}
body[data-tattoo-atelier][data-studio-system] .tt-facts{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:10px!important;border:0!important}
body[data-tattoo-atelier][data-studio-system] .tt-fact{display:flex!important;align-items:center!important;padding:16px!important;border:0!important;background:#ebe6dd;border-radius:10px;min-width:0}
body[data-tattoo-atelier][data-studio-system] .tt-fact>b{display:none!important}
body[data-tattoo-atelier][data-studio-system] .tt-fact>span{font-size:16px!important;line-height:1.4!important}
body[data-tattoo-atelier][data-studio-system] .tt-topic summary{min-height:58px;gap:14px!important;font-size:18px!important;line-height:1.4!important}
body[data-tattoo-atelier][data-studio-system] .tt-topic-copy{font-size:16px!important;line-height:1.8!important;padding-bottom:20px!important}
body[data-tattoo-atelier][data-studio-system] .rr-expand{border:0!important;border-radius:999px!important;background:#ebe6dd!important;padding:12px 18px!important;min-height:44px;color:var(--atelier-ink)!important}
body[data-tattoo-atelier][data-studio-system] .atelier-closing{border:0!important;background:#ebe6dd!important}
body[data-tattoo-atelier][data-studio-system] .atelier-closing .k-btn{background:var(--atelier-blue)!important;color:white!important;border:0!important;border-radius:999px!important;padding:15px 26px!important;min-height:48px;font-weight:600}
@media(max-width:850px){
body[data-tattoo-atelier][data-studio-system] .tp-options>a:nth-child(n){display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;gap:4px 18px!important;padding:22px!important}
body[data-tattoo-atelier][data-studio-system] .tp-options h2{grid-column:1/-1;min-height:0!important;font-size:28px!important;margin:8px 0!important;max-width:26ch}
body[data-tattoo-atelier][data-studio-system] .tp-options .tp-course-kicker,body[data-tattoo-atelier][data-studio-system] .tp-options .tp-course-fit{grid-column:1/-1;min-height:0!important}
body[data-tattoo-atelier][data-studio-system] .tp-options .tp-course-fit{margin-bottom:12px!important}
body[data-tattoo-atelier][data-studio-system] .tp-options strong{grid-row:4/6;margin:0!important;align-self:center;font-size:26px!important}
body[data-tattoo-atelier][data-studio-system] .tp-options p:not(.tp-course-fit){margin:0!important;font-size:13px!important;text-align:right}
body[data-tattoo-atelier][data-studio-system] .tp-course-action{grid-column:1/-1;margin-top:14px;align-self:stretch}
}
@media(max-width:760px){
body[data-tattoo-atelier][data-studio-system] .tp-heading{display:block!important}
body[data-tattoo-atelier][data-studio-system] .tp-heading h2{margin:12px 0!important;font-size:30px!important}
body[data-tattoo-atelier][data-studio-system] .tp-opening-statement p{font-size:24px!important;max-width:26ch}
body[data-tattoo-atelier][data-studio-system] .tp-opening-intro{padding-top:20px}
body[data-tattoo-atelier][data-studio-system] .tp-overview{padding-top:12px!important;padding-bottom:28px!important}
body[data-tattoo-atelier][data-studio-system] .tp-week{padding-block:28px!important}
body[data-tattoo-atelier][data-studio-system] .tp-week h2{font-size:30px}
body[data-tattoo-atelier][data-studio-system] .tp-week-notes{margin-top:28px}
body[data-tattoo-atelier][data-studio-system] .tt-facts{grid-template-columns:repeat(2,minmax(0,1fr))!important}
body[data-tattoo-atelier][data-studio-system] .tt-fact:last-child{grid-column:1/-1}
body[data-tattoo-atelier][data-studio-system] .tt-chapter{scroll-margin-top:150px}
body[data-tattoo-atelier][data-studio-system] #prospectus .rr-navigation[open]{background:var(--imt-dark)!important}
body[data-tattoo-atelier][data-studio-system] .rr-navigation[open]>summary{background:var(--imt-dark)!important}
body[data-tattoo-atelier][data-studio-system] .reading-index a{min-height:48px}
body[data-tattoo-atelier][data-studio-system] .rr-sidebar:not(:has(.rr-navigation[open])){margin:0!important;padding:0!important}
}
@media(prefers-reduced-motion:reduce){body[data-tattoo-atelier][data-studio-system] .tp-options>a{transition:none!important;translate:none!important}}
/* Mobile keeps the paper-and-ink reading experience of the desktop page. */
@media(max-width:760px){
body[data-tattoo-atelier][data-studio-system]{--tt-edge:6.5%}
body[data-tattoo-atelier][data-studio-system] .tp-text-opening{padding-bottom:36px!important}
body[data-tattoo-atelier][data-studio-system] .tp-opening-heading h1{font-size:var(--programme-mobile-title-size,40px)!important;line-height:1.08!important}
body[data-tattoo-atelier][data-studio-system] .tp-opening-statement{margin-bottom:20px}
body[data-tattoo-atelier][data-studio-system] .tp-opening-copy p{margin-bottom:18px;line-height:1.7}
body[data-tattoo-atelier][data-studio-system] .tp-heading{margin-bottom:24px}
body[data-tattoo-atelier][data-studio-system] .tp-options{gap:18px!important}
body[data-tattoo-atelier][data-studio-system] .tp-options>a:nth-child(n){background:#ebe6dd!important;color:var(--atelier-ink)!important;border-radius:14px!important;padding:22px!important;gap:5px 12px!important}
body[data-tattoo-atelier][data-studio-system] .tp-options>a:nth-child(n) .tp-course-kicker{color:var(--atelier-blue)!important;font-size:12px}
body[data-tattoo-atelier][data-studio-system] .tp-options h2{font-size:29px!important;line-height:1.15!important;margin:10px 0!important}
body[data-tattoo-atelier][data-studio-system] .tp-options .tp-course-fit{line-height:1.65!important;margin-bottom:16px!important}
body[data-tattoo-atelier][data-studio-system] .tp-options strong{font-size:25px!important}
body[data-tattoo-atelier][data-studio-system] .tp-options>a:nth-child(n) .tp-course-action{background:var(--atelier-blue)!important;color:white!important;justify-content:space-between;min-height:48px;width:100%;box-sizing:border-box;font-size:14px}
body[data-tattoo-atelier][data-studio-system] .tp-week{padding-top:40px!important;padding-bottom:12px!important}
body[data-tattoo-atelier][data-studio-system] .tp-week-notes article{padding-bottom:24px}
body[data-tattoo-atelier][data-studio-system] .reading-room{padding-top:36px!important}
body[data-tattoo-atelier][data-studio-system] .rr-navigation:not([open]){padding:0!important;background:transparent!important;min-height:0!important}
body[data-tattoo-atelier][data-studio-system] .rr-sidebar:not(:has(.rr-navigation[open])){border:0!important}
body[data-tattoo-atelier][data-studio-system] #prospectus .rr-navigation[open],body[data-tattoo-atelier][data-studio-system] .rr-navigation[open]>summary{background:var(--atelier-paper)!important;color:var(--atelier-ink)!important}
body[data-tattoo-atelier][data-studio-system] .rr-navigation summary,body[data-tattoo-atelier][data-studio-system] .reading-index a{color:var(--atelier-ink)!important}
body[data-tattoo-atelier][data-studio-system] .reading-index a[aria-current]{background:#ebe6dd!important;color:var(--atelier-blue)!important}
body[data-tattoo-atelier][data-studio-system] .reading-index a:focus-visible{outline-color:var(--atelier-blue)}
body[data-tattoo-atelier][data-studio-system] .reading-chapter{margin-bottom:32px!important;padding-bottom:32px!important}
body[data-tattoo-atelier][data-studio-system] .reading-chapter .tt-chapter-heading{margin-bottom:20px}
body[data-tattoo-atelier][data-studio-system] .reading-chapter .tt-lead{font-size:31px!important;line-height:1.18!important;max-width:100%}
body[data-tattoo-atelier][data-studio-system] .tt-chapter-content>p{line-height:1.75!important;margin-bottom:20px!important}
body[data-tattoo-atelier][data-studio-system] .reading-chapter .tt-structure{background:transparent!important;padding:20px 0!important;margin:4px 0 16px!important}
body[data-tattoo-atelier][data-studio-system] .tt-facts{gap:8px!important}
body[data-tattoo-atelier][data-studio-system] .tt-fact{padding:14px!important;border-radius:8px}
body[data-tattoo-atelier][data-studio-system] .tt-fact>span{font-size:15px!important}
body[data-tattoo-atelier][data-studio-system] .tt-facts-note{padding-top:20px!important}
body[data-tattoo-atelier][data-studio-system] .tt-topic summary{font-size:17px!important;line-height:1.45!important;gap:10px!important}
body[data-tattoo-atelier][data-studio-system] .tt-topic-copy{line-height:1.75!important;padding-inline:0!important}
body[data-tattoo-atelier][data-studio-system] .tt-outcome{border:0!important;padding-top:20px!important;margin-top:12px!important}
body[data-tattoo-atelier][data-studio-system] .mobile-top-context button{background:#ebe6dd;border-radius:999px;padding-inline:18px}
}
.tattoo-reader-controls,.tattoo-reader-next,#tattoo-top-course{display:none}
@media(max-width:760px){
/* A single open document, with generous margins instead of stacked panels. */
body[data-tattoo-atelier][data-studio-system]{--tt-edge:8%}
body[data-tattoo-atelier][data-studio-system] .tp-text-opening{padding-bottom:56px!important}
body[data-tattoo-atelier][data-studio-system] .tp-opening-intro{padding-top:30px}
body[data-tattoo-atelier][data-studio-system] .tp-opening-statement{margin-bottom:28px}
body[data-tattoo-atelier][data-studio-system] .tp-opening-copy p{line-height:1.85;margin-bottom:26px}
body[data-tattoo-atelier][data-studio-system] .tp-overview{padding-bottom:40px!important}
body[data-tattoo-atelier][data-studio-system] .tp-heading{margin-bottom:34px}
body[data-tattoo-atelier][data-studio-system] .tp-options{gap:36px!important}
body[data-tattoo-atelier][data-studio-system] .tp-options>a:nth-child(n){background:transparent!important;padding:0 0 28px!important;border-radius:0!important;border-bottom:1px solid var(--atelier-line)!important}
body[data-tattoo-atelier][data-studio-system] .tp-options h2{font-size:32px!important;margin:16px 0!important}
body[data-tattoo-atelier][data-studio-system] .tp-course-action{margin-top:22px}
body[data-tattoo-atelier][data-studio-system] .tp-week{padding-block:40px!important}
body[data-tattoo-atelier][data-studio-system] .tp-week-notes{margin-top:40px}
body[data-tattoo-atelier][data-studio-system] .reading-room{padding-top:48px!important;padding-bottom:64px!important}
body[data-tattoo-atelier][data-studio-system] .rr-heading h2{font-size:34px!important;line-height:1.18!important;margin-top:14px!important}
body[data-tattoo-atelier][data-studio-system] .tattoo-reader-controls{display:grid;gap:12px;margin:32px 0 40px}
.tattoo-reader-controls label{font-size:13px;color:var(--atelier-blue)}
.tattoo-reader-controls select{width:100%;min-height:54px;border:0;border-bottom:1px solid var(--atelier-line);border-radius:0;background:transparent;color:var(--atelier-ink);font:inherit;font-size:22px;padding:8px 30px 8px 0}
body[data-tattoo-atelier][data-studio-system] .mobile-top-context{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:12px;padding-inline:8%}
body[data-tattoo-atelier][data-studio-system] #tattoo-top-course{display:block;background:transparent;border-radius:0;padding-left:0;font-size:16px;min-width:0}
body[data-tattoo-atelier][data-studio-system] .mobile-top-context button{width:auto;min-width:100px;display:flex;gap:16px;align-items:center;justify-content:space-between}
body[data-tattoo-atelier][data-studio-system] .reading-chapter[data-mobile-current=false],body[data-tattoo-atelier][data-studio-system] .reading-index a[data-mobile-current=false]{display:none!important}
body[data-tattoo-atelier][data-studio-system] .reading-chapter{border:0!important;margin:0!important;padding:0!important;scroll-margin-top:164px!important}
body[data-tattoo-atelier][data-studio-system] .reading-chapter .tt-chapter{padding:32px 0!important}
body[data-tattoo-atelier][data-studio-system] .reading-chapter .tt-chapter-heading{margin-bottom:30px}
body[data-tattoo-atelier][data-studio-system] .reading-chapter .tt-lead{font-size:34px!important;line-height:1.22!important}
body[data-tattoo-atelier][data-studio-system] .tt-chapter-content>p,body[data-tattoo-atelier][data-studio-system] .tt-topic-copy{font-size:17px!important;line-height:1.85!important;margin-bottom:28px!important}
body[data-tattoo-atelier][data-studio-system] .tt-facts{gap:24px 18px!important;margin-block:28px!important}
body[data-tattoo-atelier][data-studio-system] .tt-fact{background:transparent!important;padding:0!important;border-radius:0!important}
body[data-tattoo-atelier][data-studio-system] .tt-fact>span{font-size:18px!important;line-height:1.5!important}
body[data-tattoo-atelier][data-studio-system] .tt-topic summary{padding-block:24px!important;font-size:19px!important;line-height:1.5!important}
body[data-tattoo-atelier][data-studio-system] .tt-topic-copy{padding-top:8px!important}
body[data-tattoo-atelier][data-studio-system] .rr-toolbar{justify-content:flex-start;margin-bottom:24px}
body[data-tattoo-atelier][data-studio-system] .tattoo-reader-next{display:flex;justify-content:space-between;width:100%;margin-top:36px;min-height:54px;padding:16px 22px;border:0;border-radius:999px;background:var(--atelier-blue);color:white;font-size:15px;cursor:pointer}
body[data-tattoo-atelier][data-studio-system] :is(.tattoo-reader-next,.tattoo-reader-controls select,#tattoo-top-course):focus-visible{outline:2px solid var(--atelier-blue);outline-offset:4px}
}
.tattoo-chapter-index{display:none}
@media(max-width:760px){
body[data-tattoo-atelier][data-studio-system] .mobile-top-context{display:block}
body[data-tattoo-atelier][data-studio-system] .mobile-top-context button{width:100%;background:transparent;border-radius:0;padding-inline:0;border-bottom:1px solid var(--atelier-line)}
body[data-tattoo-atelier][data-studio-system] .tattoo-reader-controls{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0;margin:32px 0 0;scroll-margin-top:154px;border-bottom:1px solid var(--atelier-line)}
.tattoo-reader-controls button{font:inherit;font-size:16px;min-height:60px;padding:16px 2px;border:0;border-bottom:3px solid transparent;background:transparent;color:var(--atelier-ink);cursor:pointer}
.tattoo-reader-controls button[aria-pressed=true]{border-bottom-color:var(--atelier-blue);color:var(--atelier-blue);font-weight:600}
.tattoo-reader-controls button:focus-visible{outline:2px solid var(--atelier-blue);outline-offset:-3px}
body[data-tattoo-atelier][data-studio-system] .tattoo-chapter-index{display:grid;grid-template-columns:1fr 1fr;gap:8px 20px;padding:24px 0 32px;margin-bottom:18px}
.tattoo-chapter-index a{display:flex;align-items:center;gap:10px;min-height:44px;font-size:14px;line-height:1.5;color:var(--atelier-ink);text-decoration:none}
.tattoo-chapter-index a:before{content:'↓';color:var(--atelier-blue);flex-shrink:0}
.tattoo-chapter-index a:focus-visible{outline:2px solid var(--atelier-blue);outline-offset:3px}
body[data-tattoo-atelier][data-studio-system] .rr-toolbar{margin-bottom:12px;justify-content:flex-end}
body[data-tattoo-atelier][data-studio-system] .rr-expand{background:transparent!important;padding:10px 0!important;color:var(--atelier-blue)!important;font-size:13px!important;text-decoration:underline;text-underline-offset:4px}
body[data-tattoo-atelier][data-studio-system] .tt-chapter-number{margin-bottom:14px!important}
body[data-tattoo-atelier][data-studio-system] .tt-eyebrow{font-size:13px!important;line-height:1.5!important;margin-bottom:18px!important;color:var(--atelier-blue)!important}
body[data-tattoo-atelier][data-studio-system] .reading-chapter .tt-chapter:first-child{padding-top:8px!important}
}
@media(max-width:760px){
/* The comparison is an index; the prospectus is the space to read. */
body[data-tattoo-atelier][data-studio-system] .tp-options{display:block!important}
.tattoo-compare-course{border-bottom:1px solid var(--atelier-line);padding:0}
.tattoo-compare-course>summary{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:12px 24px;align-items:center;padding:26px 0;list-style:none;cursor:pointer;color:var(--atelier-ink)}
.tattoo-compare-course>summary::-webkit-details-marker{display:none}
.tattoo-compare-course>summary>span{font-size:23px;line-height:1.3;max-width:20ch}
.tattoo-compare-course>summary>small{grid-row:2;font-size:14px;color:var(--atelier-blue)}
.tattoo-compare-course>summary:after{content:'+';grid-column:2;grid-row:1/3;font-size:24px;font-weight:300;color:var(--atelier-blue)}
.tattoo-compare-course[open]>summary:after{content:'−'}
.tattoo-compare-course>summary:focus-visible{outline:2px solid var(--atelier-blue);outline-offset:4px}
body[data-tattoo-atelier][data-studio-system] .tp-options .tattoo-compare-course>a{display:flex!important;flex-direction:column!important;padding:0 0 28px!important;border:0!important;background:transparent!important;color:var(--atelier-ink)!important;text-decoration:none}
body[data-tattoo-atelier][data-studio-system] .tattoo-compare-course>a h2,body[data-tattoo-atelier][data-studio-system] .tattoo-compare-course>a strong{display:none!important}
body[data-tattoo-atelier][data-studio-system] .tattoo-compare-course>a p{min-height:0!important;text-align:left!important;color:var(--atelier-ink)!important}
body[data-tattoo-atelier][data-studio-system] .tattoo-compare-course .tp-course-kicker{margin-bottom:16px}
body[data-tattoo-atelier][data-studio-system] .tp-options .tattoo-compare-course .tp-course-action{color:white!important;background:var(--atelier-blue)!important;width:100%;box-sizing:border-box}
body[data-tattoo-atelier][data-studio-system] .reading-room{overflow:visible!important}
body[data-tattoo-atelier][data-studio-system] .tattoo-reader-controls{position:sticky;top:80px;z-index:35;background:var(--atelier-paper);margin-top:32px;padding-top:4px}
body[data-tattoo-reading=true] .mobile-top-context{display:none!important}
body[data-tattoo-atelier][data-studio-system] .tattoo-chapter-index{scroll-margin-top:154px;padding-block:22px 38px;margin-bottom:12px}
body[data-tattoo-atelier][data-studio-system] .reading-chapter .tt-chapter-number{display:none!important}
body[data-tattoo-atelier][data-studio-system] .reading-chapter .tt-intro>.tt-chapter-heading>.tt-eyebrow{margin-bottom:18px!important}
body[data-tattoo-atelier][data-studio-system] .tt-structure .tt-eyebrow,body[data-tattoo-atelier][data-studio-system] .tt-curriculum .tt-eyebrow{font-size:24px!important;color:var(--atelier-ink)!important;letter-spacing:0!important;text-transform:none!important}
body[data-tattoo-atelier][data-studio-system] .tt-structure{margin-block:24px 36px!important}
body[data-tattoo-atelier][data-studio-system] .tt-facts{grid-template-columns:1fr 1fr!important;gap:28px 20px!important}
body[data-tattoo-atelier][data-studio-system] .tt-facts .tt-fact:first-child>span{font-size:28px!important;color:var(--atelier-blue)}
body[data-tattoo-atelier][data-studio-system] .tt-facts-note{margin-top:32px!important;padding-top:0!important}
body[data-tattoo-atelier][data-studio-system] .tt-curriculum{padding-top:36px!important}
body[data-tattoo-atelier][data-studio-system] .tt-outcome{margin-top:40px!important;padding:0 0 0 22px!important;border-left:2px solid var(--atelier-blue)!important}
body[data-tattoo-atelier][data-studio-system] .tt-outcome p{font-size:17px!important;line-height:1.85!important}
}
@media(max-width:760px){body[data-tattoo-atelier][data-studio-system] .tp-options .tattoo-compare-course .tp-course-fit{min-height:0!important;margin:0 0 20px!important}body[data-tattoo-atelier][data-studio-system] .tp-options .tattoo-compare-course p:not(.tp-course-fit){text-align:left!important;margin:4px 0!important}}
body[data-tattoo-atelier] .tattoo-duration{margin:24px 0 32px;display:grid;gap:0}
body[data-tattoo-atelier] .tattoo-duration>div{display:grid;grid-template-columns:1fr 1fr;gap:24px;padding:16px 0;border-bottom:1px solid var(--atelier-line);align-items:baseline}
body[data-tattoo-atelier] .tattoo-duration dt{font-size:14px;line-height:1.6;color:var(--atelier-ink)}
body[data-tattoo-atelier] .tattoo-duration dd{margin:0;font-size:18px;line-height:1.5;color:var(--atelier-ink)}
body[data-tattoo-atelier] .tattoo-duration>div:first-child dd{font-size:28px;color:var(--atelier-blue)}
body[data-tattoo-atelier] .tattoo-duration-note{font-size:16px!important;line-height:1.8!important}
body[data-tattoo-atelier] .tp-week-diagram strong small{display:block;font-size:13px;font-weight:400;letter-spacing:0;line-height:1.5;margin-top:6px}
@media(max-width:760px){
.tattoo-compare-course>summary>small{grid-column:1/-1;grid-row:auto;line-height:1.6}
.tattoo-compare-course>summary:after{grid-row:1;align-self:center}
.tattoo-compare-course>summary>.tattoo-compare-totals{font-size:13px;color:var(--atelier-ink)}
body[data-tattoo-atelier][data-studio-system] .tattoo-duration>div{grid-template-columns:1fr 1fr;gap:18px;padding:18px 0}
body[data-tattoo-atelier][data-studio-system] .tattoo-duration dt{font-size:14px}
body[data-tattoo-atelier][data-studio-system] .tattoo-duration dd{font-size:17px}
body[data-tattoo-atelier][data-studio-system] .tattoo-duration>div:first-child dd{font-size:25px}
}

/* Match the light additional-programme reading experience. */
body[data-tattoo-atelier][data-studio-system] .tp-options>a:nth-child(n){color:var(--atelier-ink)!important}
body[data-tattoo-atelier][data-studio-system] .tp-options>a:nth-child(n) :is(h2,p,strong,.tp-course-kicker){color:var(--atelier-ink)!important}
body[data-tattoo-atelier][data-studio-system] .tp-options>a:nth-child(n) .tp-course-action{background:var(--atelier-blue)!important;color:white!important}
/* Same paper sidebar and sage selection as Fine Art. */
body[data-tattoo-atelier][data-studio-system] #prospectus .rr-navigation,
body[data-tattoo-atelier][data-studio-system] #prospectus .rr-navigation[open],
body[data-tattoo-atelier][data-studio-system] #prospectus .rr-navigation>summary{background:var(--atelier-paper)!important;color:var(--atelier-ink)!important;border-radius:0!important}
body[data-tattoo-atelier][data-studio-system] #prospectus .reading-index a{color:var(--atelier-ink)!important;border-radius:0!important;border-left:2px solid transparent!important}
body[data-tattoo-atelier][data-studio-system] #prospectus .reading-index a[aria-current]{background:var(--atelier-sage)!important;color:var(--atelier-blue)!important;border-left-color:var(--atelier-blue)!important}
body[data-tattoo-atelier][data-studio-system] #prospectus .reading-index a:focus-visible{outline:2px solid var(--atelier-blue);outline-offset:-2px}

.ae-reader-tabs,.ae-reader-subtopics,.ae-reader-next{display:none}
.wl-duration-summary{margin:28px 0;display:grid;grid-template-columns:1fr 1fr;gap:28px}
.wl-duration-summary>div{min-width:0}
.wl-duration-summary dt{font-size:14px;line-height:1.6;margin-bottom:10px}
.wl-duration-summary dd{margin:0;font-size:26px;line-height:1.4;color:var(--atelier-blue)}
.wl-duration-summary dd small{display:block;font-size:14px;line-height:1.7;margin-top:12px;color:var(--atelier-ink)}
@media(max-width:760px){
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system]{--tt-edge:8%}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] :is(.ae-opening,.wl-opening){padding-inline:8%!important;padding-bottom:48px!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] :is(.ae-title,.wl-title) h1{font-size:38px!important;line-height:1.14!important;margin-bottom:28px!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] :is(.ae-thesis,.wl-statement){font-size:25px!important;line-height:1.4!important;margin-bottom:28px!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] :is(.ae-thesis,.wl-statement) p{font-size:inherit!important;line-height:inherit!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] :is(.ae-intro,.wl-copy) p{font-size:17px!important;line-height:1.85!important;margin-bottom:26px!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .rr-cover-link{border:0!important;background:var(--atelier-blue)!important;color:white!important;border-radius:999px!important;padding:15px 22px!important;min-height:50px!important;font-size:15px!important;gap:12px}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .reading-room{padding:40px 8% 56px!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .rr-heading h2{font-size:32px!important;line-height:1.2!important;margin-top:16px!important}
.ae-reader-tabs{display:grid;grid-template-columns:1fr 1fr;gap:0 18px;margin:30px 0;scroll-margin-top:150px}
.ae-reader-tabs button{display:block;padding:16px 0;min-height:60px;text-align:left;font:inherit;font-size:15px;line-height:1.5;background:transparent;color:var(--atelier-ink);border:0;border-bottom:2px solid var(--atelier-line);cursor:pointer}
.ae-reader-tabs button[aria-pressed=true]{color:var(--atelier-blue);border-bottom-color:var(--atelier-blue);font-weight:600}
.ae-reader-subtopics{display:grid;gap:8px;margin-bottom:32px}
.ae-reader-subtopics:empty{display:none}
.ae-reader-subtopics a{display:flex;align-items:center;gap:12px;min-height:44px;font-size:15px;line-height:1.5;color:var(--atelier-ink);text-decoration:none}
.ae-reader-subtopics a:before{content:'↓';color:var(--atelier-blue)}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .reading-chapter[data-additional-current=false]{display:none!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .reading-chapter{border:0!important;margin-bottom:24px!important;padding-block:12px 32px!important;scroll-margin-top:155px!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .rr-chapter-number{display:none!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .rr-document :is(h2,.h2){font-size:31px!important;line-height:1.25!important;margin:18px 0 30px!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .rr-document :is(p,li){font-size:17px!important;line-height:1.85!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .rr-document p{margin-bottom:26px!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] :is(.fa-reading-group,.wl-format-group){scroll-margin-top:155px;padding-top:24px!important;margin-bottom:36px!important;background:transparent!important;border:0!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .fa-reading-group>header{display:block!important;margin-bottom:24px!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .fa-reading-group>header>span{display:none}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .fa-reading-group>header h3{font-size:26px!important;line-height:1.3!important;margin:0 0 10px!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .fa-reading-group>header p{font-size:13px!important;color:var(--atelier-blue)!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .rr-fact{background:transparent!important;border:0!important;border-bottom:1px solid var(--atelier-line)!important;border-radius:0!important;padding:20px 0!important;margin:0!important;gap:16px!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .rr-fact span{font-size:17px!important;line-height:1.7!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .rr-facts{display:block!important;margin-block:24px!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .rr-fact b{font-size:12px!important;color:var(--atelier-blue)!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .rr-document details{padding:22px 0!important;background:transparent!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .rr-document summary{font-size:19px!important;line-height:1.5!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .rr-navigation{background:var(--atelier-paper)!important;color:var(--atelier-ink)!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .rr-sidebar:not(:has(.rr-navigation[open])){padding:0!important;margin:0!important;border:0!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .rr-navigation:not([open]){padding:0!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .ae-project{background:transparent!important;padding-inline:0!important}
.ae-reader-next{display:block;width:100%;min-height:52px;padding:16px 22px;border:0;border-radius:999px;background:var(--atelier-blue);color:white;font-size:15px;line-height:1.5;text-align:left;cursor:pointer}
:is(.ae-reader-tabs button,.ae-reader-subtopics a,.ae-reader-next):focus-visible{outline:2px solid var(--atelier-blue);outline-offset:4px}
.wl-duration-summary{grid-template-columns:1fr;gap:28px;padding:24px 0}
.wl-duration-summary>div{padding-bottom:20px;border-bottom:1px solid var(--atelier-line)}
}
.ae-reader-status,.ae-reader-previous{display:none}
@media(max-width:760px){
.ae-reader-tabs{gap:8px 12px;margin:28px 0 24px}
.ae-reader-tabs button{padding:14px 12px;border:0;border-radius:9px;min-height:50px;background:#ebe6dd;font-size:15px;line-height:1.4}
.ae-reader-tabs button[aria-pressed=true]{background:var(--atelier-blue);color:white;font-weight:500}
.ae-reader-status{display:block!important;font-size:12px!important;color:var(--atelier-blue)!important;line-height:1.5!important;margin:12px 0 22px!important;letter-spacing:.025em}
.ae-reader-subtopics{gap:0;margin-bottom:24px}
.ae-reader-subtopics a{padding:10px 0;min-height:44px;font-size:14px;line-height:1.5}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .reading-chapter>h2{margin-top:0!important;font-size:30px!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .fa-reading-group>header{padding:20px 0 12px!important;margin-bottom:12px!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .fa-reading-group>header p{margin:8px 0!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .fa-reading-group .tt-topic{padding:0!important;margin:0!important;background:transparent!important;border-radius:0!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .fa-reading-group .tt-topic summary{display:flex;align-items:baseline;gap:12px;padding:22px 0!important;font-size:18px!important;line-height:1.55!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .fa-reading-group .tt-topic .at-index{font-size:11px;min-width:20px;color:var(--atelier-blue)}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .fa-reading-group .tt-topic-copy{padding:0 0 24px!important;margin:0!important;line-height:1.85!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .rr-document .fa-reading-group h3{font-size:25px!important;line-height:1.3!important}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .reading-room[data-additional-last=false] .ae-endnote{display:none!important}
.ae-reader-previous{display:block;padding:12px 0;min-height:48px;background:transparent;border:0;color:var(--atelier-blue);font-size:15px;margin:8px 0 16px;cursor:pointer}
.ae-reader-previous:disabled{display:none}
.ae-reader-previous:focus-visible{outline:2px solid var(--atelier-blue);outline-offset:4px}
body:is([data-additional-atelier],[data-weekend-reading])[data-studio-system] .ae-endnote{padding:28px 0!important;margin-top:20px!important}
}
.mp-deliverables{display:none}
@media(max-width:760px){
body[data-additional-atelier=media-production] .ae-reader-tabs{grid-template-columns:repeat(3,minmax(0,1fr));gap:8px}
body[data-additional-atelier=media-production] .ae-reader-tabs button{font-size:14px;padding:14px 8px;text-align:center;min-height:58px}
body[data-additional-atelier=media-production] .ae-reader-subtopics{gap:12px;margin-top:28px;margin-bottom:32px}
body[data-additional-atelier=media-production] .ae-reader-subtopics a{display:grid;grid-template-columns:26px 1fr;gap:4px 12px;padding:12px 0;font-size:16px;line-height:1.5}
body[data-additional-atelier=media-production] .ae-reader-subtopics a:before{display:none}
.mp-nav-number{grid-row:1/3;font-size:12px;color:var(--atelier-blue);padding-top:3px}
body[data-additional-atelier=media-production] .ae-reader-subtopics a small{grid-column:2;font-size:12px;color:var(--atelier-blue)}
body[data-additional-atelier=media-production][data-studio-system] .fa-reading-group{margin-bottom:48px!important}
body[data-additional-atelier=media-production][data-studio-system] .fa-reading-group .rr-fact{display:grid;grid-template-columns:24px minmax(0,1fr);gap:12px!important;padding-block:20px!important;border-bottom:0!important}
body[data-additional-atelier=media-production][data-studio-system] .fa-reading-group .rr-fact b{font-size:11px!important;padding-top:5px}
body[data-additional-atelier=media-production][data-studio-system] .fa-reading-group .rr-fact span{font-size:18px!important;line-height:1.65!important}
body[data-additional-atelier=media-production] .mp-deliverables{display:grid;gap:0;margin:28px 0 36px}
.mp-deliverables>span{display:grid;grid-template-columns:26px 1fr;gap:12px;padding:20px 0;border-bottom:1px solid var(--atelier-line);font-size:23px;line-height:1.4;color:var(--atelier-ink)}
.mp-deliverables small{font-size:12px;color:var(--atelier-blue);padding-top:6px}
body[data-additional-atelier=media-production][data-studio-system] .ae-audience .rr-fact{display:grid;grid-template-columns:24px 1fr;gap:12px!important;border-bottom:0!important;padding-block:18px!important}
}

@media(max-width:760px){
body[data-additional-atelier=brand-growth] .ae-reader-tabs{grid-template-columns:repeat(3,minmax(0,1fr));gap:8px}
body[data-additional-atelier=brand-growth] .ae-reader-tabs button{font-size:14px;padding:14px 8px;text-align:center;min-height:58px}
body[data-additional-atelier=brand-growth] .ae-reader-subtopics{gap:12px;margin-top:28px;margin-bottom:32px}
body[data-additional-atelier=brand-growth] .ae-reader-subtopics a{display:grid;grid-template-columns:26px 1fr;gap:4px 12px;padding:12px 0;font-size:16px;line-height:1.5}
body[data-additional-atelier=brand-growth] .ae-reader-subtopics a:before{display:none}
.mp-nav-number{grid-row:1/3;font-size:12px;color:var(--atelier-blue);padding-top:3px}
body[data-additional-atelier=brand-growth] .ae-reader-subtopics a small{grid-column:2;font-size:12px;color:var(--atelier-blue)}
body[data-additional-atelier=brand-growth][data-studio-system] .fa-reading-group{margin-bottom:48px!important}
body[data-additional-atelier=brand-growth][data-studio-system] .fa-reading-group .rr-fact{display:grid;grid-template-columns:24px minmax(0,1fr);gap:12px!important;padding-block:20px!important;border-bottom:0!important}
body[data-additional-atelier=brand-growth][data-studio-system] .fa-reading-group .rr-fact b{font-size:11px!important;padding-top:5px}
body[data-additional-atelier=brand-growth][data-studio-system] .fa-reading-group .rr-fact span{font-size:18px!important;line-height:1.65!important}
body[data-additional-atelier=brand-growth] .mp-deliverables{display:grid;gap:0;margin:28px 0 36px}
.mp-deliverables>span{display:grid;grid-template-columns:26px 1fr;gap:12px;padding:20px 0;border-bottom:1px solid var(--atelier-line);font-size:23px;line-height:1.4;color:var(--atelier-ink)}
.mp-deliverables small{font-size:12px;color:var(--atelier-blue);padding-top:6px}
body[data-additional-atelier=brand-growth][data-studio-system] .ae-audience .rr-fact{display:grid;grid-template-columns:24px 1fr;gap:12px!important;border-bottom:0!important;padding-block:18px!important}
}
@media(max-width:760px){
body[data-additional-atelier=brand-growth][data-studio-system] .ae-project .rr-facts{counter-reset:project-output;margin:30px 0!important}
body[data-additional-atelier=brand-growth][data-studio-system] .ae-project .rr-fact{display:grid;grid-template-columns:26px minmax(0,1fr);gap:14px!important;align-items:baseline;padding:22px 0!important;border-bottom:1px solid var(--atelier-line)!important}
body[data-additional-atelier=brand-growth][data-studio-system] .ae-project .rr-fact span{font-size:20px!important;line-height:1.55!important}
body[data-additional-atelier=brand-growth][data-studio-system] .ae-project .rr-fact b{font-size:12px!important}
body[data-additional-atelier=brand-growth][data-studio-system] .ae-project .rr-fact:last-child{margin-top:18px!important;padding:22px!important;background:#ebe6dd!important;border:0!important;border-radius:12px!important}
body[data-additional-atelier=brand-growth][data-studio-system] .ae-project .rr-fact:last-child span{color:var(--atelier-blue)!important}
}
.vp-course-role{display:none}
@media(max-width:760px){
body[data-additional-atelier=visibility-package] .ae-reader-tabs{grid-template-columns:1fr 1fr;gap:12px}
body[data-additional-atelier=visibility-package] .ae-reader-tabs button{text-align:center;min-height:54px}
body[data-additional-atelier=visibility-package][data-studio-system] #visibility-area-1 .rr-fact{display:block!important;padding:24px 0!important;border-bottom:1px solid var(--atelier-line)!important}
body[data-additional-atelier=visibility-package][data-studio-system] #visibility-area-1 .rr-fact>b{display:none}
body[data-additional-atelier=visibility-package][data-studio-system] .vp-course-link{display:grid!important;grid-template-columns:minmax(0,1fr) 28px;gap:12px 18px;align-items:start;min-height:70px;color:var(--atelier-ink)}
body[data-additional-atelier=visibility-package][data-studio-system] .vp-course-link .vp-course-name{grid-column:1;grid-row:1;font-size:23px!important;line-height:1.4!important}
body[data-additional-atelier=visibility-package][data-studio-system] .vp-course-link .vp-course-role{display:block;grid-column:1;grid-row:2;font-size:14px;line-height:1.6;color:var(--atelier-blue)}
body[data-additional-atelier=visibility-package][data-studio-system] .vp-course-link>span[aria-hidden]{grid-column:2;grid-row:1;font-size:24px!important;color:var(--atelier-blue)}
body[data-additional-atelier=visibility-package][data-studio-system] #visibility-area-2{margin-top:40px!important}
body[data-additional-atelier=visibility-package][data-studio-system] #visibility-area-2 .rr-fact{display:grid!important;grid-template-columns:24px minmax(0,1fr);gap:14px!important;border-bottom:0!important;padding:20px 0!important}
body[data-additional-atelier=visibility-package][data-studio-system] #visibility-area-2 .rr-fact span{font-size:18px!important;line-height:1.7!important}
body[data-additional-atelier=visibility-package][data-studio-system] #visibility-area-2 .rr-fact:last-child{padding:22px!important;margin-top:18px!important;background:#ebe6dd!important;border-radius:12px!important}
body[data-additional-atelier=visibility-package][data-studio-system] #study-3>div{padding-left:20px;border-left:2px solid var(--atelier-blue)}
}
@media(min-width:761px){body[data-additional-atelier=visibility-package] .vp-course-link>.vp-course-name{font:inherit!important}}
.wl-level-facts,.wl-stage-note{display:none}
@media(max-width:760px){
body[data-weekend-reading] .ae-reader-tabs{grid-template-columns:1fr 1fr;gap:10px}
body[data-weekend-reading] .ae-reader-tabs button:first-child{grid-column:1/-1}
body[data-weekend-reading] .ae-reader-tabs button{min-height:52px;font-size:15px;text-align:center}
body[data-weekend-reading] .ae-reader-subtopics{display:flex;flex-direction:column;gap:0;margin:16px 0 26px}
body[data-weekend-reading][data-studio-system] .wl-format-group{padding:26px 0!important;margin:0 0 24px!important}
body[data-weekend-reading][data-studio-system] .wl-format-group h3{font-size:26px!important;line-height:1.3!important;margin-bottom:22px!important}
body[data-weekend-reading][data-studio-system] .wl-format-items{display:block!important}
body[data-weekend-reading][data-studio-system] .wl-format-items .rr-fact{display:block!important;border:0!important;padding:12px 0!important}
body[data-weekend-reading][data-studio-system] .wl-format-items .rr-fact b{display:none!important}
body[data-weekend-reading][data-studio-system] .wl-format-items .rr-fact span{font-size:18px!important;line-height:1.7!important}
body[data-weekend-reading][data-studio-system] #weekend-format-2{padding:24px!important;background:#ebe6dd!important;border-radius:12px!important}
body[data-weekend-reading][data-studio-system] .wl-duration-summary{margin:16px 0 28px;padding-top:8px}
body[data-weekend-reading][data-studio-system] .wl-duration-summary dd{font-size:32px}
body[data-weekend-reading][data-studio-system] .wl-duration-summary dt{font-size:15px;line-height:1.6}
body[data-weekend-reading][data-studio-system] .wl-level-facts{display:grid;grid-template-columns:1fr 1fr;gap:22px 20px;margin:28px 0 34px}
.wl-level-facts>div:first-child{grid-column:1/-1}
.wl-level-facts dt{font-size:13px;color:var(--atelier-ink);line-height:1.5;margin-bottom:8px}
.wl-level-facts dd{font-size:27px;color:var(--atelier-blue);margin:0;line-height:1.3}
.wl-level-facts>div:first-child dd{font-size:34px}
body[data-weekend-reading][data-studio-system] .wl-stage-note{display:block;font-size:15px!important;line-height:1.7!important;margin-bottom:32px!important;color:var(--atelier-blue)!important}
body[data-weekend-reading][data-studio-system] .wl-complete .rr-fact{grid-template-columns:24px minmax(0,1fr)!important;border-bottom:0!important;gap:12px!important;padding:18px 0!important}
body[data-weekend-reading][data-studio-system] #study-5>div{padding-left:20px;border-left:2px solid var(--atelier-blue)}
}

.mobile-legal-index,.mobile-gallery-filter{display:none}
@media(max-width:760px){
html{scroll-padding-top:150px}
body[data-atelier-page] :is(input,textarea,select){font-size:16px!important;max-width:100%;box-sizing:border-box}
body[data-atelier-page] .mobile-top-context :is(button,select){border:0!important;border-bottom:1px solid var(--atelier-line)!important;background:transparent!important;border-radius:0!important;padding-inline:0!important}
body[data-atelier-page] .imt-navigation{max-height:calc(100dvh - 24px)!important;overscroll-behavior:contain}
body[data-atelier-page] .home-menu-shell{padding-inline:22px!important}
body[data-atelier-page] .home-menu-close{min-width:44px;min-height:44px}
body[data-atelier-page] .footer__meta-copyright{width:auto!important;flex:auto!important;text-align:left!important}
body[data-atelier-page] .atelier-closing :is(.k-btn,.btn){min-height:48px!important}
body[data-atelier-page] .atelier-closing .k-btn,body[data-atelier-page] .atelier-closing .btn:not(.btn--outline){background:var(--atelier-blue)!important;color:white!important;border:0!important;border-radius:999px!important;padding:15px 24px!important}
body[data-mobile-reader] .reading-room{padding:36px 8% 56px!important}
body[data-mobile-reader] .rr-heading{margin-bottom:24px!important}
body[data-mobile-reader] .rr-heading h2{font-size:32px!important;line-height:1.2!important}
body[data-mobile-reader] .reading-chapter[data-additional-current=false]{display:none!important}
body[data-mobile-reader] .reading-chapter{padding:12px 0 30px!important;margin:0 0 28px!important;border:0!important;scroll-margin-top:155px!important}
body[data-mobile-reader] .rr-chapter-number{display:none!important}
body[data-mobile-reader] .rr-sidebar:not(:has(.rr-navigation[open])){padding:0!important;margin:0!important;border:0!important}
body[data-mobile-reader] .rr-navigation:not([open]){padding:0!important}
body[data-mobile-reader] .rr-document :is(h2,.h2,.h3){font-size:30px!important;line-height:1.25!important;margin:18px 0 28px!important}
body[data-mobile-reader] .rr-document :is(p,li){font-size:17px!important;line-height:1.85!important;overflow-wrap:break-word}
body[data-mobile-reader] .rr-document :is(p,ul){margin-bottom:24px!important}
body[data-mobile-reader] .rr-facts:not(.rr-metrics){display:block!important}
body[data-mobile-reader] .rr-fact{padding:18px 0!important;border:0!important;border-bottom:1px solid var(--atelier-line)!important;background:transparent!important;min-width:0}
body[data-mobile-reader] .rr-fact span{font-size:17px!important;line-height:1.7!important}
body[data-mobile-reader] .rr-metrics{display:grid!important;grid-template-columns:1fr 1fr!important;gap:18px!important}
body[data-mobile-reader] .rr-metrics .rr-fact{display:block!important}
body[data-mobile-reader] .rr-metrics b{display:block;font-size:30px!important;margin-bottom:10px}
body[data-mobile-reader] .rr-document .tt-topic{padding:0!important;border-top:0!important}
body[data-mobile-reader] .tt-topic summary{padding:22px 0!important;font-size:18px!important;line-height:1.55!important;min-height:52px}
body[data-mobile-reader] .tt-topic-copy{padding:0 0 24px!important;font-size:17px!important;line-height:1.8!important}
body[data-mobile-reader] .rr-toolbar{margin-bottom:24px}
body[data-mobile-reader] .rr-expand{padding:12px 18px!important;min-height:44px;border:0!important;border-radius:999px;background:#ebe6dd;color:var(--atelier-blue)}
body:is([data-atelier-page=programs-pmu],[data-atelier-page=programs-smp],[data-atelier-page=programs-piercing]) :is(.pmu-opening,.at-course-opening){padding:154px 8% 44px!important}
body:is([data-atelier-page=programs-pmu],[data-atelier-page=programs-smp],[data-atelier-page=programs-piercing]) :is(.pmu-title,.at-course-title){border:0!important;padding-bottom:12px!important}
body:is([data-atelier-page=programs-pmu],[data-atelier-page=programs-smp],[data-atelier-page=programs-piercing]) :is(.pmu-intro,.at-course-intro){font-size:18px!important;line-height:1.7!important}
body[data-pmu-atelier] .pmu-training{padding:36px 8%!important;background:#ebe6dd!important}
body[data-pmu-atelier] .pmu-training-grid{display:block!important}
body[data-pmu-atelier] .pmu-ring{width:160px!important;height:160px!important;margin:24px auto!important}
body[data-pmu-atelier] .pmu-training-copy{margin-top:30px}
body[data-pmu-atelier] .pmu-curriculum{display:block!important}
body[data-pmu-atelier] .pmu-area{padding:24px 0!important;margin-bottom:20px!important;background:transparent!important;border:0!important}
body[data-pmu-atelier] .pmu-area h3{font-size:25px!important}
body[data-atelier-page=curriculum] .rr-week{grid-template-columns:1fr!important;gap:10px;padding:26px 0!important}
body[data-atelier-page=curriculum] .rr-week :is(.wk,.mod,.desc){grid-column:1!important;grid-row:auto!important}
body[data-atelier-page=curriculum] .rr-week .wk{font-size:13px;color:var(--atelier-blue)}
body[data-atelier-page=curriculum] .rr-week .mod{font-size:23px;line-height:1.4}
body[data-atelier-page=curriculum] .rr-week .desc{font-size:17px;line-height:1.8}
body[data-atelier-page^=educators] .rr-faculty .imt-edu__photo{width:100%!important;max-width:360px}
body[data-atelier-page^=educators] .rr-faculty .imt-edu__name{font-size:32px!important;line-height:1.2!important}
body[data-atelier-page^=educators] .rr-faculty .imt-edu__bio{font-size:17px!important;line-height:1.85!important}
body[data-atelier-page^=educators] .rr-faculty .imt-edu__role{font-size:14px!important;line-height:1.7!important}
body[data-atelier-page^=about] :is(.at-client-story,.at-client-approach,.at-client-vision){padding:48px 8%!important;scroll-margin-top:155px}
body[data-atelier-page^=about] :is(.at-client-story-copy,.at-client-approach-intro,.at-client-vision) p{font-size:17px!important;line-height:1.85!important}
body[data-atelier-page^=about] .at-client-boxes{display:block!important}
body[data-atelier-page^=about] .at-client-boxes>article,body[data-atelier-page^=about] .at-client-boxes>.imt-pillar2{margin-bottom:24px!important;padding:24px!important}
body[data-atelier-page^=about] .at-section-meta{margin-bottom:26px!important}
body[data-atelier-page^=about] .at-client-motto{font-size:30px!important;line-height:1.3!important}
body[data-contact-atelier] .ct-page{padding-inline:8%!important}
body[data-contact-atelier] .st-contact-tabs button{font-size:14px;line-height:1.4;padding:14px 8px;min-height:54px}
body[data-contact-atelier] .imt-form{grid-template-columns:1fr!important}
body[data-contact-atelier] .imt-form>*{grid-column:1!important;min-width:0}
body[data-contact-atelier] :is(.ct-review,.ct-review-copy){overflow-wrap:anywhere;max-width:100%;box-sizing:border-box}
body[data-contact-atelier] .ct-review{scroll-margin-top:100px;padding:24px!important}
body[data-contact-atelier] .ct-review-copy{white-space:pre-wrap;font-size:15px;line-height:1.7}
body[data-contact-atelier] .ct-review-actions{display:flex;flex-direction:column;gap:12px}
body[data-contact-atelier] .ct-review-actions button{min-height:48px;width:100%}
body[data-contact-atelier] .st-contact-panels .ct-process .imt-list{grid-template-columns:1fr!important}
body[data-interior-layout=legal] .atelier-section{padding:40px 8%!important}
body[data-interior-layout=legal] .atelier-page-hero{padding-top:120px!important;padding-bottom:24px!important}
body[data-interior-layout=legal] .content{width:100%!important;max-width:none!important}
body[data-interior-layout=legal] .content h2{font-size:27px!important;line-height:1.3!important;margin:36px 0 18px!important;scroll-margin-top:100px}
body[data-interior-layout=legal] .content p{font-size:16px!important;line-height:1.85!important;overflow-wrap:anywhere}
.mobile-legal-index{display:block;margin-bottom:32px;border-bottom:1px solid var(--atelier-line)}
.mobile-legal-index summary{padding:16px 0;min-height:48px;font-size:16px;cursor:pointer}
.mobile-legal-index nav{display:grid;padding-bottom:20px}
.mobile-legal-index a{min-height:44px;padding:12px 0;color:var(--atelier-blue);font-size:15px}
body:is([data-atelier-page=blog],[data-atelier-page=student-work],[data-atelier-page='404']) .atelier-section{padding:40px 8%!important}
body:is([data-atelier-page=blog],[data-atelier-page=student-work],[data-atelier-page='404']) .atelier-page-hero{padding-top:120px!important}
body[data-atelier-page=blog] .imt-blog{display:block!important}
body[data-atelier-page=blog] .imt-blog a{display:flex!important;flex-direction:column;align-items:flex-start;padding:24px 0!important;gap:12px;background:transparent!important;min-height:0!important}
body[data-atelier-page=blog] .imt-blog a>span:first-child{font-size:22px!important;line-height:1.4!important}
body[data-atelier-page=blog] .imt-blog a>.cat{font-size:12px!important;color:var(--atelier-blue)}
body[data-atelier-page=blog] .imt-blog a[aria-disabled]{cursor:default}
body[data-atelier-page=student-work] .imt-gal{display:grid!important;grid-template-columns:1fr 1fr!important;grid-auto-rows:auto!important;gap:12px!important}
body[data-atelier-page=student-work] .imt-gal .cell{grid-column:auto!important;grid-row:auto!important;min-height:120px!important;aspect-ratio:1;padding:16px!important;font-size:16px!important;line-height:1.4!important}
body[data-atelier-page=student-work] .imt-gal .cell[data-mobile-filtered=true]{display:none!important}
.mobile-gallery-filter{display:flex;flex-wrap:wrap;gap:8px;margin:24px 0}
.mobile-gallery-filter button{min-height:44px;padding:10px 16px;border:0;border-radius:999px;background:#ebe6dd;color:var(--atelier-ink);font-size:14px}
.mobile-gallery-filter button[aria-pressed=true]{background:var(--atelier-blue);color:white}
body[data-atelier-page] :is(.mobile-gallery-filter button,.mobile-legal-index summary):focus-visible{outline:2px solid var(--atelier-blue);outline-offset:3px}
}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto!important}}
@media(max-width:760px){
/* Admissions stays in the top bar; the retired overlay form is not an active mobile route. */
body[data-atelier-page] .sticky-cta-btn,body[data-atelier-page] #popover-start-your-journey{display:none!important}
body[data-atelier-page=blog] .imt-blog a[aria-disabled=true]:after{content:'Coming soon';display:block;font-size:12px;line-height:1.4;color:var(--atelier-blue)}
}
@media(max-width:380px){body[data-atelier-page] .sys-menu-direct ul{display:grid!important;grid-template-columns:1fr!important;gap:0!important}body[data-atelier-page] .sys-menu-direct a{min-height:50px!important;padding-block:12px!important}body[data-atelier-page] .imt-navigation .sys-menu-direct .h3{font-size:23px!important}}

body[data-educators-client] .header{background:transparent!important}
body[data-educators-client] .header .sys-topbar{--bar-ink:var(--atelier-paper);background:transparent!important;color:var(--bar-ink)!important}
body[data-educators-client] .header .sys-logo-image{filter:brightness(0) invert(1)!important}
body[data-educators-client] #banner-1{height:100svh!important;min-height:540px;position:relative;overflow:hidden}
body[data-educators-client] #banner-1 .k-story__media{position:absolute;inset:0}
body[data-educators-client] #banner-1 video{width:100%!important;height:100%!important;object-fit:cover!important}
body[data-educators-client] #banner-1 .k-story__content{position:absolute!important;inset:0!important;display:flex!important;align-items:center!important;justify-content:center!important;padding:100px 8% 40px!important;box-sizing:border-box}
body[data-educators-client] #banner-1 h1{font-size:clamp(52px,10vw,140px)!important;line-height:1.1!important;color:white!important;text-align:center!important;margin:0!important}
body[data-educators-client] .imt-eduintro{padding:70px 8%!important;background:var(--atelier-paper)!important}
body[data-educators-client] .imt-eduintro p{max-width:950px!important;margin:auto!important;font-size:clamp(23px,2.5vw,34px)!important;line-height:1.55!important}
body[data-educators-client] #faculty{padding:35px 8% 70px!important}
body[data-educators-client] #faculty .rr-sidebar{display:none!important}
body[data-educators-client] #faculty .reading-layout{display:block!important}
body[data-educators-client] .educator-directory{display:flex;flex-wrap:wrap;gap:16px 32px;margin:20px 0 54px}
.educator-directory a{display:flex;gap:12px;padding:12px 0;color:var(--atelier-blue);font-size:15px;line-height:1.5;text-decoration:none}
.educator-directory a>span:first-child{font-size:12px}
body[data-educators-client] #faculty .reading-chapter{padding:40px 0 70px!important;margin:0!important;border:0!important;scroll-margin-top:100px}
body[data-educators-client] #faculty .imt-edu{display:grid!important;grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr)!important;gap:9%!important;align-items:center!important}
body[data-educators-client] #faculty .imt-edu>.at-index{display:none!important}
body[data-educators-client] #faculty .imt-edu__txt{grid-column:1;grid-row:1;order:0!important}
body[data-educators-client] #faculty .imt-edu__photo{grid-column:2;grid-row:1;order:0!important;width:100%!important;max-width:none!important;margin:0!important}
body[data-educators-client] #faculty .reading-chapter:nth-child(even) .imt-edu__txt{grid-column:2}
body[data-educators-client] #faculty .reading-chapter:nth-child(even) .imt-edu__photo{grid-column:1}
body[data-educators-client] #faculty .reading-chapter:nth-child(even) .imt-edu{grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr)!important}
body[data-educators-client] #faculty .imt-edu__photo img{width:100%!important;max-height:650px;aspect-ratio:3/4;object-fit:cover;object-position:center top}
body[data-educators-client] #faculty .imt-edu__name{font-size:clamp(34px,4vw,56px)!important;margin:0 0 20px!important}
body[data-educators-client] #faculty .imt-edu__role{padding:0!important;border:0!important;font-size:15px!important;line-height:1.65!important;margin:0 0 24px!important}
body[data-educators-client] #faculty .imt-edu__bio{font-size:17px!important;line-height:1.85!important}
body[data-educators-client] #faculty .imt-edu__cta .btn{background:var(--atelier-blue)!important;color:white!important;border:0!important;border-radius:999px!important;padding:15px 24px!important;min-height:48px!important}
body[data-educators-client] .educator-enrollment-title{font-family:var(--font-display)!important;font-size:clamp(40px,5vw,68px)!important;font-weight:400!important;margin:0 0 24px!important;text-transform:none!important}
body[data-educators-client] .edu-cta{padding:56px 8%!important}
@media(max-width:760px){
body[data-educators-client] .header{background:var(--atelier-paper)!important}
body[data-educators-client][data-hero-visible=true] .header{background:transparent!important}
body[data-educators-client] .header .sys-topbar{--bar-ink:var(--atelier-ink)!important}
body[data-educators-client][data-hero-visible=true] .header .sys-topbar{--bar-ink:var(--atelier-paper)!important;background:linear-gradient(180deg,#0006,transparent)!important}
body[data-educators-client] .header .sys-logo-image{filter:brightness(0)!important}
body[data-educators-client][data-hero-visible=true] .header .sys-logo-image{filter:brightness(0) invert(1)!important}
body[data-educators-client][data-hero-visible=true] .sys-apply{background:var(--imt-on-dark)!important;color:var(--imt-dark)!important}
body[data-educators-client] .imt-eduintro{padding:44px 8%!important}
body[data-educators-client] .imt-eduintro p{font-size:23px!important;line-height:1.6!important}
body[data-educators-client] .educator-directory{display:grid;grid-template-columns:1fr 1fr;gap:8px 20px;margin-bottom:28px}
body[data-educators-client] #faculty .imt-edu{display:flex!important;flex-direction:column!important;gap:28px!important}
body[data-educators-client] #faculty .imt-edu__photo{order:0!important;max-width:420px!important}
body[data-educators-client] #faculty .imt-edu__txt{order:1!important}
body[data-educators-client] #faculty .reading-chapter{padding:24px 0 48px!important}
}
@media(min-width:761px){
body[data-educators-client] #faculty .imt-edu__txt{grid-column:1!important;grid-row:1!important}
body[data-educators-client] #faculty .imt-edu__photo{grid-column:2!important;grid-row:1!important}
body[data-educators-client] #faculty .reading-chapter:nth-child(even) .imt-edu__txt{grid-column:2!important}
body[data-educators-client] #faculty .reading-chapter:nth-child(even) .imt-edu__photo{grid-column:1!important}
}
body[data-educators-client] #banner-1 .k-story__left{position:static!important;transform:none!important;width:100%!important;text-align:center}
body[data-educators-client] #banner-1 .educator-hero-label{position:absolute!important;width:1px!important;height:1px!important;overflow:hidden!important;clip-path:inset(50%);white-space:nowrap}
body[data-educators-client] #banner-1 .educator-hero-art{display:block!important;width:min(900px,84vw)!important;max-width:100%!important;height:auto!important;object-fit:contain!important;margin:auto!important}

/* Give the supplied title one centered canvas, independent of story layout. */
body[data-educators-client] #banner-1 .k-story__media{height:100%!important;width:100%!important}
body[data-educators-client] #banner-1 .k-story__content{height:100%!important;width:100%!important;max-width:none!important;margin:0!important;padding:80px 8%!important}
body[data-educators-client] #banner-1 .k-story__left{align-self:center!important;min-width:0!important}
body[data-educators-client] #banner-1 h1{display:block!important;width:100%!important;max-width:none!important;overflow:visible!important}

/* Shared bottom-aligned titles for the supplied photo and video heroes. */
body[data-atelier-page] #banner-1:has(.k-story__media) .k-story__content{
 position:absolute!important;inset:0!important;width:100%!important;height:100%!important;
 max-width:none!important;margin:0!important;box-sizing:border-box!important;
 display:flex!important;align-items:flex-end!important;justify-content:center!important;
 padding:100px 8% clamp(32px,6vh,80px)!important;
 z-index:2;
}
body[data-atelier-page] #banner-1:has(.k-story__media) .k-story__left{align-self:flex-end!important}
body[data-atelier-page] #banner-1:has(.k-story__media) .k-story__media::after{
 content:"";position:absolute;inset:0;pointer-events:none;
 background:linear-gradient(180deg,transparent 45%,rgba(0,0,0,.48) 100%);
}
body[data-atelier-page] #banner-1:has(.k-story__media) h1{position:relative!important;inset:auto!important;transform:none!important;margin:0!important}
@media(max-width:760px){
 body[data-atelier-page] #banner-1:has(.k-story__media) .k-story__content{padding:96px 7% max(32px,env(safe-area-inset-bottom))!important}
}
/* Smaller, explicitly centered titles retain space around the supplied artwork. */
body[data-educators-client] #banner-1 .k-story__left{display:flex!important;justify-content:center!important}
body[data-educators-client] #banner-1 h1{width:min(520px,64vw)!important;flex:none!important}
body[data-educators-client] #banner-1 .educator-hero-art{width:100%!important;max-width:none!important;transform:translateX(.289%)!important}
body[data-atelier-page^="about"] #banner-1.at-about-banner h1{font-size:clamp(40px,6vw,88px)!important;max-width:100%!important;text-align:center!important}
@media(max-width:760px){
 body[data-educators-client] #banner-1 h1{width:min(260px,64vw)!important}
 body[data-atelier-page^="about"] #banner-1.at-about-banner h1{font-size:clamp(36px,10vw,46px)!important}
}
/* Direct child: no legacy grid, flex, or story transform can offset the title. */
body[data-educators-client] #banner-1:has(.k-story__media) > h1.educator-hero-title{
 position:absolute!important;inset:auto 0 clamp(32px,6vh,80px)!important;
 width:min(520px,64vw)!important;height:auto!important;max-width:none!important;
 margin:0 auto!important;padding:0!important;display:block!important;
 transform:none!important;translate:none!important;scale:none!important;z-index:3;
}
@media(max-width:760px){
 body[data-educators-client] #banner-1:has(.k-story__media) > h1.educator-hero-title{width:min(260px,64vw)!important;bottom:32px!important}
}

/* One persistent application action across every page and viewport. */
body[data-atelier-page] .header.imt-home-header,
body[data-atelier-page][data-studio-system] .header,
body[data-atelier-page] .header{position:fixed!important;inset:0 0 auto!important;height:80px!important;width:100%!important;opacity:1!important;transform:none!important;pointer-events:auto!important;background:var(--atelier-paper)!important;z-index:50!important}
body[data-atelier-page] .header .sys-topbar{background:transparent!important;--bar-ink:var(--atelier-ink)!important;color:var(--atelier-ink)!important}
body[data-atelier-page] .header .sys-logo-image{filter:brightness(0)!important}
body[data-atelier-page] .header .sys-topbar .sys-apply{display:inline-flex!important;background:var(--atelier-ink)!important;color:var(--atelier-paper)!important;border:0!important;border-radius:999px!important;gap:12px!important;padding:8px 10px 8px 20px!important;min-height:48px!important;max-width:none!important;font-size:14px!important;font-weight:700!important;box-shadow:none!important;white-space:nowrap;transition:background .2s,box-shadow .2s}
body[data-atelier-page] .header .sys-topbar .sys-apply>span{display:grid!important;place-items:center;background:var(--atelier-paper);color:var(--atelier-ink);width:30px;height:30px;border-radius:50%;font-size:20px}
body[data-atelier-page] .header .sys-topbar .sys-apply:hover{background:var(--atelier-blue)!important;filter:none!important;box-shadow:none!important}
body[data-atelier-page] .header .sys-topbar .sys-apply:focus-visible{outline:3px solid var(--atelier-blue);outline-offset:5px}
@media(max-width:760px){body[data-atelier-page] .header .sys-topbar .sys-apply{font-size:12px!important;gap:7px!important;padding:7px 8px 7px 12px!important;min-height:44px!important}body[data-atelier-page] .header .sys-topbar .sys-apply>span{width:25px;height:25px;font-size:18px}}

/* Transparent top bar; light navigation over supplied media heroes. */
body[data-atelier-page] header.header.header.header{background:transparent!important;background-color:transparent!important;box-shadow:none!important;border:0!important;backdrop-filter:none!important}
body[data-atelier-page] header.header .sys-topbar.sys-topbar{background:transparent!important}
body[data-atelier-page][data-hero-visible="true"] header.header .sys-topbar.sys-topbar{--bar-ink:var(--atelier-paper)!important;color:var(--atelier-paper)!important}
body[data-atelier-page][data-hero-visible="true"] header.header .sys-logo-image{filter:brightness(0) invert(1)!important}
body[data-atelier-page][data-hero-visible="true"] header.header .sys-languages a{color:var(--atelier-paper)!important}
body[data-atelier-page] header.header.header.header{transition:transform .25s ease!important;will-change:transform}
body[data-atelier-page][data-header-hidden="true"] header.header.header.header{transform:translateY(-110%)!important;pointer-events:none!important}
body[data-atelier-page] .mobile-top-context{transition:transform .25s ease}
body[data-atelier-page][data-header-hidden="true"] .mobile-top-context{transform:translateY(-200%)!important;pointer-events:none!important}
@media(prefers-reduced-motion:reduce){body[data-atelier-page] header.header.header.header,body[data-atelier-page] .mobile-top-context{transition:none!important}}
/* Keep both application actions readable in every interaction state. */
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-apply:is(:hover,:focus-visible,:active){background:#fff!important;color:var(--imt-dark)!important;opacity:1!important;filter:none!important}
body[data-atelier-page] .imt-navigation.home-simple-menu .home-menu-apply:is(:hover,:focus-visible,:active)>span{color:var(--imt-dark)!important;opacity:1!important}
body[data-atelier-page] .header .sys-topbar .sys-apply:is(:hover,:focus-visible,:active){color:var(--atelier-paper)!important;opacity:1!important}
body[data-atelier-page] .header .sys-topbar .sys-apply:is(:hover,:focus-visible,:active)>span{background:var(--atelier-paper)!important;color:var(--atelier-ink)!important}

/* Slightly larger supplied mark, retaining the centered header layout. */
body[data-atelier-page] .header .sys-logo{width:84px!important;height:84px!important}
@media(max-width:760px){body[data-atelier-page] .header .sys-logo{width:64px!important;height:64px!important}}

/* Keep transparent navigation legible over the dark closing section and footer. */
body[data-atelier-page][data-header-surface="dark"] header.header .sys-topbar.sys-topbar{--bar-ink:var(--atelier-paper)!important;color:var(--atelier-paper)!important}
body[data-atelier-page][data-header-surface="dark"] header.header .sys-logo-image{filter:brightness(0) invert(1)!important}
body[data-atelier-page][data-header-surface="dark"] header.header .sys-languages a{color:var(--atelier-paper)!important}
body[data-atelier-page][data-header-surface="dark"] .header .sys-topbar .sys-apply{box-shadow:0 0 0 1px #f3eee780!important}
/* Interior audit: inherited animation labels must follow their button's ink. */
body[data-atelier-page] .atelier-page-hero .btn :is(.btn__txt,.btn__txt-inner){color:inherit!important}
body[data-interior-layout="legal"] main#main-content .content.legal-pending h2{color:#211f1c!important}
@media(max-width:760px){
 body[data-atelier-page] .atelier-page-hero{flex-direction:column!important;align-items:stretch!important}
 body[data-atelier-page] .atelier-page-hero>.rr-cover-link{width:100%!important;max-width:100%!important;flex-shrink:0;margin-top:24px!important;box-sizing:border-box}
}

/* Dashboard access remains secondary to admissions and inherits hero contrast. */
body[data-studio-system] .sys-topbar-left{display:flex!important;align-items:center;gap:18px}
body[data-studio-system] .sys-login{color:var(--bar-ink)!important;font-size:14px;line-height:1.3;text-decoration:none;white-space:nowrap;border-bottom:1px solid transparent;padding:8px 0}
body[data-studio-system] .sys-login:hover{border-bottom-color:currentColor}
body[data-studio-system] .sys-login:focus-visible{outline:2px solid currentColor;outline-offset:5px}
body[data-studio-system] .sys-menu-login{color:inherit!important;text-decoration:underline;text-underline-offset:5px}
@media(max-width:760px){body[data-studio-system] .sys-topbar-left{gap:10px}body[data-studio-system] .sys-login{font-size:12px!important}}

/* Editorial context and reading links use the existing palette and typography. */
.seo-equivalent{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip-path:inset(50%)!important;white-space:nowrap!important;border:0!important}
.seo-context{grid-column:1/-1;font-size:.78rem;letter-spacing:.07em;line-height:1.6;margin:0 0 1.5rem;color:#75434a}
.seo-reading{max-width:1440px;margin:0 auto;padding:clamp(32px,5vw,72px) clamp(24px,6vw,96px);color:#292521}
.seo-reading h2{font-size:1rem;line-height:1.5;font-weight:500;margin:0 0 20px}
.seo-reading ul{list-style:none;padding:0;margin:0;display:flex;flex-wrap:wrap;gap:16px 36px}
.seo-reading li{margin:0;max-width:36ch}
.seo-reading a{color:#75434a;text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:5px;font-size:.94rem;line-height:1.7}
.seo-reading a:hover{color:#292521}
.seo-reading a:focus-visible{outline:2px solid currentColor;outline-offset:5px}
@media(max-width:600px){.seo-reading ul{display:grid;gap:18px}.seo-context{font-size:.72rem;margin-bottom:20px}}
@media(max-width:380px){body[data-client-pmu]{--programme-mobile-title-size:1.8rem}body[data-client-pmu] .tp-opening-heading h1{overflow-wrap:normal;word-break:normal}}
/* Semantic section headings retain the existing eyebrow typography. */
.tt-chapter-heading>h2.tt-eyebrow{font-family:inherit;font-weight:400}
