/* ============================================================
   Luis Giraldo, Sophisticated Jazz
   One stylesheet. Mobile-first. ~14 KB target.
   ============================================================ */

/* --- Design tokens ------------------------------------------ */
:root {
  /* Colour */
  --c-ink:         #0A0F1C;  /* deep midnight */
  --c-ink-soft:    #141A2B;
  --c-ink-deep:    #05080F;
  --c-paper:       #F4EDE0;  /* warm ivory */
  --c-paper-soft:  #FAF5EC;
  --c-paper-deep:  #E8DFCC;
  --c-brass:       #B8945C;
  --c-brass-light: #D4B074;
  --c-brass-bright:#E6C387;
  --c-rouge:       #6E2030;  /* deep oxblood */
  --c-mist:        #8B92A3;
  --c-mist-soft:   #CDD2DC;
  --c-line:        rgba(184, 148, 92, 0.32);
  --c-line-strong: rgba(184, 148, 92, 0.55);

  /* Typography */
  --ff-display: "Cormorant Garamond", "EB Garamond", Garamond, "Times New Roman", serif;
  --ff-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --fs-xs:  0.75rem;
  --fs-sm:  0.875rem;
  --fs-md:  1rem;
  --fs-lg:  1.125rem;
  --fs-xl:  1.375rem;
  --fs-2xl: clamp(1.75rem, 2.4vw + 1rem, 2.5rem);
  --fs-3xl: clamp(2.25rem, 3.6vw + 1rem, 3.5rem);
  --fs-hero: clamp(2.75rem, 5.5vw + 1rem, 5.25rem);

  --lh-tight: 1.08;
  --lh-snug:  1.25;
  --lh-base:  1.6;

  /* Spacing: 8pt grid */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4rem;
  --s-7: 6rem;
  --s-8: 8rem;

  /* Motion */
  --t-fast: 180ms;
  --t-base: 320ms;
  --t-slow: 600ms;
  --ease:   cubic-bezier(0.22, 1, 0.36, 1);

  --radius: 2px;
}

/* --- Reset -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
a { color: inherit; }

/* --- Base typography --------------------------------------- */
html { font-size: 17px; }
@media (min-width: 880px) { html { font-size: 18px; } }

body {
  font-family: var(--ff-body);
  font-size:   var(--fs-md);
  line-height: var(--lh-base);
  color:       var(--c-paper);
  background:  var(--c-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: var(--lh-tight);
  letter-spacing: -0.01em;
  color: var(--c-paper);
}

h1 {
  font-size: var(--fs-hero);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--fs-3xl);
  line-height: var(--lh-snug);
}

h3 {
  font-size: var(--fs-2xl);
  line-height: var(--lh-snug);
}

h4 {
  font-family: var(--ff-body);
  font-size:   var(--fs-md);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-brass-light);
  margin: 0;
}

p { max-width: 62ch; }

a {
  color: var(--c-brass-bright);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
a:hover, a:focus-visible { border-color: var(--c-brass-bright); }

::selection { background: var(--c-brass); color: var(--c-ink); }

/* --- Reusable type helpers --------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-brass-light);
  margin-bottom: var(--s-2);
}

.lede {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: var(--fs-xl);
  line-height: 1.45;
  color: var(--c-paper-soft);
  max-width: 60ch;
}

.muted { color: var(--c-mist-soft); }

/* --- Skip link --------------------------------------------- */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c-brass);
  color: var(--c-ink);
  padding: var(--s-1) var(--s-2);
  z-index: 100;
  font-weight: 600;
}
.skip:focus { left: var(--s-2); top: var(--s-2); }

/* --- Layout primitives ------------------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 720px)  { .container { padding-inline: 2.5rem; } }
@media (min-width: 1100px) { .container { padding-inline: 4rem; } }

.section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.section--tight  { padding-block: clamp(2rem, 4vw, 3.5rem); }
.section--paper  { background: var(--c-paper); color: var(--c-ink); }
.section--paper h1, .section--paper h2, .section--paper h3 { color: var(--c-ink); }
.section--paper h4 { color: var(--c-rouge); }
.section--paper a { color: var(--c-rouge); }
.section--paper .eyebrow { color: var(--c-rouge); }
.section--ink-deep { background: var(--c-ink-deep); }

.cols--2 {
  display: grid;
  gap: var(--s-5);
}
@media (min-width: 760px) {
  .cols--2 { grid-template-columns: 1fr 1fr; gap: var(--s-6); align-items: start; }
}

.cols--3 {
  display: grid;
  gap: var(--s-4);
}
@media (min-width: 760px)  { .cols--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cols--3 { grid-template-columns: repeat(3, 1fr); } }

.stack > * + * { margin-top: var(--s-3); }
.stack--lg > * + * { margin-top: var(--s-4); }

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--c-brass);
  color: var(--c-paper);
  background: transparent;
  transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
  border-radius: var(--radius);
}
.btn:hover, .btn:focus-visible {
  background: var(--c-brass);
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-brass);
}
.btn--primary {
  background: var(--c-brass);
  color: var(--c-ink);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--c-brass-bright);
  border-color: var(--c-brass-bright);
}
.btn--ghost {
  border-color: var(--c-mist);
  color: var(--c-paper);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  border-color: var(--c-paper);
  background: transparent;
  color: var(--c-paper);
}

.section--paper .btn { color: var(--c-ink); }
.section--paper .btn:hover, .section--paper .btn:focus-visible {
  background: var(--c-ink); color: var(--c-paper);
}
.section--paper .btn--primary { color: var(--c-ink); }
.section--paper .btn--primary:hover { color: var(--c-paper); }

/* --- Site header ------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 15, 28, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(184, 148, 92, 0.15);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
}
.brand {
  font-family: var(--ff-display);
  font-size: clamp(1.65rem, 1vw + 1.25rem, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.05;
  color: var(--c-paper);
  border-bottom: 0;
}
.brand:hover { color: var(--c-brass-bright); }
.brand small {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-brass);
  margin-top: 4px;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  padding: 12px 10px;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--c-paper);
  transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--c-ink-soft);
  border-top: 1px solid var(--c-line);
  padding: var(--s-3) 1.5rem var(--s-4);
}
.site-nav.is-open { display: block; }
.site-nav ul { display: flex; flex-direction: column; gap: var(--s-2); }
.site-nav a {
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-paper);
  font-weight: 500;
  display: inline-block;
  padding-block: 0.6rem;
  border-bottom: 0;
}
.site-nav a[aria-current="page"] { color: var(--c-brass-bright); }

@media (min-width: 880px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: block;
    position: static;
    background: none;
    border: 0;
    padding: 0;
  }
  .site-nav ul {
    flex-direction: row;
    gap: var(--s-4);
    align-items: center;
  }
  .site-nav a {
    font-size: var(--fs-xs);
    padding-block: 0;
    position: relative;
  }
  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 1px;
    background: var(--c-brass);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-base) var(--ease);
  }
  .site-nav a:hover::after,
  .site-nav a:focus-visible::after,
  .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
}

/* --- Hero -------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  padding-block: var(--s-7) var(--s-6);
  overflow: hidden;
}
.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(5, 8, 15, 0.45) 0%,
      rgba(5, 8, 15, 0.55) 35%,
      rgba(5, 8, 15, 0.88) 75%,
      rgba(5, 8, 15, 0.96) 100%);
}
.hero__content {
  max-width: 620px;
  text-align: left;
}
.hero h1 {
  margin-top: var(--s-2);
  font-weight: 400;
  font-size: clamp(2.5rem, 4.2vw + 1rem, 4.25rem);
}
.hero h1 em {
  font-style: italic;
  color: var(--c-brass-bright);
  font-weight: 400;
}
.hero__sub {
  margin-top: var(--s-3);
  font-size: var(--fs-lg);
  color: var(--c-paper-soft);
  max-width: 44ch;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-4);
}

/* Page header (non-home hero) */
.page-hero {
  padding-block: clamp(6rem, 11vw, 9rem) clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--c-line);
}
.page-hero h1 { font-size: clamp(2.5rem, 4.5vw + 1rem, 4.25rem); }
.page-hero__sub { margin-top: var(--s-3); max-width: 60ch; color: var(--c-mist-soft); }

/* --- Cards / tiles ----------------------------------------- */
.tile {
  border: 1px solid var(--c-line);
  padding: var(--s-4) var(--s-3) var(--s-4);
  background: var(--c-ink-soft);
  transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.tile:hover { border-color: var(--c-line-strong); }
.tile h3 { font-size: 1.6rem; margin-bottom: var(--s-2); }
.tile p { color: var(--c-mist-soft); font-size: var(--fs-md); }
.tile__num {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--c-brass);
  font-size: 1.5rem;
  display: block;
  margin-bottom: var(--s-2);
}

/* --- Album cards (music page + home featured) -------------- */
.album {
  display: grid;
  gap: var(--s-3);
}
@media (min-width: 760px) {
  .album { grid-template-columns: 320px 1fr; gap: var(--s-5); align-items: start; }
}
@media (min-width: 1000px) {
  .album { grid-template-columns: 380px 1fr; gap: var(--s-6); }
}
.album + .album { margin-top: clamp(3rem, 6vw, 5rem); padding-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--c-line); }
.album__cover img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--c-line);
}
.album__meta {
  display: flex;
  gap: var(--s-2);
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: var(--s-2);
}
.album__year {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--c-brass);
  font-size: 1.25rem;
}
.album h2 { font-size: clamp(2rem, 3vw + 0.5rem, 2.75rem); margin: 0; }
.album__links {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
  margin-top: var(--s-3);
}
.album__notes p { margin-top: var(--s-2); }
.album__credits {
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--c-line);
  font-size: var(--fs-sm);
  color: var(--c-mist-soft);
  font-family: var(--ff-body);
}
.album__credits dl { display: grid; grid-template-columns: max-content 1fr; gap: 0.25rem 1rem; }
.album__credits dt { color: var(--c-mist); font-weight: 500; }

.embed-placeholder {
  margin-top: var(--s-3);
  padding: var(--s-3);
  border: 1px dashed var(--c-line-strong);
  background: rgba(184, 148, 92, 0.04);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  color: var(--c-mist-soft);
}
.embed-placeholder strong { color: var(--c-brass-light); }

.embeds {
  display: grid;
  gap: var(--s-2);
  margin-top: var(--s-3);
}
@media (min-width: 900px) {
  .embeds { grid-template-columns: 1fr 1fr; gap: var(--s-3); }
}
.embeds iframe {
  width: 100%;
  max-width: 100%;
  border: 0;
  display: block;
  background: var(--c-ink-soft);
}

/* --- Pull quote -------------------------------------------- */
.pullquote {
  position: relative;
  padding: var(--s-5) var(--s-4);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.pullquote blockquote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2vw + 0.75rem, 2.25rem);
  line-height: 1.4;
  max-width: 38ch;
  color: var(--c-paper);
}
.pullquote cite {
  display: block;
  margin-top: var(--s-3);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-brass-light);
}

.section--paper .pullquote blockquote { color: var(--c-ink); }
.section--paper .pullquote cite { color: var(--c-rouge); }

/* --- Definition lists for credits / specs ------------------ */
.spec-list {
  display: grid;
  gap: var(--s-1);
  border-top: 1px solid var(--c-line);
  padding-top: var(--s-3);
}
@media (min-width: 600px) {
  .spec-list { grid-template-columns: 220px 1fr; gap: var(--s-1) var(--s-4); }
}
.spec-list dt {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-brass);
  padding-top: 0.4rem;
}
.spec-list dd { margin: 0; color: var(--c-paper-soft); }

.section--paper .spec-list dt { color: var(--c-rouge); }
.section--paper .spec-list dd { color: var(--c-ink); }

/* --- Repertoire list --------------------------------------- */
.rep-list {
  columns: 1;
  gap: var(--s-4);
}
@media (min-width: 600px) { .rep-list { columns: 2; } }
.rep-list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--c-line);
  break-inside: avoid;
  font-size: var(--fs-md);
}

/* --- Inline ruled details (specialty programs) ------------- */
.program {
  padding: var(--s-4) 0;
  border-top: 1px solid var(--c-line);
}
.program:last-of-type { border-bottom: 1px solid var(--c-line); }
.program h3 { font-size: 1.9rem; }
.program__tag {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-brass);
  display: block;
  margin-bottom: var(--s-1);
}

/* --- Forms ------------------------------------------------- */
.form-card {
  border: 1px solid var(--c-line);
  padding: var(--s-4);
  background: var(--c-ink-soft);
}
.section--paper .form-card { background: var(--c-paper-soft); border-color: rgba(110, 32, 48, 0.25); }
.embed-zoho { min-height: 600px; }
/* Override Zoho's inline width: 90% so the iframe fills the form card. */
.embed-zoho iframe { width: 100% !important; max-width: 100% !important; }

/* --- Mailchimp signup form (homepage mailing-list)
   Styles target Mailchimp's stock ids/classes so we can paste their bare
   markup and have it match the site without a build step. */
#mc_embed_signup {
  font-family: var(--ff-body);
  color: var(--c-paper);
}
#mc_embed_signup_scroll {
  display: grid;
  gap: var(--s-2);
}
#mc_embed_signup .indicates-required {
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-mist);
  margin: 0;
}
#mc_embed_signup .asterisk { color: var(--c-brass); }

#mc_embed_signup .mc-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
#mc_embed_signup label {
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-paper);
}
#mc_embed_signup input[type="email"],
#mc_embed_signup input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--c-paper);
  background: var(--c-ink);
  border: 1px solid rgba(184, 148, 92, 0.32);
  border-radius: var(--radius);
  transition: border-color var(--t-base) var(--ease), background-color var(--t-base) var(--ease);
}
#mc_embed_signup input[type="email"]::placeholder,
#mc_embed_signup input[type="text"]::placeholder {
  color: var(--c-mist);
}
#mc_embed_signup input[type="email"]:hover,
#mc_embed_signup input[type="text"]:hover {
  border-color: var(--c-brass);
}
#mc_embed_signup input[type="email"]:focus,
#mc_embed_signup input[type="text"]:focus {
  border-color: var(--c-brass-bright);
  outline: none;
}

#mc_embed_signup .mc-submit { margin-top: var(--s-2); }
#mc_embed_signup .button {
  width: 100%;
  padding: 14px 20px;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ink);
  background: var(--c-brass);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color var(--t-base) var(--ease);
}
#mc_embed_signup .button:hover,
#mc_embed_signup .button:focus-visible {
  background: var(--c-brass-bright);
  outline: none;
}

#mc_embed_signup #mce-responses {
  font-size: var(--fs-sm);
  margin-top: var(--s-1);
}
#mc_embed_signup #mce-error-response { color: #E07060; }
#mc_embed_signup #mce-success-response { color: var(--c-brass-bright); }

/* --- Mailing list (home) ----------------------------------- */
.subscribe {
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding-block: var(--s-6);
}
.subscribe h2 { font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem); }
.subscribe p { color: var(--c-mist-soft); margin-top: var(--s-2); max-width: 50ch; }

/* --- Footer ------------------------------------------------ */
.site-footer {
  background: var(--c-ink-deep);
  border-top: 1px solid var(--c-line);
  padding-block: var(--s-5) var(--s-4);
  color: var(--c-mist-soft);
  font-size: var(--fs-sm);
}
.site-footer__grid {
  display: grid;
  gap: var(--s-4);
}
@media (min-width: 760px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s-5); }
}
.site-footer h4 { color: var(--c-brass); font-size: 0.7rem; margin-bottom: var(--s-2); }
.site-footer a { color: var(--c-paper-soft); border-bottom: 0; }
.site-footer a:hover { color: var(--c-brass-bright); }
.site-footer ul { display: grid; gap: 0.6rem; }
.site-footer__bottom {
  margin-top: var(--s-5);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(184, 148, 92, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-2);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  color: var(--c-mist);
}
.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.streaming-links a {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-brass);
}
.streaming-links a:hover { color: var(--c-brass-bright); }

/* --- Image utility ----------------------------------------- */
.feature-image {
  margin: var(--s-5) 0;
  border: 1px solid var(--c-line);
}
.feature-image img { width: 100%; height: auto; }
.feature-image figcaption {
  padding: var(--s-2) var(--s-3);
  font-size: var(--fs-sm);
  color: var(--c-mist-soft);
  background: var(--c-ink-soft);
  border-top: 1px solid var(--c-line);
}

/* Stacked photo column, used on /about/ for the Shakira + Beverly Hilton pair. */
.about-photos { display: grid; gap: var(--s-3); }
.about-photos .feature-image { margin: 0; }

/* --- Gallery (performances page) --------------------------- */
.gallery {
  display: grid;
  gap: var(--s-2);
  margin-top: var(--s-4);
}
@media (min-width: 720px) {
  .gallery { grid-template-columns: 1fr 1fr; gap: var(--s-3); }
}
.gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--c-line);
}

/* --- Reduced motion ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Print ------------------------------------------------- */
@media print {
  .site-header, .site-footer, .nav-toggle, .btn { display: none; }
  body { background: #fff; color: #000; }
}
