/* ==========================================================================
   crosalsafestival.fr
   Styled to match the official crosalsafestival.com: white canvas, heavy
   uppercase display type with brush-script accent words, cyan pill CTAs.

   Colours are taken from the live .com stylesheet:
     text #212121 · muted #757575 · cyan #00AEC6 · magenta #E61085
     amber #F8AB19 · purple #AD4C9B · blue #007AFF · rules #EDEDED

   One deliberate departure: the .com puts white text on #00AEC6, which is
   2.7:1 and fails WCAG AA. Every accent therefore has a `-deep` variant used
   for buttons and links, keeping the hue while reaching 4.5:1+.
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */

:root {
	--bg:          #FFFFFF;
	--surface:     #F7F7F7;
	--surface-2:   #EFEFEF;
	--line:        #EDEDED;
	--line-strong: #D8D8D8;
	--text:        #212121;
	--muted:       #757575;

	--cyan:        #00AEC6;
	--cyan-deep:   #00808F;
	--magenta:     #E61085;
	--magenta-deep:#C00A6D;
	--amber:       #F8AB19;
	--amber-deep:  #9A6100;
	--purple:      #AD4C9B;
	--blue:        #007AFF;

	/* Overridden per event by [data-accent]. */
	--accent:      var(--cyan);
	--accent-deep: var(--cyan-deep);
	--accent-ink:  #FFFFFF;

	--font-body:   'Figtree', ui-sans-serif, system-ui, -apple-system, sans-serif;
	--font-script: 'Permanent Marker', 'Figtree', cursive;

	--wrap:      1240px;
	--gutter:    clamp(1rem, 4vw, 2.5rem);
	--radius:    16px;
	--radius-sm: 10px;
	--pill:      56px;

	--shadow-sm: 0 1px 2px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.06);
	--shadow:    0 2px 6px rgba(0,0,0,.07), 0 16px 40px rgba(0,0,0,.10);
	--ease: cubic-bezier(.2,.7,.3,1);
}

[data-accent="gold"]    { --accent: var(--amber);   --accent-deep: var(--amber-deep);   --accent-ink:#FFFFFF; }
[data-accent="teal"]    { --accent: var(--cyan);    --accent-deep: var(--cyan-deep);    --accent-ink:#FFFFFF; }
[data-accent="magenta"] { --accent: var(--magenta); --accent-deep: var(--magenta-deep); --accent-ink:#FFFFFF; }

/* --- Reset / base ------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .01ms !important; animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img, picture, video, iframe { max-width: 100%; display: block; }
img { height: auto; }

a { color: var(--accent-deep); text-underline-offset: .18em; }
a:hover { color: var(--text); }

h1, h2, h3, h4 {
	font-family: var(--font-body);
	font-weight: 900;
	line-height: 1.02;
	letter-spacing: -.01em;
	text-transform: uppercase;
	margin: 0 0 .5em;
	text-wrap: balance;
}

:focus-visible { outline: 3px solid var(--accent-deep); outline-offset: 2px; border-radius: 3px; }
::selection { background: var(--accent); color: #fff; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 820px; }
.muted { color: var(--muted); }

/* Brush-script accent words, standing in for the .com's Flood Std. */
.script {
	font-family: var(--font-script);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: .01em;
	/* The brush face sits high in its em box; nudge it onto the baseline. */
	display: inline-block;
	transform: translateY(.06em);
}
.nowrap { white-space: nowrap; }
.script--cyan    { color: var(--cyan); }
.script--amber   { color: var(--amber); }
.script--purple  { color: var(--purple); }
.script--magenta { color: var(--magenta); }

.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 300;
	background: var(--text); color: #fff; padding: .75rem 1.25rem; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* --- Promo bar ----------------------------------------------------------- */

.promo-bar {
	background: linear-gradient(90deg, #5B4BE0 0%, #A32BC0 50%, #E61085 100%);
	color: #fff; text-align: center;
	font-size: .95rem; padding: .55rem var(--gutter);
}
.promo-bar a { color: #fff; text-decoration: underline; font-weight: 700; }
.promo-bar a:hover { color: #fff; opacity: .85; }

/* --- Header --------------------------------------------------------------- */

.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255,255,255,.94);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid transparent;
	transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; gap: 1.25rem; min-height: 76px; }

/* The .com logo is a magenta flag with an angled lower edge. */
.logo-mark {
	flex: none; display: block; text-decoration: none;
	background: var(--magenta); color: #fff;
	padding: .85rem .8rem 1.4rem;
	clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
	transition: transform .2s var(--ease);
}
.logo-mark:hover { transform: translateY(2px); color: #fff; }
.logo-mark span {
	display: block; font-weight: 900; text-transform: uppercase;
	font-size: .78rem; line-height: 1.05; letter-spacing: .01em;
}

/* --- Navigation ----------------------------------------------------------- */

.site-nav { margin-left: auto; }
.site-nav__list { display: flex; align-items: center; gap: .1rem; list-style: none; margin: 0; padding: 0; }

.site-nav__link {
	display: inline-block; padding: .6rem .85rem;
	font-family: inherit; font-size: .92rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: .01em;
	color: var(--text); text-decoration: none;
	background: none; border: 0; cursor: pointer; border-radius: var(--radius-sm);
	transition: color .2s var(--ease), background .2s var(--ease);
}
.site-nav__link:hover { color: var(--accent-deep); background: var(--surface); }

.has-sub { position: relative; }
.has-sub > .site-nav__link::after {
	content: ''; display: inline-block; width: .34em; height: .34em; margin-left: .45em;
	border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
	transform: translateY(-.15em) rotate(45deg);
}

.subnav {
	position: absolute; top: calc(100% + .35rem); left: 0; min-width: 320px;
	list-style: none; margin: 0; padding: .4rem;
	background: #fff; border: 1px solid var(--line);
	border-radius: var(--radius); box-shadow: var(--shadow);
	opacity: 0; visibility: hidden; transform: translateY(-6px);
	transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.has-sub:hover > .subnav,
.has-sub:focus-within > .subnav,
.has-sub > .site-nav__link[aria-expanded="true"] + .subnav { opacity: 1; visibility: visible; transform: translateY(0); }

.subnav a {
	display: block; padding: .65rem .8rem; border-radius: var(--radius-sm);
	text-decoration: none; color: var(--text); border-left: 3px solid transparent;
	transition: background .18s var(--ease), border-color .18s var(--ease);
}
.subnav a:hover, .subnav a[aria-current="true"] { background: var(--surface); }
.subnav a[data-accent="gold"]:hover    { border-left-color: var(--amber); }
.subnav a[data-accent="teal"]:hover    { border-left-color: var(--cyan); }
.subnav a[data-accent="magenta"]:hover { border-left-color: var(--magenta); }
.subnav__title { display: block; font-weight: 800; font-size: .95rem; line-height: 1.25; text-transform: uppercase; }
.subnav__meta  { display: block; font-size: .8rem; color: var(--muted); margin-top: .15rem; font-weight: 500; }
.subnav--plain { min-width: 260px; }

.nav-toggle {
	display: none; margin-left: auto; align-items: center; gap: .55rem;
	background: none; border: 0; color: var(--text);
	padding: .5rem .2rem; font-family: inherit; font-size: .85rem;
	font-weight: 800; text-transform: uppercase; cursor: pointer;
}
.nav-toggle__bars { display: grid; gap: 4px; }
.nav-toggle__bars i { display: block; width: 24px; height: 3px; background: currentColor; border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Buttons -------------------------------------------------------------- */

.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	padding: 1rem 2.5rem; border-radius: var(--pill); border: 2px solid transparent;
	font-family: inherit; font-weight: 800; font-size: .95rem;
	text-transform: uppercase; letter-spacing: .01em;
	text-decoration: none; cursor: pointer; text-align: center;
	transition: transform .18s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: .7rem 1.5rem; font-size: .82rem; }
.btn--accent { background: var(--accent-deep); color: var(--accent-ink); }
.btn--accent:hover { background: var(--text); color: #fff; }
.btn--ghost { border-color: var(--line-strong); color: var(--text); background: #fff; }
.btn--ghost:hover { border-color: var(--accent-deep); color: var(--accent-deep); }

/* --- Hero ----------------------------------------------------------------- */

.hero { position: relative; padding-top: clamp(2.5rem, 7vw, 5rem); text-align: center; }
.hero__inner { max-width: 60rem; margin-inline: auto; }
.hero--home .hero__inner { max-width: 64rem; }

.hero__eyebrow {
	font-size: clamp(1rem, 1.8vw, 1.35rem); font-weight: 800;
	margin: 0 0 .8rem; letter-spacing: .01em;
}
.hero__title {
	font-size: clamp(2.35rem, 7.2vw, 5.75rem);
	font-weight: 900; letter-spacing: -.02em; line-height: 1;
	text-transform: uppercase; margin: 0 0 1.5rem;
}
.hero__tagline { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--muted); max-width: 44ch; margin: 0 auto 1.6rem; }
.hero__meta {
	display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.5rem;
	font-size: 1rem; color: var(--muted); margin: 0 0 2rem;
}
.hero__meta strong { color: var(--text); font-weight: 800; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.hero__note { margin-top: 1.25rem; font-size: .95rem; color: var(--muted); }

.hero__logo {
	width: clamp(96px, 14vw, 150px); height: auto; margin: 0 auto 1.5rem;
	border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
}

/* Full-bleed photo with the angled top edge the .com uses under its hero. */
.hero__media { margin-top: clamp(2.5rem, 6vw, 4.5rem); }
.hero__media img {
	width: 100%; max-height: 62vh; object-fit: cover;
	clip-path: polygon(0 4.5vw, 100% 0, 100% 100%, 0 100%);
}

/* --- Sections -------------------------------------------------------------- */

.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tight { padding-block: clamp(2rem, 4.5vw, 3.25rem); }
.section--surface { background: var(--surface); }

.section__head { margin-bottom: clamp(1.75rem, 4vw, 3rem); max-width: 52rem; }
.section__title { font-size: clamp(1.7rem, 3.8vw, 2.75rem); margin: 0 0 .6rem; }
.section__lead { color: var(--muted); font-size: 1.08rem; margin: 0; text-transform: none; font-weight: 500; }

/* --- Prose ------------------------------------------------------------------ */

.prose { max-width: 70ch; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); margin-top: 2em; }
.prose h3 { font-size: 1.2rem; margin-top: 1.7em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .4em; }
.prose li::marker { color: var(--accent); }
.prose strong { font-weight: 800; }
.prose a { font-weight: 600; }
.prose .note {
	border-left: 4px solid var(--accent);
	background: var(--surface); color: var(--muted);
	padding: 1rem 1.2rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-size: .97rem;
}
.prose .note strong { color: var(--text); }

/* --- Event cards ------------------------------------------------------------- */

.event-grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }

.event-card {
	position: relative; display: flex; flex-direction: column; overflow: hidden;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	text-decoration: none; color: inherit;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.event-card[data-accent="gold"]    { --card: var(--amber);   --card-deep: var(--amber-deep); }
.event-card[data-accent="teal"]    { --card: var(--cyan);    --card-deep: var(--cyan-deep); }
.event-card[data-accent="magenta"] { --card: var(--magenta); --card-deep: var(--magenta-deep); }
.event-card::before {
	content: ''; position: absolute; inset-inline: 0; top: 0; height: 5px;
	background: var(--card, var(--accent)); z-index: 2;
}

.event-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface); }
.event-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.event-card:hover .event-card__media img { transform: scale(1.04); }

.event-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.event-card__dates {
	font-size: .8rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase;
	color: var(--card-deep, var(--accent-deep)); margin-bottom: .5rem;
}
.event-card__title { font-size: 1.35rem; margin: 0 0 .5rem; }
.event-card__meta { font-size: .9rem; color: var(--muted); margin: 0 0 .9rem; }
.event-card__summary { font-size: .98rem; color: var(--text); margin: 0 0 1.3rem; flex: 1; }
.event-card__more {
	font-weight: 800; font-size: .9rem; text-transform: uppercase;
	color: var(--card-deep, var(--accent-deep));
	display: inline-flex; align-items: center; gap: .4rem; transition: gap .2s var(--ease);
}
.event-card:hover .event-card__more { gap: .75rem; }
.event-card__note { font-size: .84rem; color: var(--muted); margin-top: .8rem; border-top: 1px solid var(--line); padding-top: .8rem; }

/* --- Sub-navigation ---------------------------------------------------------- */

.subpage-nav { border-bottom: 1px solid var(--line); background: #fff; }
.subpage-nav ul { display: flex; gap: .2rem; list-style: none; margin: 0; padding: 0; overflow-x: auto; scrollbar-width: thin; }
.subpage-nav a {
	display: block; padding: 1.05rem 1rem; white-space: nowrap;
	font-size: .9rem; font-weight: 800; text-transform: uppercase;
	color: var(--muted); text-decoration: none; border-bottom: 3px solid transparent;
	transition: color .2s var(--ease), border-color .2s var(--ease);
}
.subpage-nav a:hover { color: var(--text); }
.subpage-nav a[aria-current="page"] { color: var(--accent-deep); border-bottom-color: var(--accent); }

/* --- Page head ---------------------------------------------------------------- */

.crumbs { font-size: .82rem; color: var(--muted); padding-top: 1.5rem; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: 0; }
.crumbs li + li::before { content: '/'; margin-right: .4rem; color: var(--line-strong); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent-deep); }

.page-head { padding-block: clamp(1.5rem, 3.5vw, 2.5rem) 0; }
.page-head .eyebrow {
	display: block; font-size: .8rem; font-weight: 900; letter-spacing: .1em;
	text-transform: uppercase; color: var(--accent-deep); margin: 0 0 .5rem;
}
.page-head__title { font-size: clamp(2.1rem, 5.5vw, 3.5rem); margin: 0 0 .6rem; }
.page-head__lead { color: var(--muted); font-size: 1.1rem; max-width: 62ch; margin: 0; }

/* --- Pricing -------------------------------------------------------------------- */

.pricing { width: 100%; border-collapse: collapse; margin-top: 1.5rem; font-size: .96rem; }
.pricing caption { text-align: left; color: var(--muted); font-size: .9rem; padding-bottom: .8rem; }
.pricing th, .pricing td { text-align: left; padding: 1.05rem .9rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.pricing thead th {
	font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase;
	color: var(--muted); border-bottom: 2px solid var(--text); padding-block: .65rem;
}
.pricing tbody tr { transition: background .2s var(--ease); }
.pricing tbody tr:hover { background: var(--surface); }
.pricing__name { font-weight: 900; font-size: 1.02rem; text-transform: uppercase; }
.pricing__dates { display: block; font-weight: 500; font-size: .82rem; color: var(--muted); margin-top: .25rem; text-transform: none; }
.pricing__incl { margin: .65rem 0 0; padding: 0; list-style: none; font-size: .86rem; color: var(--muted); }
.pricing__incl li { position: relative; padding-left: .95rem; }
.pricing__incl li::before { content: ''; position: absolute; left: 0; top: .55em; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.pricing__price { font-variant-numeric: tabular-nums; white-space: nowrap; }
.pricing__price--early { font-size: 1.3rem; font-weight: 900; color: var(--accent-deep); }
.pricing__price--muted { color: var(--muted); }
.pricing tr.is-soldout { opacity: .55; }
.pricing tr.is-soldout .pricing__name { text-decoration: line-through; }

.tag {
	display: inline-block; font-size: .66rem; font-weight: 900; letter-spacing: .07em;
	text-transform: uppercase; padding: .25rem .55rem; border-radius: var(--pill);
	background: var(--surface-2); color: var(--muted); margin-left: .4rem; vertical-align: middle;
}
.tag--accent { background: var(--accent); color: #fff; }
.tag--soldout { background: var(--text); color: #fff; }

@media (max-width: 880px) {
	.pricing, .pricing tbody, .pricing tr, .pricing td { display: block; width: 100%; }
	.pricing thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
	.pricing tbody tr {
		background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
		margin-bottom: 1rem; padding: 1.2rem 1.3rem; box-shadow: var(--shadow-sm);
	}
	.pricing td { border: 0; padding: 0; }
	.pricing td + td {
		display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
		padding-top: .55rem; margin-top: .55rem; border-top: 1px solid var(--line);
	}
	.pricing td + td::before {
		content: attr(data-label); font-size: .7rem; font-weight: 900;
		letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
	}
	.pricing td:first-child { padding-bottom: .4rem; }
}

/* --- Programme ---------------------------------------------------------------------- */

.days { display: grid; gap: 1.25rem; }
.day { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.day__head { display: flex; align-items: baseline; gap: .8rem; flex-wrap: wrap; padding: 1.1rem 1.4rem; background: var(--surface); border-bottom: 1px solid var(--line); }
.day__title { font-size: 1.15rem; margin: 0; }
.day__date { font-size: .82rem; color: var(--muted); font-weight: 800; }

.slots { list-style: none; margin: 0; padding: 0; }
.slot {
	display: grid; grid-template-columns: 8.5rem 1fr auto; gap: .4rem 1.2rem;
	align-items: baseline; padding: .95rem 1.4rem; border-bottom: 1px solid var(--line);
	transition: background .2s var(--ease);
}
.slot:last-child { border-bottom: 0; }
.slot:hover { background: var(--surface); }
.slot__time { font-variant-numeric: tabular-nums; font-size: .9rem; font-weight: 800; color: var(--accent-deep); white-space: nowrap; }
.slot__body { min-width: 0; }
.slot__title { font-weight: 700; margin: 0; }
.slot__venue { font-size: .85rem; color: var(--muted); margin: .15rem 0 0; }
.slot__cat {
	font-size: .66rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase;
	padding: .28rem .6rem; border-radius: var(--pill); white-space: nowrap;
	background: var(--surface-2); color: var(--muted);
}
.slot[data-cat="party"]    .slot__cat,
.slot[data-cat="concert"]  .slot__cat { background: var(--magenta); color: #fff; }
.slot[data-cat="workshop"] .slot__cat { background: var(--cyan); color: #fff; }
.slot[data-cat="beach"]    .slot__cat { background: #0FA36B; color: #fff; }
.slot[data-cat="boat"]     .slot__cat { background: var(--blue); color: #fff; }
.slot[data-cat="bootcamp"] .slot__cat { background: var(--amber); color: #3A2600; }
.slot[data-cat="show"]     .slot__cat { background: var(--purple); color: #fff; }

@media (max-width: 720px) {
	.slot { grid-template-columns: 1fr auto; }
	.slot__time { grid-column: 1 / -1; }
}

/* --- Artists ------------------------------------------------------------------------- */

.roster + .roster { margin-top: clamp(2.5rem, 6vw, 4rem); }
.roster__title { font-size: clamp(1.35rem, 3vw, 1.9rem); display: flex; align-items: center; gap: .9rem; margin-bottom: 1.5rem; }
.roster__title::after { content: ''; flex: 1; height: 2px; background: var(--line); }
.roster__count {
	font-size: .78rem; font-weight: 900; color: #fff; background: var(--accent);
	border-radius: var(--pill); padding: .2rem .6rem; letter-spacing: .03em;
}

.artist-grid { display: grid; gap: clamp(.8rem, 2vw, 1.4rem); grid-template-columns: repeat(auto-fill, minmax(min(100%, 11rem), 1fr)); }
.artist__media { position: relative; aspect-ratio: 3 / 4; overflow: hidden; border-radius: var(--radius-sm); background: var(--surface-2); }
.artist__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.artist:hover .artist__media img { transform: scale(1.05); }
.artist__placeholder { width: 100%; height: 100%; display: grid; place-items: center; font-size: 2rem; font-weight: 900; color: var(--line-strong); }
.artist__new {
	position: absolute; top: .5rem; left: .5rem; z-index: 2;
	font-size: .6rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase;
	background: var(--magenta); color: #fff; padding: .28rem .55rem; border-radius: var(--pill);
}
.artist__name { font-weight: 900; font-size: 1rem; margin: .7rem 0 .15rem; line-height: 1.2; text-transform: uppercase; }
.artist__country { font-size: .82rem; color: var(--accent-deep); margin: 0; font-weight: 700; }
.artist__styles { font-size: .82rem; color: var(--muted); margin: .1rem 0 0; }

/* --- Cards (extras, bootcamps) ---------------------------------------------------------- */

.card-grid { display: grid; gap: clamp(1rem, 2.5vw, 1.5rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.card__title { font-size: 1.2rem; margin: 0 0 .3rem; }
.card__theme { font-size: .88rem; color: var(--accent-deep); font-weight: 800; margin: 0; text-transform: uppercase; }
.card__price { font-size: 1.45rem; font-weight: 900; color: var(--accent-deep); white-space: nowrap; flex: none; }
.card__meta { list-style: none; margin: 0 0 1rem; padding: 0; font-size: .9rem; }
.card__meta li { display: flex; gap: .9rem; padding: .5rem 0; border-bottom: 1px solid var(--line); }
.card__meta li:last-child { border-bottom: 0; }
.card__meta .k { flex: none; width: 7rem; color: var(--muted); font-size: .7rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; padding-top: .2rem; }
.card__meta .v { min-width: 0; }
.card .prose { font-size: .95rem; }
.card__dress { display: grid; gap: .8rem; margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.card__dress h4 { font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-deep); margin: 0 0 .2rem; }
.card__dress p { margin: 0; font-size: .89rem; color: var(--muted); }

.video { position: relative; aspect-ratio: 16 / 9; margin-top: 1.1rem; border-radius: var(--radius-sm); overflow: hidden; background: #000; }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --- FAQ --------------------------------------------------------------------------------- */

.faq-list { max-width: 54rem; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
	display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
	padding: 1.25rem 0; cursor: pointer; list-style: none;
	font-weight: 900; font-size: 1.05rem; line-height: 1.3; text-transform: uppercase;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: ''; flex: none; width: .6rem; height: .6rem; margin-top: .4rem;
	border-right: 3px solid var(--accent); border-bottom: 3px solid var(--accent);
	transform: rotate(45deg); transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item summary:hover { color: var(--accent-deep); }
.faq-item__answer { padding-bottom: 1.4rem; color: var(--muted); max-width: 64ch; }
.faq-item__answer > :first-child { margin-top: 0; }

/* --- Videos, downloads, gallery, form ------------------------------------------------------ */

.video-grid { display: grid; gap: clamp(1rem, 2.5vw, 1.5rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.video-grid .video { margin-top: 0; }

.downloads { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: .6rem; }
.downloads a {
	display: flex; align-items: center; gap: .8rem; padding: 1rem 1.2rem;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
	text-decoration: none; color: var(--text); font-weight: 700;
}
.downloads a:hover { border-color: var(--accent); }
.downloads .size { margin-left: auto; font-size: .82rem; color: var(--muted); font-weight: 500; }

.gallery { display: grid; gap: .8rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 14rem), 1fr)); margin-top: 2rem; }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-sm); }

.form { max-width: 40rem; display: grid; gap: 1.15rem; margin-top: 1.5rem; }
.form__row { display: grid; gap: .4rem; }
.form label { font-size: .78rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.form input, .form textarea {
	font-family: inherit; font-size: 1rem; color: var(--text); background: #fff;
	border: 2px solid var(--line-strong); border-radius: var(--radius-sm);
	padding: .8rem .95rem; width: 100%;
	transition: border-color .2s var(--ease);
}
.form input:focus, .form textarea:focus { border-color: var(--accent); outline: none; }
.form textarea { resize: vertical; min-height: 9rem; }
.form__hint, .form__note { font-size: .86rem; color: var(--muted); }
.alert { padding: 1.1rem 1.3rem; border-radius: var(--radius-sm); border: 2px solid var(--line-strong); background: var(--surface); margin-bottom: 1.5rem; }
.alert--ok { border-color: #0FA36B; }
.alert--error { border-color: #D32F2F; }
.form__errors { margin: .4rem 0 0; padding-left: 1.2rem; font-size: .92rem; }

/* --- Footer ---------------------------------------------------------------------------------- */

.site-footer { background: var(--text); color: #fff; }
.site-footer__inner {
	display: grid; gap: clamp(1.75rem, 4vw, 3rem);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
	padding-block: clamp(2.5rem, 6vw, 4rem);
}
.site-footer h2 { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); font-weight: 900; margin-bottom: 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.site-footer a { color: rgba(255,255,255,.82); text-decoration: none; font-size: .93rem; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__brand p { font-size: .93rem; color: rgba(255,255,255,.82); margin: .9rem 0 0; }
.site-footer__brand .muted { font-size: .84rem; color: rgba(255,255,255,.5); }
.site-footer__brand .logo-mark { display: inline-block; }
.site-footer__contact p { margin: 0 0 .6rem; }
.site-footer .btn--ghost { border-color: rgba(255,255,255,.35); color: #fff; background: transparent; }
.site-footer .btn--ghost:hover { border-color: #fff; background: #fff; color: var(--text); }
.site-footer__legal {
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
	border-top: 1px solid rgba(255,255,255,.14); padding-block: 1.4rem;
	font-size: .85rem; color: rgba(255,255,255,.5);
}
.site-footer__legal p { margin: 0; }
.site-footer__legal a { color: rgba(255,255,255,.7); }

/* --- Mobile navigation -------------------------------------------------------------------------- */

@media (max-width: 1040px) {
	.nav-toggle { display: inline-flex; }

	/* Anchored to .site-header, not the viewport: the header carries a
	   backdrop-filter, which makes it the containing block for fixed-position
	   descendants — `position: fixed` here collapses to the header's own box. */
	.site-nav {
		position: absolute; top: 100%; left: 0; right: 0; z-index: 90;
		height: 100vh; height: calc(100dvh - 76px);
		background: #fff; border-top: 1px solid var(--line);
		padding: 1.25rem var(--gutter) 3rem; overflow-y: auto;
		transform: translateY(-8px); opacity: 0; visibility: hidden;
		transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
	}
	.site-nav.is-open { opacity: 1; visibility: visible; transform: none; }

	.site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
	.site-nav__link { width: 100%; text-align: left; padding: 1rem .25rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
	.has-sub > .site-nav__link::after { float: right; margin-top: .5em; }

	.subnav {
		position: static; opacity: 1; visibility: visible; transform: none;
		min-width: 0; border: 0; box-shadow: none; background: var(--surface);
		padding: .3rem .5rem; margin: .4rem 0; border-radius: var(--radius-sm);
		display: none;
	}
	.has-sub > .site-nav__link[aria-expanded="true"] + .subnav { display: block; }
	.site-nav__cta { margin-top: 1.5rem; }
	.site-nav__cta .btn { width: 100%; }

	body.nav-open { overflow: hidden; }
}

@media (max-width: 700px) {
	/* A landscape photo at phone width collapses to a thin strip; give it a
	   fixed band height and let object-fit crop instead. */
	.hero__media img { height: 40vh; min-height: 220px; }
}

@media (max-width: 560px) {
	.hero__media img { clip-path: polygon(0 6vw, 100% 0, 100% 100%, 0 100%); }
	.card { padding: 1.25rem; }
	.card__head { flex-direction: column; gap: .5rem; }
	.card__meta li { flex-direction: column; gap: .2rem; }
	.card__meta .k { width: auto; }
	.slot { padding: .9rem 1rem; }
	.day__head { padding: 1rem; }
}
