/* ========== Root & Theme Tokens (Classic only) ========== */
:root {
  --font-serif: 'Merriweather', serif;
  --font-display: 'Lora', serif;

  /* Classic palette */
  --bg: rgb(40,70,60);
  --surface: #294b3f;
  --text: #ffffff;
  --muted: #cfe5dc;
  --accent: #3498db;

  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.15);
  --transition: 220ms ease;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-serif);
  line-height: 1.65;
  color: var(--text);
  background: transparent;
  position: relative;
  min-height: 100dvh;
}

/* Fullscreen background image behind everything */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 600px at 30% -10%, rgba(0,0,0,.35), transparent 60%),
    linear-gradient(to bottom, rgba(0,0,0,.30), rgba(0,0,0,.30)),
    url("greenish_concrete_darker.png") center / cover no-repeat;
  filter: saturate(.95) contrast(1.02);
}

/* Accessibility helper */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; margin: -1px;
  border: 0; padding: 0; white-space: nowrap; clip-path: inset(100%);
  clip: rect(0 0 0 0); overflow: hidden;
}

/* ========== Navigation ========== */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: .6rem 1rem; backdrop-filter: blur(6px);
  background: color-mix(in oklab, var(--bg) 60%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--text) 15%, transparent);
  transition: background var(--transition), box-shadow var(--transition);
}
.brand { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--text); text-decoration: none; letter-spacing: .08em; }
.nav-list { list-style: none; display: flex; gap: 1rem; margin: 0; padding: 0; }
.nav-link { color: var(--text); text-decoration: none; font-family: var(--font-display); font-weight: 700; font-size: 1rem; text-shadow: 0 1px 2px rgba(0,0,0,.3); }
.nav-link:hover { color: var(--accent); }
.nav-link.active { text-decoration: underline; text-underline-offset: 6px; }

.nav-actions { display: flex; gap: .8rem; align-items: center; }
.lang-toggle { display: inline-flex; gap: .5rem; padding: .1rem .25rem; border-radius: 999px; background: color-mix(in oklab, var(--surface) 70%, transparent); }
.lang-toggle button { border: 0; background: transparent; color: var(--text); font-family: var(--font-display); font-weight: 700; cursor: pointer; padding: .25rem .5rem; border-radius: 999px; }
.lang-toggle button.active { background: var(--accent); color: #fff; }
.social-nav a { color: var(--text); margin-left: .5rem; }
.social-nav a:hover { color: var(--accent); }

/* ========== Mobile Nav ========== */
.menu-toggle { display: none; background: transparent; border: 0; color: var(--text); font-size: 1.5rem; cursor: pointer; }
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-list {
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(10, 16, 14, 0.95);
    position: absolute; top: 100%; right: 0; left: 0; text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
  }
  .nav-list.open { display: flex; }
}
body.menu-open .site-nav {
  background: rgba(10,16,14,0.9);
  box-shadow: 0 6px 20px rgba(0,0,0,.45);
}

/* ========== Layout & Sections ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 1rem; }

section {
  margin: 2rem 0;
  padding: 1.2rem;
  background: rgba(25, 40, 35, 0.55);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: none;
  backdrop-filter: blur(2px);
}
section.active { display: block; animation: fadeIn .5s var(--transition); }
section h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; margin: 0 0 1rem; border-bottom: 2px solid var(--accent); padding-bottom: .5rem; }
.subhead { margin-top: .25rem; color: var(--muted); font-weight: 700; letter-spacing: .04em; }

/* ========== Home (bigger, no-crop) ========== */
.home {
  position: relative; display: block;
  min-height: 120vh;
  background: transparent; box-shadow: none; padding: 0; overflow: clip;
}
@media (min-width: 900px) { .home { min-height: 135vh; } }
.home-background {
  position: absolute; inset: 0;
  background-image: url('hero-image.jpg');
  background-size: contain;          /* show the full image */
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(.95);
  transform: scale(1.25);            /* bigger feel, still no crop */
  transform-origin: center;
}
.home-overlay-text { position: absolute; left: clamp(18px, 6vw, 60px); top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: .35rem; }
.home-overlay-text .name { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 5.8vw, 3.6rem); text-shadow: 0 2px 8px rgba(0,0,0,.5); opacity: .9; }
.home-overlay-text .role { font-family: var(--font-display); font-size: clamp(1.3rem, 3.8vw, 2rem); font-weight: 900; text-transform: lowercase; opacity: .95; }

/* ========== Media ========== */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.video-item { background: rgba(25, 40, 35, 0.55); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: .6rem; box-shadow: var(--shadow); }
.video-item h3 { font-family: var(--font-display); font-size: 1rem; margin: .25rem 0 .5rem; }
.video-item iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 10px; background: #000; }

/* ========== Gallery ========== */
.gallery-grid { display: grid; gap: .75rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.image-container { position: relative; overflow: hidden; border-radius: 12px; border: 1px solid rgba(255,255,255,.1); background: rgba(25, 40, 35, 0.45); box-shadow: var(--shadow); }
.image-container img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition), filter var(--transition); display: block; cursor: zoom-in; }
.image-container:hover img { transform: scale(1.04); filter: saturate(1.06); }

/* ========== Lightbox (fit-to-screen with dynamic max-height) ========== */
.lightbox[hidden] { display: none; }
.lightbox { position: fixed; inset: 0; z-index: 100; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.6); }

.lightbox-dialog {
  position: relative; z-index: 101;
  width: min(1100px, 94vw);
  height: 96vh; /* give image more room, caption stays inside */
  margin: 2vh auto;
  padding: .75rem;
  background: rgba(25, 40, 35, 0.95);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  box-shadow: 0 25px 80px rgba(0,0,0,.5);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  overflow: hidden;
  box-sizing: border-box;
}

.lightbox-image-wrap {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;                 /* allow flex child to shrink */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Always respect EXIF orientation and fit entirely */
.lightbox-dialog img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;               /* Later overridden by JS for exact fit */
  object-fit: contain;
  image-orientation: from-image;  /* handle rotated JPEGs correctly */
  border-radius: 8px;
  display: block;
}

.lightbox-dialog figcaption {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.3;
  display: flex; gap: .6rem; align-items: baseline;
  max-height: 22vh;               /* avoid runaway captions */
  overflow: auto;
}

/* Close button */
.lightbox-close {
  position: absolute; top: .25rem; right: .5rem;
  background: transparent; border: 0; color: #fff;
  font-size: 2rem; line-height: 1; cursor: pointer;
}

/* Navigation buttons */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border: 0; border-radius: 999px;
  background: rgba(0,0,0,.5); color: #fff;
  font-size: 2rem; line-height: 48px; text-align: center;
  cursor: pointer; user-select: none;
}
.lightbox-prev { left: .5rem; }
.lightbox-next { right: .5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(0,0,0,.7); }
#lb-counter { color: #fff; font-weight: 700; margin-right: .25rem; }

/* Mobile tweaks */
@media (max-width: 480px) {
  .lightbox-dialog { width: 96vw; height: 98vh; margin: 1vh auto; padding: .5rem; }
  .lightbox-prev, .lightbox-next { width: 42px; height: 42px; font-size: 1.6rem; }
}

/* ========== Cards (News/Press) ========== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.card { background: rgba(25, 40, 35, 0.55); padding: 1rem; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); box-shadow: var(--shadow); }
.card h3 { margin: 0 0 .5rem; font-family: var(--font-display); font-size: 1.1rem; }
.card p { margin: 0 0 .6rem; }
.card a { color: var(--accent); font-weight: 700; text-decoration: none; }
.card a:hover { text-decoration: underline; }

/* ========== Contact ========== */
.contact-form { display: grid; gap: .8rem; max-width: 540px; margin: .5rem auto 0; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: .7rem .8rem; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(25, 40, 35, 0.5);
  color: var(--text); font-size: 1rem;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 3px solid color-mix(in oklab, var(--accent) 30%, transparent); }
.contact-form button { padding: .7rem 1rem; border: 0; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 800; cursor: pointer; }
.contact-form button:hover { filter: brightness(1.05); }
.contact-info { text-align: center; margin-top: .6rem; color: var(--muted); }
.contact-info a { color: #fff; text-decoration: underline; }

/* ========== Footer ========== */
.site-footer { text-align: center; padding: 1rem; color: var(--text); background: transparent; }
.site-footer a { color: var(--accent); }

/* ========== Responsive tweaks ========== */
@media (max-width: 768px) { .site-nav { flex-wrap: wrap; gap: .6rem; } }

/* ========== Motion ========== */
@keyframes fadeIn { from {opacity:0; transform: translateY(6px);} to {opacity:1; transform: translateY(0);} }

/* === Static site background === */
body{
  background-image: url('greenish_concrete_darker.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (max-width:1024px){ body{ background-attachment: scroll; } }

/* Hide Contact Agency fallback link and empty block */
#contact-info:empty, .contact-info:empty { display:none; }
#contact-info a[href="#"], .contact-info a[href="#"], #contact-info a[href=""], .contact-info a[href=""] { display:none!important; }
@supports(selector(:has(*))){
  .contact-info:has(a[href="#"]), .contact-info:has(a[href=""]) { display:none!important; }
}

/* === Hero image === */
.home{ min-height: 92vh; margin:0; padding:0; border:0; border-radius:0; }
@media (min-width:2560px){ .home{ min-height: 96vh; } }
.home-background{ position:relative; overflow:hidden; }
.hero-picture, .hero-img{ position:absolute; inset:0; width:100%; height:100%; display:block; }
.hero-img{ object-fit:cover; object-position:60% 35%; border-radius:inherit; }
/* Laptop-friendly focus */
@media (min-width:1024px) and (max-width:1599px){
  .hero-img{ object-position:55% 28%; }
}
@media (min-width:1600px){ .hero-img{ object-position:58% 32%; } }
@media (min-width:2200px){ .hero-img{ object-position:56% 30%; } }

/* === Biography layout === */
#bio-text{
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  text-align: justify;
}
@media (min-width: 1200px){
  #bio-text{
    max-width: 1100px;
    column-count: 2;
    column-gap: 2.2rem;
  }
}


/* === Classic hero card (laptop-friendly) === */
.home{ min-height: 78vh; }

.home .home-background{
  max-width: clamp(980px, 82vw, 1280px);
  height: clamp(420px, 56vh, 720px);
  margin: clamp(24px, 4vw, 56px) auto;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  overflow: hidden;
  position: relative;
}
/* Keep card reasonably sized on 4K */
@media (min-width: 2560px){
  .home .home-background{
    max-width: 1400px;
    height: 60vh;
  }
}
/* Mobile: full width but sane height */
@media (max-width: 768px){
  .home .home-background{
    max-width: 92vw;
    height: 60vh;
    border-radius: 16px;
  }
}



/* === Force hero image to show (in addition to classic sizing) === */
.home .home-background{ 
  background-image: url('hero-image.jpg') !important;
  background-size: cover !important;
  background-position: 58% 32% !important;
  background-repeat: no-repeat !important;
  position: relative;
  overflow: hidden;
}
.hero-inline-fallback{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
}



/* === No-crop hero image (classic card) === */
.home{ min-height: 60vh; } /* allow shorter section since height is intrinsic */

.home .home-background{
  max-width: clamp(980px, 82vw, 1280px);
  margin: clamp(24px, 4vw, 56px) auto;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
  overflow: hidden;
  position: relative;
  background: none !important; /* cancel any background image */
}
.home .home-background::before,
.home .home-background::after{ background: none !important; opacity: 0 !important; }

/* The hero image dictates the height with its aspect ratio */
.hero-inline-fallback{
  display: block;
  width: 100%;
  height: auto;    /* <-- no crop */
  position: static;
  object-fit: contain;
  border-radius: inherit;
}

/* Mobile: slightly smaller card radius */
@media (max-width: 768px){
  .home .home-background{ max-width: 92vw; border-radius: 16px; }
}



/* === NO-CROP STRICT: the <img> dictates height; never crop === */
.home .home-background{
  height: auto !important;
  background: none !important;
  overflow: hidden;           /* keeps rounded corners only */
  position: relative;
}
/* Nuke any previously-set fixed heights on the card */
@media (min-width: 0px){
  .home .home-background{ height: auto !important; }
}
/* The image fills width and keeps aspect ratio */
.hero-inline-fallback{
  position: static !important;
  display: block;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: inherit;
}


/* === Biography: 2 columns desktop, narrow single on mobile === */
#biography .biography-text, #biography #bio-text, #biography .bio-text,
#biography .text, section#biography .content-card{
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  column-count: 2;
  column-gap: 2.2rem;
  line-height: 1.75;
  text-align: justify;
}
@media (max-width: 1199px){
  #biography .biography-text, #biography #bio-text, #biography .bio-text,
  #biography .text, section#biography .content-card{
    column-count: 1;
    max-width: 68ch;
  }
}

/* === Footer spacing tightened === */
.site-footer p, footer p, .footer-text p{
  margin-top: 0.15rem;
  margin-bottom: 0.15rem;
  line-height: 1.25;
}

/* === Role placement === */
.home-overlay-text .role{
  display: block;
  margin-top: 0.5rem; /* desktop baseline */
  margin-left: calc(clamp(6rem, 10vw, 18rem) + 1.5rem); /* sit under surname */
}
@media (max-width: 768px){
  .home-overlay-text .role{
    margin-left: 0;        /* simple on phones */
    margin-top: -0.6rem;   /* raise so it stays inside hero */
  }
}

/* ====== Fonts ====== */
@font-face { font-family: 'Proxima Nova'; src: url('ProximaNova-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Proxima Nova'; src: url('ProximaNova-Semibold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Proxima Nova'; src: url('ProximaNova-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

@font-face { font-family: 'Brandon Grotesque'; src: url('BrandonGrotesque-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Brandon Grotesque'; src: url('BrandonGrotesque-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

:root{
  --font-body: 'Proxima Nova', Inter, 'Nunito Sans', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
  --font-heading: 'Brandon Grotesque', Raleway, Montserrat, Poppins, 'Helvetica Neue', Arial, sans-serif;
}
html, body{ font-family: var(--font-body); }
h1, h2, h3, h4, h5, h6,
.nav-list a, .brand, .site-title,
.section-title, .home-overlay-text .name, .home-overlay-text .role{
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
  font-weight: 700;
}
.home-overlay-text .role{ font-weight: 600; }

/* Logo image in nav */
.site-nav .brand img {
  display: block;
  height: 36px;
  width: auto;
  object-fit: contain;
}


/* Logo image in nav */
.site-nav .brand img {
  display: block;
  height: 36px;
  width: auto;
  object-fit: contain;
}


/* Navbar logo styling */
.site-nav .brand img {
  display: block;
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* Nav logo sizing */
.site-nav .brand img {
  height: 32px;
  width: auto;
  object-fit: contain;
}


/* --- Mobile lightbox caption & close button fixes --- */
@media (max-width: 640px) {
  /* Captions pinned near bottom and readable */
  .lightbox .caption,
  #lightbox .caption,
  .lb-caption,
  .glightbox-clean .gdesc-inner,
  .gallery-lightbox .caption {
    position: fixed;
    left: 0;
    right: 0;
    bottom: env(safe-area-inset-bottom, 8px);
    padding: 10px 12px;
    font-size: 0.9rem;
    line-height: 1.35;
    color: #fff;
    max-height: 40vh;
    overflow-y: auto;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
    z-index: 10001;
    margin: 0 !important;
  }
  /* Ensure image isn't obscured by caption overlay */
  .lightbox img,
  #lightbox img,
  .glightbox-clean .gslide-image img {
    max-height: calc(100vh - 160px);
    object-fit: contain;
  }
  /* Make the close button reachable, aligned and with larger tap target */
  .lightbox .close,
  #lightbox .close,
  .lb-close,
  .glightbox-clean .gclose,
  .pswp__button--close {
    position: fixed !important;
    top: env(safe-area-inset-top, 10px);
    right: env(safe-area-inset-right, 10px);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .glightbox-clean .gclose { opacity: 1 !important; }
}



/* === Desktop Lightbox Close Button Alignment (no change to mobile rules) === */
@media (min-width: 641px) {
  #lightbox:not([hidden]) .lightbox-close {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    transform: none;
    z-index: 10002;
    cursor: pointer;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
  }
  #lightbox:not([hidden]) .lightbox-close > * {
    pointer-events: none;
  }
}

/* === 4K Hero: fill full screen without affecting smaller screens === */
@media (min-width: 1921px) {
  section.home,
  .home .home-background {
    height: 100svh; /* full screen on very large displays */
    min-height: 100svh;
  }
  .home .home-background {
    position: relative;
    overflow: hidden;
  }
  .home .hero-picture,
  .home .hero-img,
  .home .hero-inline-fallback {
    width: 100vw;
    height: 100svh;
    max-width: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
  }
}



/* === 4K Full‑bleed Hero (width + height), desktop only === */
@media (min-width: 1921px) {
  /* Make the home section and any common wrapper elements span the full viewport width */
  #home,
  #home .container,
  #home .section-inner,
  #home .content,
  #home .content-wrap,
  #home .content-inner,
  #home .hero,
  #home .home-hero,
  #home .home-background {
    width: 100vw !important;
    max-width: 100vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Ensure the hero image itself fills the screen */
  #home picture,
  #home .hero-picture,
  #home img.hero-img,
  #home .home-hero img,
  #home .hero-inline-fallback {
    width: 100vw !important;
    height: 100svh !important;
    max-width: 100vw !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
  }

  /* Keep overlay text comfortably inside on ultra-wide screens */
  #home .home-overlay-text {
    left: 5vw !important;
    right: auto;
    max-width: 60vw;
  }
}



/* === 4K Navigation layout & sizing (desktop ultra-wide only) === */
@media (min-width: 1921px) {
  .site-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100vw;
    max-width: 100vw;
    margin: 0 auto;
    padding: 20px 3vw; /* taller + breathing room on 4K */
    box-sizing: border-box;
  }
  .site-nav .brand { justify-self: start; }
  .site-nav .nav-actions { justify-self: end; display: flex; align-items: center; gap: 16px; }
  .site-nav .menu-toggle { display: none !important; } /* no burger on 4K */

  /* Center nav list and increase size/spacing for 4K */
  #primary-navigation.nav-list {
    display: flex;
    gap: 2.2vw;              /* scale spacing with width */
    align-items: center;
    justify-content: center; /* center in the middle column */
    margin: 0;
    padding: 0;
    list-style: none;
    transform: translateZ(0); /* counter any subpixel fuzz */
  }
  #primary-navigation .nav-link {
    font-size: 1.15rem;      /* bigger labels */
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 6px 2px;
    line-height: 1.2;
  }

  /* Language toggle & icons scale a bit too */
  .lang-toggle .lang-btn { font-size: 0.95rem; padding: 6px 10px; }
  .social-nav i { font-size: 1.05rem; }
}



/* === Revert 4K hero widening (keep height behavior); preserve 4K nav === */
@media (min-width: 1921px) {
  /* Restore containerized width so image isn't forced full‑bleed */
  #home,
  #home .container,
  #home .section-inner,
  #home .content,
  #home .content-wrap,
  #home .content-inner,
  #home .hero,
  #home .home-hero,
  #home .home-background {
    width: auto !important;
    max-width: 1400px !important; /* feel free to change if your theme uses a different max */
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Let image follow container width; no hard full-width or extra cropping */
  #home picture,
  #home .hero-picture,
  #home img.hero-img,
  #home .home-hero img,
  #home .hero-inline-fallback,
  .home .hero-picture,
  .home .hero-img,
  .home .hero-inline-fallback {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 100svh !important; /* still allow tall viewport */
    object-fit: cover; /* keep tasteful crop like before */
    object-position: center center;
    display: block !important;
  }
}

