/* ==========================================================================
   The Sheepdogs theme
   ========================================================================== */

/* Fonts ------------------------------------------------------------------ */
@font-face { font-family: "CC Regeneration"; src: url("../fonts/cc-regeneration.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Lato"; src: url("../fonts/lato-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Lato"; src: url("../fonts/lato-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Lato"; src: url("../fonts/lato-latin-900-normal.woff2") format("woff2"); font-weight: 900; font-style: normal; font-display: swap; }

/* Tokens ----------------------------------------------------------------- */
:root {
	--ink: #1f1c19;
	--cream: #f3efe4;
	--paper2: #e4dccb;
	--orange: #e8841c;
	--teal: #1a6f84;
	--teal-bg: #2f93a8;
	--deep-teal: #185f70;
	--link-light: #9fd3df;
	--muted: rgba(31, 28, 25, 0.72);
	--rule: rgba(31, 28, 25, 0.35);
	--display: "CC Regeneration", "Arial Black", sans-serif;
	--body: "Lato", "Helvetica Neue", Arial, sans-serif;
	--wrap: 1240px;
	--gutter: 20px;
	--section: 64px;
	--radius: 12px;
}

/* Base ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 24px; }
body { margin: 0; background: var(--ink); color: var(--ink); font-family: var(--body); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--teal); }
a:hover { color: var(--ink); }
button { font: inherit; color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.icon { flex-shrink: 0; }
[hidden] { display: none !important; }

.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; padding: 10px 16px; background: var(--orange); color: var(--ink); font-weight: 700; border-radius: 6px; text-decoration: none; }
.skip-link:focus { top: 12px; }

.wrap { width: min(var(--wrap), 100% - var(--gutter) * 2); margin-inline: auto; }
.wrap--wide { width: min(1320px, 100% - var(--gutter) * 2); }
.wrap--narrow { width: min(760px, 100% - var(--gutter) * 2); }
.stack { display: flex; flex-direction: column; gap: 28px; }
.center { text-align: center; }

.admin-hint { padding: 16px; border: 2px dashed var(--orange); border-radius: 8px; font-size: 15px; }

/* Sections --------------------------------------------------------------- */
.section { padding-block: var(--section); }
.section--paper { background: var(--cream) url("../img/paper.webp") 0 0 / 1518px auto repeat; }
.section--paper2 { background: var(--paper2) url("../img/paper.webp") 0 0 / 1518px auto repeat; background-blend-mode: multiply; }
.section--ink { background: var(--ink); color: var(--cream); }
.section--teal { background: var(--deep-teal); color: #fff; }

.section-head { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 28px; text-align: center; }
.section-title { display: inline-block; font-family: var(--display); font-size: clamp(34px, 3.4vw, 50px); line-height: 1; text-transform: uppercase; padding-bottom: 8px; border-bottom: 6px solid var(--orange); }
.section-title--light { color: var(--cream); }
.section-title--left { align-self: flex-start; }
.section-sub { font-size: 18px; }
.section-actions { display: flex; justify-content: center; margin-top: 28px; }

.eyebrow { font-size: 13px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); }
.eyebrow--orange { color: var(--orange); }

.text-link { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; font-weight: 700; }

/* Buttons ---------------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 10px 26px; border: 3px solid transparent; border-radius: 8px; font-family: var(--display); font-size: 17px; letter-spacing: 0.04em; line-height: 1.1; text-transform: uppercase; text-decoration: none; transition: background-color 0.15s, color 0.15s, border-color 0.15s; }
.btn--primary { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.btn--primary:hover { background: #f09a3e; border-color: #f09a3e; color: var(--ink); }
.btn--dark { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.btn--dark:hover { background: #3a342e; border-color: #3a342e; color: var(--cream); }
.btn--outline { border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn--light { border-color: #fff; color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); }
.btn--vip { border-color: var(--orange); color: var(--ink); }
.btn--vip:hover { background: var(--orange); color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* Header ----------------------------------------------------------------- */
.site-header { position: absolute; inset: 0 0 auto; z-index: 20; }
.site-header__inner { display: flex; align-items: center; gap: 32px; padding: 22px 48px; }
.site-logo img { width: 250px; height: auto; }
.header-tickets { display: none; }
.site-nav { display: flex; align-items: center; justify-content: space-between; flex: 1; gap: 32px; }
.is-inner .site-nav nav { margin-inline: auto; }
.site-nav__menu { display: flex; gap: 34px; list-style: none; }
.site-nav__menu a { display: inline-flex; align-items: center; gap: 6px; padding: 6px 0 2px; border-bottom: 4px solid transparent; font-family: var(--display); font-size: 21px; letter-spacing: 0.03em; text-transform: uppercase; color: #fff; text-decoration: none; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35); }
.site-nav__menu a:hover, .site-nav__menu .current-menu-item > a, .site-nav__menu .current_page_item > a { border-bottom-color: var(--orange); color: #fff; }
.social-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; color: inherit; }
.site-nav__social { color: #fff; filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.3)); }
.menu-toggle { display: none; }

/* Home hero -------------------------------------------------------------- */
.hero { position: relative; height: clamp(460px, calc(100svh - 100px), 880px); background: var(--teal-bg); overflow: hidden; }
.admin-bar .hero { height: clamp(460px, calc(100svh - 132px), 880px); }
.hero__media, .hero__img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__img { object-fit: cover; object-position: var(--hero-focus, 50% 30%); }
.hero__title { position: absolute; left: 50%; bottom: clamp(40px, 12%, 120px); width: min(806px, 56vw, 105svh); transform: translateX(-50%); }
.hero__title img { width: 100%; }

/* Release bar ------------------------------------------------------------ */
.release-bar { background: var(--ink); color: var(--cream); }
.release-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; min-height: 100px; padding-block: 14px; }
.release-bar__info { display: flex; align-items: center; gap: 22px; }
.release-bar__cover { width: 64px; height: 64px; border-radius: 4px; object-fit: cover; }
.release-bar__text { display: flex; flex-direction: column; gap: 4px; }
.release-bar__title { font-family: var(--display); font-size: 30px; line-height: 1; text-transform: uppercase; }
.release-bar__actions { display: flex; gap: 14px; }

/* VIP -------------------------------------------------------------------- */
.vip { display: flex; margin-bottom: 24px; background: rgba(31, 28, 25, 0.06); border-radius: 14px; overflow: hidden; }
.vip__img { width: 400px; height: auto; align-self: center; flex-shrink: 0; }
.vip__body { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 20px 32px; }
.vip__text { display: flex; flex-direction: column; gap: 8px; }
.vip__title { font-family: var(--display); font-size: 26px; line-height: 1.05; text-transform: uppercase; }
.vip__text p { max-width: 460px; }

/* Tour (Seated) ----------------------------------------------------------
   Seated renders its own markup inside #seated-55fdf2c0. Class names come
   from widget.seated.com. !important is used because Seated injects its own
   styles after ours. */
.tour-embed { min-height: 120px; }
.tour-embed .is-over-limit { display: none !important; }
.tour-embed #seated-55fdf2c0 { font-family: var(--body) !important; color: var(--ink) !important; }
.tour-embed .seated-events-table { border: 0 !important; }
.tour-embed .seated-event-row { display: flex !important; align-items: center !important; gap: 24px !important; margin: 0 !important; padding: 13px 18px !important; border: 0 !important; border-bottom: 1px dashed var(--rule) !important; background: transparent !important; }
.tour-embed .seated-event-row:first-child { border-top: 1px dashed var(--rule) !important; }
.tour-embed .seated-event-row:nth-child(even) { background: rgba(31, 28, 25, 0.05) !important; }
.tour-embed .seated-event-description-cells { flex: 1 !important; display: grid !important; grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr); grid-template-areas: "date loc" "name loc" "details details"; column-gap: 24px; row-gap: 2px; align-items: center; margin: 0 !important; padding: 0 !important; }
.tour-embed .seated-event-venue-cell { display: contents !important; }
.tour-embed .seated-event-date-cell { grid-area: date; margin: 0 !important; padding: 0 !important; font-family: var(--display) !important; font-size: 21px !important; line-height: 1.1 !important; color: var(--teal) !important; text-transform: uppercase !important; letter-spacing: 0.01em !important; width: auto !important; }
.tour-embed .seated-event-venue-name { grid-area: name; margin: 0 !important; font-family: var(--body) !important; font-size: 15px !important; font-weight: 400 !important; line-height: 1.35 !important; color: rgba(31, 28, 25, 0.8) !important; }
.tour-embed .seated-event-venue-location { grid-area: loc; min-width: 0; width: auto !important; max-width: none !important; margin: 0 !important; font-family: var(--body) !important; font-size: 19px !important; font-weight: 900 !important; line-height: 1.25 !important; color: var(--ink) !important; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tour-embed .seated-event-details-cell { grid-area: details; margin: 0 !important; font-size: 13px !important; color: var(--muted) !important; }
.tour-embed .seated-event-details-cell:empty { display: none !important; }
.tour-embed .seated-event-link-cells { display: flex !important; flex: 0 0 234px; width: 234px !important; gap: 10px !important; justify-content: flex-end !important; margin: 0 !important; padding: 0 !important; width: auto !important; }
.tour-embed .seated-event-link-cell { margin: 0 !important; padding: 0 !important; width: auto !important; order: 1; }
.tour-embed .seated-event-link-cell1 { order: 2; }
.tour-embed .seated-event-link { display: inline-flex !important; align-items: center !important; justify-content: center !important; min-width: 112px !important; min-height: 42px !important; margin: 0 !important; padding: 0 16px !important; border: 3px solid var(--orange) !important; border-radius: 8px !important; background: transparent !important; color: var(--ink) !important; font-family: var(--display) !important; font-size: 15px !important; font-weight: 400 !important; letter-spacing: 0.04em !important; line-height: 1 !important; text-transform: uppercase !important; text-decoration: none !important; box-shadow: none !important; transition: background-color 0.15s, color 0.15s; }
.tour-embed .seated-event-link:hover { background: var(--orange) !important; color: var(--ink) !important; }
.tour-embed .seated-event-link1 { border-color: var(--ink) !important; background: var(--ink) !important; color: var(--cream) !important; }
.tour-embed .seated-event-link1:hover { border-color: #3a342e !important; background: #3a342e !important; color: var(--cream) !important; }
.tour-embed .seated-event-link1-sold-out { border-color: rgba(31, 28, 25, 0.35) !important; background: transparent !important; color: var(--muted) !important; }
.tour-embed .seated-no-events { padding: 24px 0 !important; font-size: 17px !important; text-align: center !important; }
.tour-embed .seated-follow-box { display: flex !important; flex-direction: column; align-items: center; gap: 10px; margin: 28px 0 0 !important; padding: 0 !important; border: 0 !important; text-align: center; }
.tour-embed .seated-follow-text { margin: 0 !important; font-family: var(--body) !important; font-size: 16px !important; font-weight: 700 !important; color: var(--ink) !important; }
.tour-embed .seated-follow-link { display: inline-flex !important; align-items: center !important; min-height: 44px !important; padding: 0 22px !important; border: 3px solid var(--orange) !important; border-radius: 8px !important; background: var(--orange) !important; color: var(--ink) !important; font-family: var(--display) !important; font-size: 15px !important; letter-spacing: 0.04em !important; text-transform: uppercase !important; text-decoration: none !important; }
/* Seated sets bold on its text; the display font should never be faux-bolded. */
.tour-embed .seated-event-date-cell, .tour-embed .seated-event-link, .tour-embed .seated-follow-link { font-weight: 400 !important; font-synthesis: none; }

/* Hide "powered by seated" (an unlabeled div holding a link to seated.com). */
.tour-embed #seated-55fdf2c0 div:has(> a[href^="https://www.seated.com"]) { display: none !important; }
.tour-embed #seated-55fdf2c0 a[href^="https://www.seated.com"] { display: none !important; }
/* Home page: the "All tour dates" button replaces Seated's follow box. */
.tour-embed[data-limit] .seated-follow-box { display: none !important; }

/* Merch ------------------------------------------------------------------ */
.merch-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 24px 20px; list-style: none; }
.merch-card a { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--ink); text-align: center; text-decoration: none; }
.merch-card__img { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; aspect-ratio: 1; margin-bottom: 6px; background: var(--deep-teal); border-radius: var(--radius); overflow: hidden; }
.merch-card__img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.25s; }
.merch-card a:hover .merch-card__img img { transform: scale(1.03); }
.merch-card__name { font-size: 15px; font-weight: 700; line-height: 1.3; }
.merch-card__price { font-size: 13px; letter-spacing: 0.02em; color: rgba(31, 28, 25, 0.62); text-decoration: underline; text-decoration-color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.merch-card__badge { display: none; position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 999px; background: var(--cream); color: var(--ink); font-size: 12px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.merch-card.is-sold-out .merch-card__badge { display: block; }
.merch-card.is-sold-out .merch-card__img img { opacity: 0.55; }
.merch-card--all a { justify-content: space-between; align-items: flex-start; aspect-ratio: 1; padding: 22px; background: var(--ink); border-radius: var(--radius); color: var(--cream); text-align: left; }
.merch-card__all-title { font-family: var(--display); font-size: clamp(22px, 2vw, 30px); line-height: 1.05; text-transform: uppercase; }
.merch-card__all-link { display: flex; align-items: center; gap: 8px; color: var(--orange); font-weight: 700; }

/* Home release feature --------------------------------------------------- */
.release-feature__grid { display: grid; grid-template-columns: minmax(0, 560px) minmax(0, 1fr); gap: 56px; align-items: center; }
.release-feature__cover { width: 100%; max-width: 460px; border-radius: 4px; box-shadow: 0 10px 30px rgba(31, 28, 25, 0.22); }
.release-feature__media img:not(.release-feature__cover) { filter: drop-shadow(0 14px 22px rgba(31, 28, 25, 0.3)) drop-shadow(0 2px 4px rgba(31, 28, 25, 0.18)); }
.release-feature__body { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.release-feature__title { font-family: var(--display); font-size: clamp(38px, 3.8vw, 56px); line-height: 0.95; text-transform: uppercase; }
.release-feature__text { font-size: 18px; }
.also-on { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; font-size: 15px; color: var(--muted); }
.also-on > span { margin-right: 6px; }
.also-on a:not(.also-on__disc) { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; color: var(--ink); }
.also-on__disc { margin-left: 12px; font-weight: 700; }

/* Home videos ------------------------------------------------------------ */
.videos-home__grid { display: grid; grid-template-columns: minmax(0, 800px) minmax(0, 1fr); gap: 36px; align-items: start; }
.videos-home__caption { margin-top: 10px; font-family: var(--display); font-size: 26px; text-transform: uppercase; }
.videos-home__list { display: flex; flex-direction: column; gap: 18px; list-style: none; }
.videos-home__item { display: flex; align-items: center; gap: 18px; }
.videos-home__item .video { width: 176px; flex-shrink: 0; }
.videos-home__item div { display: flex; flex-direction: column; gap: 4px; }
.videos-home__title { font-family: var(--display); font-size: 22px; line-height: 1.05; text-transform: uppercase; }

/* Video facade ----------------------------------------------------------- */
.video { position: relative; aspect-ratio: 16 / 9; border-radius: 10px; overflow: hidden; background: #34302b; }
.video--sm { border-radius: 8px; }
.video__play { position: absolute; inset: 0; width: 100%; padding: 0; border: 0; background: none; cursor: pointer; }
.video__play img { width: 100%; height: 100%; object-fit: cover; }
.video__icon { position: absolute; left: 50%; top: 50%; display: flex; align-items: center; justify-content: center; width: 84px; height: 84px; transform: translate(-50%, -50%); border-radius: 50%; background: var(--orange); color: var(--ink); transition: transform 0.15s; }
.video--md .video__icon { width: 60px; height: 60px; }
.video--sm .video__icon { width: 38px; height: 38px; }
.video__play:hover .video__icon { transform: translate(-50%, -50%) scale(1.08); }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* About (home) ----------------------------------------------------------- */
.about-home__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.about-home__text { font-size: 19px; line-height: 1.65; }

/* Newsletter ------------------------------------------------------------- */
.newsletter__inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.newsletter__text { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.newsletter__title { font-family: var(--display); font-size: clamp(32px, 3.2vw, 46px); line-height: 1; text-transform: uppercase; white-space: nowrap; }
.newsletter__text p { font-size: 18px; }
.newsletter__embed { flex-shrink: 0; width: 440px; max-width: 100%; }
.newsletter__embed iframe { width: 100%; height: 320px; border: 0; border-radius: 10px; background: #fff; }

/* Footer ----------------------------------------------------------------- */
.site-footer { padding: 52px 0 32px; background: var(--ink); color: var(--cream); }
.site-footer__grid { display: grid; grid-template-columns: 340px 200px minmax(0, 1fr); gap: 48px; }
.site-footer__brand { display: flex; flex-direction: column; gap: 14px; }
.site-footer__brand img { width: 260px; }
.site-footer__brand p { font-size: 15px; color: rgba(243, 239, 228, 0.75); }
.site-footer__social { margin-left: -12px; }
.site-footer__menu { display: flex; flex-direction: column; gap: 8px; list-style: none; }
.site-footer__menu a { color: var(--cream); text-decoration: none; }
.site-footer__menu a:hover { color: var(--orange); }
.site-footer__menu .icon { display: none; }
.site-footer__contacts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 40px; align-content: start; }
.contact { display: flex; flex-direction: column; gap: 3px; font-size: 15px; }
.contact__label { font-size: 12px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); }
.contact__email { color: var(--link-light); word-break: break-word; }
.contact__email:hover { color: var(--cream); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 16px; margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(243, 239, 228, 0.18); font-size: 13px; color: rgba(243, 239, 228, 0.6); }

/* Inner page header ------------------------------------------------------ */
.page-hero { position: relative; overflow: hidden; background: var(--teal-bg); }
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 14%; opacity: 0.22; }
.page-hero__content { position: relative; display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 104px var(--gutter) 40px; text-align: center; }
.page-hero__title { font-family: var(--display); font-size: clamp(44px, 4.6vw, 68px); line-height: 1; color: #fff; text-transform: uppercase; text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25); }
.page-hero__intro { max-width: 640px; font-size: 18px; color: #fff; }

/* Prose ------------------------------------------------------------------ */
.prose { font-size: 18px; line-height: 1.75; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-family: var(--display); font-size: 36px; line-height: 1.1; text-transform: uppercase; }
.prose h3 { font-weight: 900; font-size: 20px; }
.prose ul, .prose ol { padding-left: 1.3em; }

/* Music page ------------------------------------------------------------- */
.latest__grid { display: grid; grid-template-columns: 380px minmax(0, 1fr); gap: 48px; align-items: center; }
.latest__cover { width: 100%; border-radius: 4px; box-shadow: 0 10px 30px rgba(31, 28, 25, 0.22); }
.latest__body { display: flex; flex-direction: column; gap: 14px; }
.latest__title { font-family: var(--display); font-size: clamp(38px, 3.8vw, 56px); line-height: 0.95; text-transform: uppercase; }
.latest__note { font-size: 18px; }
.tracklist { columns: 2; column-gap: 40px; padding-left: 22px; font-size: 15px; line-height: 1.85; }
.tracklist li { break-inside: avoid; }

.albums__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 32px 24px; }
.album-card { display: flex; flex-direction: column; gap: 12px; padding: 0; border: 0; background: none; text-align: left; cursor: pointer; }
.album-card__cover, .album-card .cover-placeholder { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 4px; box-shadow: 0 6px 18px rgba(31, 28, 25, 0.18); outline: 4px solid transparent; outline-offset: 5px; transition: outline-color 0.15s, transform 0.2s; }
.album-card:hover .album-card__cover { transform: translateY(-3px); }
.album-card[aria-expanded="true"] .album-card__cover { outline-color: var(--orange); }
.album-card__title { font-family: var(--display); font-size: 20px; line-height: 1.1; text-transform: uppercase; }
.album-card__meta { margin-top: -8px; font-size: 15px; color: var(--muted); }
.cover-placeholder { display: block; background: rgba(31, 28, 25, 0.12); }

.album-panel { position: relative; grid-column: 1 / -1; display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 40px; padding: 32px; overflow: hidden; transition: height 0.38s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s ease, transform 0.38s cubic-bezier(0.22, 0.61, 0.36, 1); background: var(--cream) url("../img/paper.webp") 0 0 / 1518px auto repeat; border-radius: 16px; box-shadow: 0 10px 30px rgba(31, 28, 25, 0.16); }
.album-panel__cover { width: 100%; border-radius: 4px; }
.album-panel__body { display: flex; flex-direction: column; gap: 16px; padding-right: 48px; }
.album-panel__title { font-family: var(--display); font-size: clamp(34px, 3.4vw, 48px); line-height: 0.95; text-transform: uppercase; }
.album-panel__note { font-size: 16px; color: var(--muted); }
.album-panel__close { position: absolute; top: 16px; right: 16px; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(31, 28, 25, 0.08); color: var(--ink); cursor: pointer; }
.album-panel__close:hover { background: rgba(31, 28, 25, 0.16); }
.albums__panels { display: none; }

/* Videos page ------------------------------------------------------------ */
.videos-page__featured { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 36px; align-items: end; padding-bottom: 32px; border-bottom: 1px solid rgba(31, 28, 25, 0.2); }
.videos-page__featured-meta { display: flex; flex-direction: column; gap: 8px; color: var(--muted); }
.videos-page__featured-title { font-family: var(--display); font-size: clamp(24px, 2.4vw, 34px); line-height: 1.05; text-transform: uppercase; color: var(--ink); }
.video-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px 24px; margin-top: 32px; list-style: none; }
.video-grid__title { margin-top: 10px; font-size: 16px; font-weight: 700; line-height: 1.3; text-align: center; }
.video-grid li.is-playing .video { outline: 4px solid var(--orange); outline-offset: 4px; }
.videos-home__item.is-playing .video { outline: 3px solid var(--orange); outline-offset: 3px; }

/* About page ------------------------------------------------------------- */
.about-page__photo { width: 100%; height: auto; border-radius: 14px; }
.about-page__grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 80px; align-items: start; margin-top: 44px; }
.about-page__bio { display: flex; flex-direction: column; }
.about-page__bio .section-title { font-size: 44px; margin-bottom: 6px; }
.about-page__bio > p:first-of-type { font-size: 22px; line-height: 1.55; font-weight: 700; }
.band-list__title { display: inline-block; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 6px solid var(--orange); font-family: var(--display); font-size: 30px; text-transform: uppercase; }
.band-list ul { list-style: none; border-bottom: 1px dashed rgba(31, 28, 25, 0.3); }
.band-list li { display: flex; flex-direction: column; gap: 2px; padding: 16px 0; border-top: 1px dashed rgba(31, 28, 25, 0.3); }
.band-list__name { font-family: var(--display); font-size: 24px; line-height: 1.1; text-transform: uppercase; }
.band-list__role { font-size: 15px; color: rgba(31, 28, 25, 0.75); }

/* ==========================================================================
   Tablet
   ========================================================================== */
@media (max-width: 1100px) {
	.site-header__inner { padding: 20px 28px; gap: 20px; }
	.site-nav__menu { gap: 22px; }
	.site-nav__menu a { font-size: 19px; }
	.site-logo img { width: 200px; }
	.release-feature__grid, .latest__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; }
	.videos-home__grid { grid-template-columns: 1fr; }
	.videos-home__list { flex-direction: row; }
	.videos-home__item { flex-direction: column; align-items: flex-start; flex: 1; }
	.videos-home__item .video { width: 100%; }
	.newsletter__inner { flex-direction: column; align-items: flex-start; gap: 32px; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.site-footer__contacts { grid-column: 1 / -1; }
	.about-page__grid { grid-template-columns: minmax(0, 1fr) 260px; gap: 56px; }
	.albums__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.merch-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.newsletter__title { white-space: normal; }
}

/* Mobile menu kicks in below 900px */
@media (max-width: 900px) {
	.site-header__inner { justify-content: space-between; padding: 10px 10px 10px 16px; }
	.site-logo img { width: 190px; }
	.menu-toggle { position: relative; z-index: 31; display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; margin-left: auto; border: 0; border-radius: 8px; background: rgba(31, 28, 25, 0.55); color: #fff; cursor: pointer; }
	.menu-toggle .icon--close { display: none; }
	.menu-open .menu-toggle .icon--menu { display: none; }
	.menu-open .menu-toggle .icon--close { display: block; }
	.header-tickets { display: inline-flex; align-items: center; height: 40px; padding: 0 16px; border-radius: 8px; background: var(--orange); color: var(--ink); font-family: var(--display); font-size: 16px; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; }
	.site-nav { position: fixed; inset: 0; z-index: 30; display: none; flex-direction: column; justify-content: center; gap: 40px; padding: 80px 24px 40px; background: var(--ink); }
	.menu-open .site-nav { display: flex; }
	.menu-open { overflow: hidden; }
	.is-inner .site-nav nav { margin: 0; }
	.site-nav__menu { flex-direction: column; align-items: center; gap: 18px; }
	.site-nav__menu a { font-size: 34px; text-shadow: none; }
	.site-nav__social { filter: none; }

	.release-feature__grid, .latest__grid { grid-template-columns: 1fr; }
	.latest__cover { max-width: 460px; }
	.merch-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.albums__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.videos-page__featured { grid-template-columns: 1fr; gap: 16px; }
	.album-panel { grid-template-columns: 240px minmax(0, 1fr); gap: 32px; padding: 32px; }
	.video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.vip { flex-direction: column; }
	.vip__img { width: 100%; }
	.about-page__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ==========================================================================
   Phone
   ========================================================================== */
@media (max-width: 720px) {
	:root { --section: 44px; }
	body { font-size: 16px; }
	.section-head { margin-bottom: 24px; }
	.section-title { font-size: 34px; }
	.section-actions { margin-top: 24px; }
	.section-actions .btn { width: 100%; }

	.hero { height: clamp(380px, calc(100svh - 176px), 580px); }
	.admin-bar .hero { height: clamp(380px, calc(100svh - 222px), 580px); }
	.hero__title { width: min(370px, 92vw); bottom: 44px; }

	.release-bar__inner { flex-direction: column; align-items: stretch; gap: 12px; padding-block: 16px; }
	.release-bar__info { gap: 14px; }
	.release-bar__cover { width: 60px; height: 60px; }
	.release-bar__title { font-size: 24px; }
	.release-bar__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
	.release-bar__actions .btn { padding-inline: 12px; font-size: 16px; }

	.vip { margin-bottom: 20px; }
	.tour-embed .seated-event-row { flex-direction: column !important; align-items: stretch !important; gap: 10px !important; padding: 14px 12px !important; }
	.tour-embed .seated-event-description-cells { grid-template-columns: 1fr; grid-template-areas: "date" "name" "loc" "details"; }
	.tour-embed .seated-event-date-cell { font-size: 19px !important; }
	.tour-embed .seated-event-venue-name { font-size: 14px !important; }
	.tour-embed .seated-event-venue-location { font-size: 17px !important; white-space: normal; }
	.tour-embed .seated-event-link-cells { justify-content: stretch !important; flex-basis: auto; width: auto !important; }
	.tour-embed .seated-event-link-cell { flex: 1 1 0; }
	.tour-embed .seated-event-link { width: 100% !important; min-width: 0 !important; }
	.vip__body { flex-direction: column; align-items: stretch; gap: 16px; padding: 16px; }
	.vip__title { font-size: 24px; }

	.merch-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 16px; }
	.merch-card__name { font-size: 14px; }
	.merch-card--all a { padding: 16px; }

	.btn-row .btn { flex: 1 1 100%; }
	.also-on__disc { margin-left: 0; flex-basis: 100%; }

	.videos-home__list { flex-direction: column; }
	.videos-home__item { flex-direction: row; align-items: center; }
	.videos-home__item .video { width: 128px; }
	.videos-home__title { font-size: 19px; }
	.videos-home__caption { font-size: 22px; }
	.video__icon { width: 60px; height: 60px; }
	.video--sm .video__icon { width: 32px; height: 32px; }

	.about-home__inner { align-items: flex-start; text-align: left; }
	.about-home__text { font-size: 17px; }

	.newsletter__text p { font-size: 16px; }

	.site-footer { padding: 44px 0 28px; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
	.site-footer__brand img { width: 250px; }
	.site-footer__menu { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
	.site-footer__contacts { grid-template-columns: 1fr; gap: 20px; }
	.site-footer__bottom { flex-direction: column; }

	.page-hero__content { padding: 84px var(--gutter) 28px; }

	.albums__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 16px; }
	.album-card__title { font-size: 18px; }
	.album-card__meta { font-size: 14px; }
	.album-panel { grid-template-columns: 1fr; gap: 16px; padding: 20px 18px; }
	.album-panel__cover { width: 60%; }
	.album-panel__body { padding-right: 0; }
	.tracklist { columns: 1; }

	.video-grid { grid-template-columns: 1fr; }
	.videos-page__featured-meta { flex-direction: column; }
	.videos-page__featured-title { font-size: 28px; }

	.about-page__grid { margin-top: 28px; }
	.about-page__bio .section-title { font-size: 34px; }
	.about-page__bio > p:first-of-type { font-size: 19px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}
