/* ============================================================
   Zanmi Studio — Artist Site Template · Theme stylesheet
   Brand tokens come from theme-vars.css (generated from site.json).
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body), system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--color-ink);
  background: var(--color-paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); }
h1, h2, h3, h4 {
  font-family: var(--font-headings), system-ui, sans-serif;
  line-height: 1.2;
  margin: 0 0 .6em;
  color: var(--color-primary);
}
.display { font-family: var(--font-display), var(--font-headings), cursive; font-weight: 400; }

.wrap { width: min(1120px, 92%); margin-inline: auto; }
.section { padding: 3.5rem 0; }
.section--tint { background: var(--color-sand-light); }
.eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: .78rem;
  font-weight: 700; color: var(--color-accent-deep); margin-bottom: .6rem;
}
.section h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.lead { font-size: 1.08rem; max-width: 62ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .8rem 1.5rem; border-radius: 999px;
  font-family: var(--font-headings); font-weight: 700; font-size: .95rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px color-mix(in srgb, var(--color-primary) 18%, transparent); }
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-primary-deep); }
.btn--accent { background: var(--color-accent); color: #fff; }
.btn--accent:hover { background: var(--color-accent-deep); }
.btn--whatsapp { background: #1faa55; color: #fff; }
.btn--whatsapp:hover { background: #178a44; }
.btn--outline { border-color: var(--color-primary); color: var(--color-primary); background: transparent; }
.btn--outline:hover { background: var(--color-primary); color: #fff; }
.btn--light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.65); }
.btn--light:hover { background: rgba(255,255,255,.28); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.btn-row.center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--color-primary); color: #fff;
  box-shadow: 0 2px 14px color-mix(in srgb, var(--color-primary-deep) 25%, transparent);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .7rem 0; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: #fff; }
.brand img { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.08); }
.brand-name { font-family: var(--font-display); font-size: 1.65rem; line-height: 1; }
.brand-sub { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; opacity: .85; font-family: var(--font-headings); }
.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 1.7rem; cursor: pointer; padding: .3rem .5rem; }
.site-nav ul { display: flex; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.site-nav a { color: #fff; text-decoration: none; font-family: var(--font-headings); font-weight: 600; font-size: .95rem; opacity: .92; }
.site-nav a:hover, .site-nav a[aria-current="page"] { opacity: 1; text-decoration: underline; text-underline-offset: 6px; text-decoration-color: var(--color-sand); }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; background: var(--color-primary-deep); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 72% 62% at 50% 48%, rgba(5,18,38,.5) 0%, rgba(5,18,38,0) 72%); }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-inner { position: relative; padding: 5.5rem 0 4.5rem; text-align: center; }
.hero-logo { width: 92px; height: 92px; margin: 0 auto 1.2rem; border-radius: 50%; background: rgba(255,255,255,.1); padding: 6px; }
.hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(3rem, 10vw, 5.5rem); color: #fff; margin: 0; text-shadow: 0 2px 8px rgba(0,0,0,.6), 0 8px 32px rgba(0,0,0,.5); }
.hero .tagline { font-family: var(--font-headings); font-weight: 600; font-size: clamp(1.05rem, 2.6vw, 1.5rem); letter-spacing: .04em; color: var(--color-sand); margin: .6rem 0 0; text-shadow: 0 1px 10px rgba(0,0,0,.55); }
.hero .eyebrow { color: var(--color-sand); text-shadow: 0 1px 8px rgba(0,0,0,.55); }
.hero p.strap { max-width: 60ch; margin: 1.1rem auto 0; opacity: .94; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid--cards { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.card {
  background: #fff; border-radius: 14px; overflow: hidden; text-decoration: none; color: inherit;
  box-shadow: 0 2px 10px rgba(30,25,15,.08); border: 1px solid color-mix(in srgb, var(--color-accent) 18%, transparent);
  display: flex; flex-direction: column; transition: transform .16s ease, box-shadow .16s ease;
}
a.card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px color-mix(in srgb, var(--color-primary) 16%, transparent); }
.card-media { position: relative; aspect-ratio: 4/4.6; overflow: hidden; background: var(--color-sand-light); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.card-title { font-family: var(--font-headings); font-weight: 700; font-size: 1.08rem; color: var(--color-primary); margin: 0; }
.card-meta { font-size: .88rem; opacity: .75; margin: 0; }
.card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: .6rem; }
.price { font-family: var(--font-headings); font-weight: 800; font-size: 1.15rem; color: var(--color-accent-deep); }
.badge {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .28rem .7rem; border-radius: 999px;
}
.badge--in { background: #e5f4ea; color: #166b3a; }
.badge--out { background: #f3e7dc; color: #8a5a35; }

/* ---------- Gallery filters ---------- */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.4rem 0 2rem; }
.filter-btn {
  border: 2px solid var(--color-primary); background: transparent; color: var(--color-primary);
  border-radius: 999px; padding: .5rem 1.2rem; font-family: var(--font-headings); font-weight: 700;
  font-size: .9rem; cursor: pointer;
}
.filter-btn[aria-pressed="true"] { background: var(--color-primary); color: #fff; }
.gallery-count { font-size: .95rem; opacity: .75; margin-bottom: 1rem; }

/* ---------- About ---------- */
.about-grid { display: grid; gap: 2.2rem; align-items: start; }
.about-portrait img { border-radius: 16px; box-shadow: 0 14px 34px color-mix(in srgb, var(--color-primary) 18%, transparent); }
.about-portrait figcaption { font-size: .85rem; opacity: .7; margin-top: .6rem; text-align: center; }
.fact-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .9rem; margin: 1.6rem 0 0; padding: 0; list-style: none; }
.fact-list li { background: #fff; border: 1px solid color-mix(in srgb, var(--color-accent) 25%, transparent); border-radius: 10px; padding: .8rem 1rem; }
.fact-list .k { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--color-accent-deep); font-weight: 700; }
.fact-list .v { font-family: var(--font-headings); font-weight: 600; color: var(--color-primary); }

/* ---------- Press ---------- */
.press-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.4rem; align-items: center; margin-top: 2rem; }
.press-item { text-align: center; text-decoration: none; color: inherit; }
.press-item img { max-height: 64px; width: auto; margin: 0 auto .6rem; filter: grayscale(15%); }
.press-item span { font-size: .82rem; opacity: .75; font-family: var(--font-headings); font-weight: 600; }
a.press-item:hover img { filter: none; transform: scale(1.04); }
.press-item img { transition: transform .15s ease; }

/* ---------- Feature / custom section ---------- */
.feature { background: var(--color-primary); color: #fff; border-radius: 20px; overflow: hidden; }
.feature-grid { display: grid; }
.feature-media { display: flex; align-items: center; justify-content: center; }
.feature-media .video-facade { align-self: center; width: 100%; }
.feature img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.feature-body { padding: 2.4rem; }
.feature-body h2, .feature-body .eyebrow { color: var(--color-sand); }
.feature-body p { opacity: .93; }

/* ---------- Products showcase (Studio) ---------- */
.products-note {
  display: inline-flex; align-items: center; gap: .5rem; font-size: .85rem;
  background: #fff; border: 1px dashed var(--color-accent); color: var(--color-accent-deep);
  padding: .5rem 1rem; border-radius: 999px; margin-bottom: 1.6rem; font-weight: 600;
}
.shop-link { font-family: var(--font-headings); font-weight: 700; color: var(--color-primary); text-decoration: none; }
.shop-link:hover { text-decoration: underline; }

/* ---------- Contact ---------- */
.contact-card {
  background: var(--color-primary); color: #fff; border-radius: 20px; padding: 2.6rem;
  text-align: center;
}
.contact-card h2 { color: #fff; }
.contact-card .eyebrow { color: var(--color-sand); }
.contact-lines { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: .7rem; font-size: 1.02rem; }
.contact-lines a { color: var(--color-sand); font-weight: 600; }
.social-row { display: flex; justify-content: center; gap: 1.1rem; margin-top: 1.4rem; flex-wrap: wrap; }
.social-row a { color: #fff; text-decoration: none; font-family: var(--font-headings); font-weight: 600; border: 1px solid rgba(255,255,255,.4); padding: .5rem 1.1rem; border-radius: 999px; font-size: .9rem; }
.social-row a:hover { background: rgba(255,255,255,.14); }

/* ---------- Artwork detail ---------- */
.artwork-layout { display: grid; gap: 2.4rem; align-items: start; }
.artwork-media img { border-radius: 16px; box-shadow: 0 16px 40px color-mix(in srgb, var(--color-primary) 16%, transparent); background: #fff; }
.artwork-lifestyle { margin: 1.6rem 0 0; }
.artwork-lifestyle img { width: 100%; height: auto; display: block; }
.artwork-lifestyle figcaption { text-align: center; font-size: .9rem; color: color-mix(in srgb, var(--color-ink) 72%, transparent); margin-top: .6rem; }
.artwork-info h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: .3rem; }
.artwork-status { margin: .9rem 0 1.2rem; }
.spec-table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: .98rem; }
.spec-table th, .spec-table td { text-align: left; padding: .65rem .2rem; border-bottom: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent); vertical-align: top; }
.spec-table th { font-family: var(--font-headings); color: var(--color-accent-deep); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; width: 34%; }
.enquiry-box { background: #fff; border: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent); border-radius: 14px; padding: 1.5rem; margin-top: 1.6rem; }
.enquiry-box h2 { font-size: 1.25rem; }
.enquiry-box p { font-size: .95rem; }
.artwork-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; flex-wrap: wrap; }
.artwork-gallery { margin-top: 3.2rem; }
.artwork-gallery h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: .4rem; }
.artwork-gallery .gallery-sub { color: color-mix(in srgb, var(--color-ink) 72%, transparent); margin-bottom: 1.4rem; }
.artwork-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.4rem; }
.artwork-gallery-grid figure { margin: 0; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px color-mix(in srgb, var(--color-primary) 12%, transparent); display: flex; flex-direction: column; cursor: zoom-in; }
.artwork-gallery-grid img { width: 100%; height: auto; display: block; }
.artwork-gallery-grid figcaption { text-align: center; font-size: .82rem; color: color-mix(in srgb, var(--color-ink) 72%, transparent); padding: .55rem .6rem .7rem; }

/* ---- Lightbox: click any "More photos" image to see it full-size ---- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(10, 8, 14, .92); display: flex; align-items: center; justify-content: center; padding: 2rem; cursor: zoom-out; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px; box-shadow: 0 24px 80px rgba(0, 0, 0, .5); }
.lightbox-close { position: absolute; top: 1rem; right: 1.25rem; color: #fff; font-size: 2rem; line-height: 1; background: none; border: 0; cursor: pointer; }

/* ---------- Exhibitions ---------- */
.exhib-timeline { list-style: none; margin: 2rem 0 0; padding: 0; border-left: 3px solid var(--color-sand); }
.exhib-timeline li { position: relative; padding: 0 0 1.6rem 1.6rem; }
.exhib-timeline li::before {
  content: ""; position: absolute; left: -9px; top: 6px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--color-accent); border: 3px solid var(--color-paper);
  box-shadow: 0 0 0 2px var(--color-accent);
}
.exhib-year { font-family: var(--font-headings); font-weight: 800; color: var(--color-primary); font-size: 1.05rem; }
.exhib-title { font-weight: 600; }
.exhib-venue { opacity: .78; font-size: .95rem; }

/* ---------- Prose pages ---------- */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.2rem; }
.prose ul { padding-left: 1.3rem; }
.article-figure { margin: 2rem 0; }
.article-figure img { width: 100%; height: auto; display: block; border-radius: 8px; }
.article-figure a img { transition: transform .25s ease; }
.article-figure a:hover img { transform: scale(1.01); }
.article-figure figcaption { font-size: .85rem; opacity: .7; margin-top: .6rem; text-align: center; }

/* ---------- Breadcrumbs ---------- */
.crumbs { padding-top: 1.6rem; font-size: .9rem; }
.crumbs a { color: var(--color-accent-deep); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-primary); color: #fff; margin-top: 0; }
.footer-inner { display: grid; gap: 2rem; padding: 3rem 0 2rem; }
.footer-brand .brand-name { font-size: 2rem; }
.footer-logo { display: inline-block; }
.footer-logo img { width: 200px; height: auto; display: block; }
.footer-brand .brand-sub { margin-top: .9rem; }
.footer-nav ul { list-style: none; margin: .8rem 0 0; padding: 0; display: grid; gap: .5rem; }
.footer-nav a { color: var(--color-sand); text-decoration: none; font-weight: 600; font-family: var(--font-headings); }
.footer-nav a:hover { text-decoration: underline; }
.footer-contact { font-size: .95rem; }
.footer-contact a { color: var(--color-sand); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.18); padding: 1.2rem 0 1.6rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; align-items: center; justify-content: space-between;
  font-size: .88rem; opacity: .92;
}
.studio-link { color: var(--color-sand); font-weight: 700; text-decoration: none; font-family: var(--font-headings); }
.studio-link:hover { text-decoration: underline; }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 5rem 0; }
.notfound h1 { font-family: var(--font-display); font-size: clamp(3rem, 9vw, 5rem); }

/* ---------- Responsive ---------- */
@media (min-width: 760px) {
  .about-grid { grid-template-columns: 340px 1fr; }
  .feature-grid { grid-template-columns: 1.05fr 1fr; }
  .feature--img-right .feature-media { order: 2; }
  .artwork-layout { grid-template-columns: 1.1fr .9fr; }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr 1fr; column-gap: 4rem; }
  .section { padding: 4.5rem 0; }
}
@media (max-width: 759px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; width: 100%; }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; padding: .6rem 0 1rem; }
  .site-nav li { border-top: 1px solid rgba(255,255,255,.14); }
  .site-nav a { display: block; padding: .7rem 0; }
  .header-inner { flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ---- Click-to-play video facade (custom sections) ---- */
.video-facade {
  position: relative; display: block; width: 100%;
  padding: 0; border: 0; background: none; cursor: pointer;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 12px 34px rgba(20, 30, 60, .18);
}
.video-facade img { display: block; width: 100%; height: auto; }
.video-play {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
  background: linear-gradient(to top, rgba(10, 20, 40, .35), transparent 55%);
  transition: background .2s ease;
}
.video-play::before {
  content: ""; position: absolute; width: 84px; height: 84px;
  border-radius: 50%; border: 2px solid rgba(255, 255, 255, .9);
  background: rgba(14, 60, 121, .55);
}
.video-play::after {
  content: ""; width: 0; height: 0;
  border-left: 26px solid #fff; border-top: 16px solid transparent;
  border-bottom: 16px solid transparent; margin-left: 8px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .45));
}
.video-facade:hover .video-play::before { background: rgba(14, 60, 121, .8); }
.video-frame {
  width: 100%; aspect-ratio: 16 / 9; border: 0;
  border-radius: 14px; box-shadow: 0 12px 34px rgba(20, 30, 60, .18);
}

/* ---- FAQ (details/summary accordions) ---- */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-wrap > .eyebrow, .faq-wrap > h2 { text-align: center; }
.faq-list { margin-top: 1.6rem; }
.faq-item {
  background: #fff; border: 1px solid color-mix(in srgb, var(--color-accent) 18%, transparent);
  border-radius: 12px; margin-bottom: .7rem; box-shadow: 0 2px 10px rgba(30,25,15,.06);
}
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding: 1rem 1.2rem; font-family: var(--font-headings);
  font-weight: 600; font-size: 1.02rem; color: var(--color-ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--color-sand-light); color: var(--color-primary-deep);
  font-size: 1.25rem; line-height: 30px; text-align: center; font-weight: 400;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item summary:hover::after { background: var(--color-sand); }
.faq-a { padding: 0 1.2rem 1.15rem; }
.faq-a p { margin: 0; }

/* ---- News ---- */
.news-grid {
  display: grid; gap: 1.2rem; margin-top: 1.6rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.news-card {
  display: block; background: #fff; border-radius: 14px; padding: 1.5rem;
  text-decoration: none; color: inherit;
  border: 1px solid color-mix(in srgb, var(--color-accent) 18%, transparent);
  box-shadow: 0 2px 10px rgba(30,25,15,.08);
  transition: transform .16s ease, box-shadow .16s ease;
}
a.news-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(30,25,15,.12); }
.news-card h3 { font-size: 1.25rem; margin: .4rem 0 .6rem; color: var(--color-primary-deep); }
.news-card p { margin: 0 0 .8rem; }
.news-date {
  font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--color-accent-deep); font-weight: 600; margin: 0;
}
.news-more { font-weight: 600; color: var(--color-primary); font-size: .95rem; }

/* ---------- Press page ---------- */
.press-hero {
  background:
    radial-gradient(ellipse 90% 130% at 50% -30%, rgba(255,255,255,.09) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(160deg, var(--color-primary-deep), var(--color-primary) 70%);
  color: #fff;
  padding: 4rem 0 3.4rem;
}
.press-hero .eyebrow { color: var(--color-sand); }
.press-hero h1 {
  font-family: var(--font-display); font-weight: 400; color: #fff;
  font-size: clamp(2.6rem, 7vw, 4.2rem); margin: 0 0 .5rem;
}
.press-hero .lead { color: rgba(255,255,255,.92); max-width: 64ch; }
.press-group-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  border-bottom: 3px solid var(--color-primary);
  padding-bottom: .6rem; margin-bottom: 1.2rem;
}
.press-group-head h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.press-count {
  font-family: var(--font-headings); font-weight: 700; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase; white-space: nowrap;
  background: var(--color-primary); color: #fff;
  padding: .35rem .9rem; border-radius: 999px;
}
.press-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.4rem; margin: 1.6rem 0 0;
}
.press-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid color-mix(in srgb, var(--color-accent) 20%, transparent);
  border-top: 4px solid var(--color-primary);
  border-radius: 0 0 14px 14px; overflow: hidden;
  text-decoration: none; color: inherit;
  box-shadow: 0 2px 10px rgba(30,25,15,.08);
  transition: transform .16s ease, box-shadow .16s ease;
}
a.press-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px color-mix(in srgb, var(--color-primary) 18%, transparent); }
.press-logo {
  display: flex; align-items: center; justify-content: center;
  height: 96px; padding: .9rem 1.4rem;
  background: linear-gradient(180deg, var(--color-sand-light), #fff);
  border-bottom: 1px solid rgba(30,25,15,.08);
}
.press-logo img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; }
.press-logo--mono {
  font-family: var(--font-display); font-size: 2.6rem; color: #fff;
  background: linear-gradient(150deg, var(--color-primary), var(--color-primary-deep));
}
.press-body { padding: 1.2rem 1.3rem 1.3rem; display: flex; flex-direction: column; gap: .15rem; flex: 1; }
.press-card h3 { font-size: 1.12rem; margin: .3rem 0 .5rem; color: var(--color-primary-deep); }
.press-card p { margin: 0 0 .7rem; font-size: .95rem; }
.press-card .news-more { margin-top: auto; padding-top: .5rem; font-size: .9rem; }
.press-pub {
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--color-accent-deep); font-weight: 700; margin: 0;
}
/* Featured story card */
.press-feature {
  display: grid; grid-template-columns: 1.05fr 1fr;
  background: linear-gradient(140deg, var(--color-primary-deep), var(--color-primary) 75%);
  color: #fff; border-radius: 18px; overflow: hidden; text-decoration: none;
  margin: 1.6rem 0 0; box-shadow: 0 10px 30px color-mix(in srgb, var(--color-primary-deep) 30%, transparent);
  transition: transform .16s ease, box-shadow .16s ease;
}
a.press-feature:hover { transform: translateY(-4px); box-shadow: 0 18px 44px color-mix(in srgb, var(--color-primary-deep) 38%, transparent); }
.press-feature-media { min-height: 300px; }
.press-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.press-feature-body { padding: 2.2rem 2.2rem 2rem; display: flex; flex-direction: column; justify-content: center; }
.press-feature-body .press-pub { color: var(--color-sand); }
.press-feature-body h3 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 2rem); margin: .4rem 0 .7rem; }
.press-feature-body p { color: rgba(255,255,255,.9); margin: 0 0 1rem; }
.press-feature-logo { display: inline-block; background: #fff; border-radius: 10px; padding: .45rem .9rem; margin-bottom: 1rem; }
.press-feature-logo img { max-height: 34px; width: auto; display: block; }
.press-feature-body .news-more { color: var(--color-sand); font-weight: 700; }
@media (max-width: 720px) {
  .press-feature { grid-template-columns: 1fr; }
  .press-feature-media { min-height: 0; aspect-ratio: 16/9; }
  .press-feature-body { padding: 1.6rem; }
}

/* Runway gallery (news articles) */
.article-gallery {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  margin: 30px 0 6px;
}
.article-gallery figure {
  margin: 0; border-radius: 14px; overflow: hidden;
  box-shadow: 0 12px 34px rgba(20, 30, 60, .16);
}
.article-gallery img { display: block; width: 100%; height: auto; }
.article-gallery figcaption {
  padding: 10px 14px; font-size: .85rem; color: #41506b; background: #fff;
}
.gallery-credit {
  font-size: .82rem; color: #5a6b85; margin: 10px 0 28px;
}
@media (max-width: 640px) {
  .article-gallery { grid-template-columns: 1fr; }
}
