:root {
  --ink: #111311;
  --ink-soft: #1b1f1b;
  --paper: #f7f7f2;
  --white: #ffffff;
  --gold: #d39414;
  --gold-light: #f0b63f;
  --green: #176b3b;
  --green-bright: #2c9b59;
  --muted: #6b706c;
  --line: rgba(17, 19, 17, .12);
  --shadow: 0 24px 70px rgba(11, 20, 14, .16);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 999; background: #fff; padding: 12px 16px; border-radius: 8px; }
.skip-link:focus { top: 20px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 82px;
  display: flex;
  align-items: center;
  background: rgba(10, 13, 11, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(10,13,11,.96); box-shadow: 0 12px 35px rgba(0,0,0,.18); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; min-width: 210px; }
.brand img { width: 48px; height: 48px; object-fit: contain; background: #fff; border-radius: 50%; padding: 4px; }
.brand span { display: flex; flex-direction: column; line-height: 1.05; }
.brand strong { font-size: 1.15rem; letter-spacing: .16em; }
.brand small { margin-top: 5px; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.62); }
.main-nav { display: flex; align-items: center; gap: 26px; color: rgba(255,255,255,.82); font-size: .9rem; }
.main-nav > a:not(.button) { position: relative; }
.main-nav > a:not(.button)::after { content:""; position:absolute; left:0; right:100%; bottom:-8px; height:2px; background:var(--gold); transition:right .2s ease; }
.main-nav > a:not(.button):hover::after { right:0; }
.menu-button { display:none; border:0; background:transparent; padding:10px; cursor:pointer; }
.menu-button span { display:block; width:25px; height:2px; background:#fff; margin:5px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  font-size: .92rem;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: .82rem; }
.button-primary { background: linear-gradient(135deg, var(--gold), #e5a51e); color: #111; box-shadow: 0 14px 35px rgba(211,148,20,.24); }
.button-primary:hover { box-shadow: 0 18px 40px rgba(211,148,20,.35); }
.button-ghost { color:#fff; border-color:rgba(255,255,255,.22); background:rgba(255,255,255,.04); }
.button-light { background:#fff; color:#111; min-height:44px; }
.button-live { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.12); color:#fff; }
.live-dot { width: 9px; height: 9px; border-radius:50%; background:#ff4b38; box-shadow: 0 0 0 0 rgba(255,75,56,.55); animation:pulse 1.7s infinite; flex:0 0 auto; }
@keyframes pulse { 70% { box-shadow:0 0 0 10px rgba(255,75,56,0); } 100% { box-shadow:0 0 0 0 rgba(255,75,56,0); } }

.hero {
  position: relative;
  min-height: 790px;
  padding: 165px 0 92px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 42%, rgba(38, 112, 65, .22), transparent 30%),
    radial-gradient(circle at 10% 70%, rgba(211, 148, 20, .11), transparent 25%),
    linear-gradient(135deg, #090b0a 0%, #141915 52%, #0b0e0c 100%);
}
.hero::after { content:""; position:absolute; inset:0; pointer-events:none; opacity:.14; background-image:linear-gradient(rgba(255,255,255,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.07) 1px,transparent 1px); background-size:60px 60px; mask-image:linear-gradient(to bottom,transparent,black 25%,black 70%,transparent); }
.hero-glow { position:absolute; border-radius:50%; filter:blur(80px); opacity:.24; }
.hero-glow-one { width:330px; height:330px; background:var(--gold); top:150px; right:-120px; }
.hero-glow-two { width:270px; height:270px; background:var(--green); bottom:-100px; left:10%; }
.hero-grid { position:relative; z-index:2; display:grid; grid-template-columns:1.05fr .95fr; align-items:center; gap:70px; }
.eyebrow { margin:0 0 20px; font-size:.76rem; letter-spacing:.22em; font-weight:800; color:var(--gold-light); }
.eyebrow.dark { color:var(--green); }
.hero h1 { margin:0; max-width:760px; font-size:clamp(3.25rem,6.3vw,6.35rem); line-height:.96; letter-spacing:-.055em; font-weight:850; }
.hero h1 span { color:transparent; -webkit-text-stroke:1.5px rgba(255,255,255,.86); }
.hero-lead { max-width:640px; margin:30px 0 0; font-size:clamp(1.1rem,2vw,1.35rem); color:rgba(255,255,255,.68); }
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:36px; }
.play-icon { width:28px; height:28px; display:grid; place-items:center; background:rgba(0,0,0,.12); border-radius:50%; font-size:.72rem; padding-left:2px; }
.hero-signature { display:flex; align-items:center; gap:14px; margin-top:45px; color:rgba(255,255,255,.72); }
.hero-signature span { width:46px; height:1px; background:var(--gold); }
.hero-signature span:last-child { background:var(--green-bright); }
.hero-signature strong { font-family:Georgia,serif; font-size:1.03rem; font-weight:500; }
.hero-visual { display:flex; justify-content:center; }
.logo-orbit { position:relative; width:min(470px,42vw); aspect-ratio:1; display:grid; place-items:center; }
.logo-orbit > img { width:62%; position:relative; z-index:3; filter:drop-shadow(0 25px 40px rgba(0,0,0,.32)); }
.orbit { position:absolute; inset:8%; border:1px solid rgba(255,255,255,.1); border-radius:50%; }
.orbit-one { animation:spin 24s linear infinite; border-top-color:rgba(211,148,20,.9); }
.orbit-two { inset:18%; animation:spin 17s linear infinite reverse; border-right-color:rgba(44,155,89,.9); }
.orbit-three { inset:28%; border-bottom-color:rgba(255,255,255,.35); }
@keyframes spin { to { transform:rotate(360deg); } }
.sound-bars { position:absolute; right:2%; bottom:17%; display:flex; align-items:flex-end; gap:6px; height:70px; z-index:4; }
.sound-bars i { display:block; width:5px; border-radius:6px; background:linear-gradient(to top,var(--green),var(--gold)); animation:bars 1s ease-in-out infinite alternate; }
.sound-bars i:nth-child(1){height:20%;}.sound-bars i:nth-child(2){height:45%;animation-delay:.1s}.sound-bars i:nth-child(3){height:80%;animation-delay:.2s}.sound-bars i:nth-child(4){height:52%;animation-delay:.3s}.sound-bars i:nth-child(5){height:92%;animation-delay:.15s}.sound-bars i:nth-child(6){height:60%;animation-delay:.4s}.sound-bars i:nth-child(7){height:30%;animation-delay:.05s}
@keyframes bars { to { transform:scaleY(.48); opacity:.75; } }

.live-banner { background:var(--green); color:#fff; position:relative; z-index:4; }
.live-banner-inner { min-height:98px; display:grid; grid-template-columns:1fr auto auto; align-items:center; gap:35px; }
.live-status { display:flex; align-items:center; gap:16px; }
.live-status small { display:block; font-size:.68rem; letter-spacing:.18em; color:rgba(255,255,255,.65); }
.live-status strong { display:block; font-size:1.05rem; }
.mini-equalizer { display:flex; align-items:center; gap:4px; height:35px; }
.mini-equalizer i { width:4px; height:50%; background:var(--gold-light); border-radius:4px; animation:eq .8s ease-in-out infinite alternate; }
.mini-equalizer i:nth-child(2){height:90%;animation-delay:.1s}.mini-equalizer i:nth-child(3){height:65%;animation-delay:.25s}.mini-equalizer i:nth-child(4){height:100%;animation-delay:.35s}.mini-equalizer i:nth-child(5){height:40%;animation-delay:.12s}
@keyframes eq { to { height:24%; } }

.section { padding:110px 0; }
.section-heading h2, .sound-copy h2, .submission-copy h2, .contact-section h2 { margin:0; font-size:clamp(2.3rem,4.8vw,4.4rem); line-height:1.04; letter-spacing:-.045em; }
.section-heading p:last-child { color:var(--muted); font-size:1.05rem; }
.intro-grid { display:grid; grid-template-columns:1fr 1fr; gap:90px; align-items:start; }
.intro-copy { padding-top:44px; font-size:1.18rem; color:#4e544f; }
.intro-copy p:first-child { color:var(--ink); font-size:1.35rem; }
.pillars { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:75px; }
.pillar { min-height:280px; padding:34px; border:1px solid var(--line); border-radius:var(--radius); background:rgba(255,255,255,.5); transition:transform .25s ease,box-shadow .25s ease,background .25s ease; }
.pillar:hover { transform:translateY(-7px); background:#fff; box-shadow:var(--shadow); }
.pillar-number { color:var(--gold); font-size:.75rem; font-weight:800; letter-spacing:.18em; }
.pillar h3 { margin:55px 0 12px; font-size:1.55rem; }
.pillar p { margin:0; color:var(--muted); }

.sound-section { color:#fff; background:var(--ink); overflow:hidden; }
.sound-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:85px; align-items:center; }
.sound-art { min-height:500px; display:grid; place-items:center; position:relative; }
.vinyl { width:min(390px,75vw); aspect-ratio:1; border-radius:50%; display:grid; place-items:center; position:relative; background:repeating-radial-gradient(circle at center,#171a18 0 4px,#0d0f0e 5px 8px); box-shadow:0 30px 80px rgba(0,0,0,.44); animation:spin 18s linear infinite; }
.vinyl::before { content:""; position:absolute; inset:7%; border:1px solid rgba(255,255,255,.1); border-radius:50%; }
.vinyl-ring { width:40%; aspect-ratio:1; border-radius:50%; background:var(--gold); box-shadow:inset 0 0 0 10px rgba(0,0,0,.08); }
.vinyl-label { position:absolute; color:#111; font-weight:900; letter-spacing:.16em; }
.sound-wave-line { position:absolute; bottom:24px; left:3%; right:3%; height:70px; display:flex; align-items:center; justify-content:center; gap:10px; }
.sound-wave-line span { width:5px; height:30%; border-radius:5px; background:linear-gradient(var(--gold),var(--green-bright)); }
.sound-wave-line span:nth-child(2),.sound-wave-line span:nth-child(8){height:45%}.sound-wave-line span:nth-child(3),.sound-wave-line span:nth-child(7){height:65%}.sound-wave-line span:nth-child(4),.sound-wave-line span:nth-child(6){height:95%}.sound-wave-line span:nth-child(5){height:55%}
.sound-copy p { color:rgba(255,255,255,.66); font-size:1.13rem; }
.genre-list { display:flex; flex-wrap:wrap; gap:10px; margin-top:32px; }
.genre-list span { padding:10px 15px; border:1px solid rgba(255,255,255,.14); border-radius:999px; color:rgba(255,255,255,.82); font-size:.84rem; }

.formats-section { background:#fff; }
.centered { text-align:center; max-width:760px; margin:0 auto 55px; }
.formats-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.format-card { position:relative; min-height:330px; padding:34px; border-radius:var(--radius); border:1px solid var(--line); background:var(--paper); overflow:hidden; }
.format-card::after { content:""; position:absolute; width:150px; height:150px; border-radius:50%; right:-60px; bottom:-60px; border:28px solid rgba(23,107,59,.08); }
.format-card.featured { color:#fff; background:linear-gradient(135deg,var(--green),#0f4d2a); }
.format-card.featured::after { border-color:rgba(255,255,255,.08); }
.format-topline { display:flex; justify-content:space-between; font-size:.68rem; letter-spacing:.14em; font-weight:800; color:var(--gold); }
.format-card.featured .format-topline { color:#f5c96d; }
.format-card h3 { margin:80px 0 14px; font-size:2rem; letter-spacing:-.03em; }
.format-card p { max-width:480px; color:var(--muted); }
.format-card.featured p { color:rgba(255,255,255,.7); }
.format-time { margin-top:24px; font-weight:800; }

.submission-section { color:#fff; background:linear-gradient(135deg,#151817,#0c100d); }
.submission-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:85px; align-items:center; }
.submission-copy p { color:rgba(255,255,255,.65); font-size:1.08rem; }
.check-list { list-style:none; padding:0; margin:28px 0 0; display:grid; gap:12px; }
.check-list li { position:relative; padding-left:30px; color:rgba(255,255,255,.8); }
.check-list li::before { content:"✓"; position:absolute; left:0; color:var(--gold-light); font-weight:900; }
.submission-form { padding:34px; border:1px solid rgba(255,255,255,.1); border-radius:var(--radius); background:rgba(255,255,255,.05); box-shadow:0 25px 70px rgba(0,0,0,.24); }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.submission-form label { display:block; margin-bottom:16px; font-size:.78rem; font-weight:700; letter-spacing:.04em; color:rgba(255,255,255,.75); }
.submission-form input,.submission-form textarea { width:100%; margin-top:8px; border:1px solid rgba(255,255,255,.12); border-radius:14px; background:rgba(255,255,255,.07); color:#fff; padding:14px 15px; outline:none; transition:border .2s ease,background .2s ease; }
.submission-form input:focus,.submission-form textarea:focus { border-color:var(--gold); background:rgba(255,255,255,.1); }
.submission-form input::placeholder,.submission-form textarea::placeholder { color:rgba(255,255,255,.35); }
.form-note { font-size:.75rem; color:rgba(255,255,255,.45); margin:15px 0 0; }

.manifesto-section { background:var(--green); color:#fff; padding:85px 0; }
.manifesto { text-align:center; max-width:900px; }
.manifesto img { margin:0 auto 20px; }
.manifesto p { margin:0; font-family:Georgia,serif; font-size:clamp(2rem,4.2vw,4rem); line-height:1.15; }
.manifesto strong { display:block; margin-top:20px; color:#f0c365; letter-spacing:.12em; text-transform:uppercase; font-size:.78rem; }

.contact-section { background:var(--paper); }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:90px; align-items:start; }
.contact-links { display:grid; }
.contact-links a { padding:22px 0; border-bottom:1px solid var(--line); display:flex; flex-direction:column; transition:padding-left .2s ease; }
.contact-links a:hover { padding-left:10px; }
.contact-links span { color:var(--muted); font-size:.78rem; text-transform:uppercase; letter-spacing:.12em; }
.contact-links strong { margin-top:5px; font-size:1.2rem; }

.site-footer { background:#090b0a; color:#fff; padding:65px 0 30px; }
.footer-top { display:flex; justify-content:space-between; align-items:center; gap:30px; padding-bottom:45px; }
.footer-brand { display:flex; align-items:center; gap:18px; }
.footer-brand img { width:66px; }
.footer-brand div { display:flex; flex-direction:column; }
.footer-brand strong { font-size:1.35rem; letter-spacing:.16em; }
.footer-brand span { color:rgba(255,255,255,.5); font-size:.8rem; }
.footer-claim { color:rgba(255,255,255,.68); text-align:right; }
.footer-bottom { padding-top:28px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; gap:20px; color:rgba(255,255,255,.45); font-size:.78rem; }
.footer-bottom div { display:flex; gap:22px; }
.footer-bottom a:hover { color:#fff; }

.mobile-live-bar { display:none; }
.toast { position:fixed; left:50%; bottom:30px; z-index:80; transform:translate(-50%,20px); padding:14px 20px; border-radius:12px; background:#fff; color:#111; box-shadow:var(--shadow); opacity:0; pointer-events:none; transition:.25s ease; }
.toast.show { opacity:1; transform:translate(-50%,0); }
.reveal { opacity:0; transform:translateY(24px); transition:opacity .75s ease,transform .75s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 980px) {
  .menu-button { display:block; }
  .main-nav { position:absolute; top:82px; left:0; right:0; padding:24px 20px 30px; flex-direction:column; align-items:stretch; background:#0b0e0c; transform:translateY(-130%); opacity:0; pointer-events:none; transition:.25s ease; }
  .main-nav.open { transform:none; opacity:1; pointer-events:auto; }
  .main-nav .button { width:100%; }
  .hero-grid,.sound-grid,.submission-grid,.contact-grid { grid-template-columns:1fr; }
  .hero { padding-top:145px; }
  .hero-visual { margin-top:15px; }
  .logo-orbit { width:min(430px,80vw); }
  .intro-grid { grid-template-columns:1fr; gap:20px; }
  .intro-copy { padding-top:0; }
  .pillars { grid-template-columns:1fr; }
  .sound-art { min-height:430px; }
  .submission-grid { gap:45px; }
  .contact-grid { gap:35px; }
}

@media (max-width: 700px) {
  .container { width:min(calc(100% - 28px),var(--container)); }
  .site-header { height:72px; }
  .brand img { width:42px; height:42px; }
  .brand small { display:none; }
  .main-nav { top:72px; }
  .hero { min-height:auto; padding:125px 0 70px; }
  .hero-grid { gap:30px; }
  .hero h1 { font-size:clamp(2.65rem,13vw,4.4rem); }
  .hero-actions { flex-direction:column; }
  .hero-actions .button { width:100%; }
  .hero-signature { justify-content:center; }
  .hero-visual { order:-1; }
  .logo-orbit { width:270px; }
  .live-banner { display:none; }
  .section { padding:78px 0; }
  .section-heading h2,.sound-copy h2,.submission-copy h2,.contact-section h2 { font-size:2.55rem; }
  .pillars { margin-top:45px; }
  .pillar { min-height:auto; }
  .pillar h3 { margin-top:35px; }
  .formats-grid { grid-template-columns:1fr; }
  .field-row { grid-template-columns:1fr; gap:0; }
  .submission-form { padding:22px; }
  .footer-top,.footer-bottom { flex-direction:column; align-items:flex-start; }
  .footer-claim { text-align:left; }
  .footer-bottom div { flex-wrap:wrap; }
  .mobile-live-bar { position:fixed; left:10px; right:10px; bottom:10px; z-index:60; display:flex; align-items:center; justify-content:space-between; gap:15px; padding:13px 16px; border:1px solid rgba(255,255,255,.12); border-radius:16px; color:#fff; background:rgba(10,13,11,.94); backdrop-filter:blur(15px); box-shadow:0 16px 35px rgba(0,0,0,.28); }
  .mobile-live-bar div { display:flex; align-items:center; gap:10px; }
  .mobile-live-bar strong { font-size:.78rem; letter-spacing:.08em; }
  .mobile-live-bar a { color:var(--gold-light); font-weight:800; font-size:.78rem; }
  body { padding-bottom:72px; }
}

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

/* KORA photo update */
.hero-photo-card {
  position: relative;
  width: min(500px, 43vw);
  min-height: 585px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: #1a1e1b;
  box-shadow: 0 34px 90px rgba(0,0,0,.42);
  transform: rotate(1.2deg);
}
.hero-photo-card > img:first-child {
  width: 100%;
  height: 100%;
  min-height: 585px;
  object-fit: cover;
  object-position: 67% center;
}
.hero-photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,8,5,.72), transparent 48%),
              linear-gradient(120deg, transparent 60%, rgba(23,107,59,.18));
}
.hero-photo-mark {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 76px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.35));
}
.hero-photo-label {
  position: absolute;
  left: 26px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(10,13,11,.72);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
}
.hero-photo-label strong { font-size: .88rem; letter-spacing: .04em; }

.photo-stories {
  padding-top: 0;
  background: var(--paper);
}
.photo-stories-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
}
.photo-story {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: #1a1d1b;
}
.photo-story-wide { min-height: 580px; }
.photo-story > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s ease;
}
.photo-story:hover > img { transform: scale(1.035); }
.photo-story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,9,6,.88) 0%, rgba(5,9,6,.18) 60%, transparent 100%);
}
.photo-story-copy {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  color: #fff;
}
.photo-story-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
}
.photo-story-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  letter-spacing: -.04em;
}
.photo-story-copy p {
  max-width: 620px;
  margin: 10px 0 0;
  color: rgba(255,255,255,.76);
}

@media (max-width: 980px) {
  .hero-photo-card { width: min(560px, 86vw); min-height: 560px; }
  .hero-photo-card > img:first-child { min-height: 560px; }
  .photo-stories-grid { grid-template-columns: 1fr; }
  .photo-story, .photo-story-wide { min-height: 500px; }
}

@media (max-width: 700px) {
  .hero-photo-card { width: min(430px, 92vw); min-height: 430px; transform: none; }
  .hero-photo-card > img:first-child { min-height: 430px; object-position: 66% center; }
  .hero-photo-mark { width: 58px; top: 18px; right: 18px; }
  .photo-story, .photo-story-wide { min-height: 430px; }
  .photo-story-copy { left: 22px; right: 22px; bottom: 22px; }
  .photo-story-copy p { font-size: .92rem; }
}

/* Fix: show the complete KORA visuals without cropping */
.hero-photo-card {
  width: min(540px, 43vw);
  min-height: 0;
  aspect-ratio: 1 / 1;
  background: #f3eee3;
}
.hero-photo-card > img:first-child {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}
.hero-photo-shade,
.hero-photo-mark,
.hero-photo-label {
  display: none;
}
.photo-stories-grid {
  grid-template-columns: 1fr 1fr;
}
.photo-story,
.photo-story-wide {
  min-height: 0;
  aspect-ratio: 1 / 1;
  background: #f3eee3;
}
.photo-story > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none !important;
}
.photo-story-overlay,
.photo-story-copy {
  display: none;
}
@media (max-width: 980px) {
  .hero-photo-card {
    width: min(560px, 86vw);
    min-height: 0;
    aspect-ratio: 1 / 1;
  }
  .hero-photo-card > img:first-child { min-height: 0; }
  .photo-stories-grid { grid-template-columns: 1fr; }
  .photo-story,
  .photo-story-wide { min-height: 0; aspect-ratio: 1 / 1; }
}
@media (max-width: 700px) {
  .hero-photo-card {
    width: min(430px, 92vw);
    min-height: 0;
    aspect-ratio: 1 / 1;
  }
  .hero-photo-card > img:first-child {
    min-height: 0;
    object-position: center;
  }
  .photo-story,
  .photo-story-wide { min-height: 0; aspect-ratio: 1 / 1; }
}
