/* =========================================================
   St James Fish Bar — shared stylesheet
   Palette: white #FCFAF5 / sea blue #1273A8 / ink #12293B /
            sand #F0B23E / fresh green #3E8E5A (hygiene badge)
   Fonts: Sora (display) + Source Sans 3 (body)
   ========================================================= */

:root {
  --white: #FCFAF5;
  --white-tint: #F3EEE2;
  --blue: #1273A8;
  --blue-dark: #0d5680;
  --blue-rgb: 18, 115, 168;
  --ink: #12293B;
  --ink-rgb: 18, 41, 59;
  --sand: #F0B23E;
  --sand-dark: #d99a22;
  --sand-rgb: 240, 178, 62;
  --green: #3E8E5A;
  --green-dark: #2f6d45;
  --green-rgb: 62, 142, 90;
  --paper: #ffffff;

  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(18, 41, 59, 0.07);
  --shadow-md: 0 10px 28px rgba(18, 41, 59, 0.12);
  --shadow-lg: 0 22px 50px rgba(18, 41, 59, 0.18);

  --container: 1180px;

  --dur: 380ms;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  color: var(--ink);
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
section { padding-block: clamp(3rem, 7vw, 6rem); position: relative; }
.section-white { background: var(--white); }
.section-tint { background: var(--white-tint); }
.section-ink { background: var(--ink); color: var(--white); }
.section-blue { background: var(--blue); color: var(--white); }
.section-ink .add-note, .section-blue .add-note { background: rgba(240,178,62,0.18); color: var(--sand); border-color: rgba(240,178,62,0.55); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.85em;
}
.section-ink .eyebrow, .section-blue .eyebrow { color: var(--sand); }

h1 { font-size: clamp(2.3rem, 5.6vw, 4rem); }
h2 { font-size: clamp(1.85rem, 4.2vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  max-width: 60ch;
  color: var(--ink);
  opacity: 0.85;
}
.center { text-align: center; margin-inline: auto; }
.text-center { text-align: center; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--sand);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 200;
  transition: top 200ms ease;
}
.skip-link:focus { top: 1rem; }

/* ---------- Focus ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 48px;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 160ms var(--ease), box-shadow 200ms var(--ease), background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--blue-dark); box-shadow: var(--shadow-md); }
.btn-sand {
  background: var(--sand);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-sand:hover { background: var(--sand-dark); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--ink);
}
.section-ink .btn-outline, .section-blue .btn-outline { color: var(--white); }
.btn-outline:hover { background: rgba(var(--ink-rgb), 0.06); }
.section-ink .btn-outline:hover, .section-blue .btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-lg { min-height: 56px; padding: 1em 2em; font-size: 1.05rem; }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 250, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(18, 41, 59, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.brand svg { width: 38px; height: 38px; flex: none; }
.brand .brand-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
}
.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.1rem;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--blue); }

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--white);
  background: var(--blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6em 1.1em;
  border-radius: 999px;
  min-height: 44px;
  white-space: nowrap;
  transition: background 200ms ease;
}
.nav-call:hover { background: var(--blue-dark); }
.nav-call svg { width: 1.1em; height: 1.1em; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 860px) {
  .main-nav-links {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem clamp(1.25rem, 6vw, 2.5rem);
    gap: 1.4rem;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms;
    overflow-y: auto;
  }
  .main-nav-links a { font-size: 1.15rem; }
  html.nav-open .main-nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 85% 12%, rgba(var(--sand-rgb), 0.16), transparent 55%),
    radial-gradient(circle at 8% 85%, rgba(var(--blue-rgb), 0.10), transparent 50%),
    var(--white);
  padding-block: clamp(3rem, 8vw, 6rem) clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(var(--blue-rgb), 0.09);
  border: 1px solid rgba(var(--blue-rgb), 0.28);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5em 1em;
  border-radius: 999px;
}
.hero-pill.pill-green {
  background: rgba(var(--green-rgb), 0.12);
  border-color: rgba(var(--green-rgb), 0.35);
  color: var(--green-dark);
}
.hero h1 { margin-bottom: 0.4em; }
.hero h1 .accent { color: var(--blue); }
.hero-lede { font-size: clamp(1.05rem, 1.7vw, 1.25rem); opacity: 0.82; max-width: 50ch; margin-bottom: 1.75rem; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--paper);
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: clamp(92px, 13vw, 124px);
  filter: drop-shadow(0 10px 18px rgba(18,41,59,0.25));
}

/* ---------- Wave / scallop dividers ---------- */
.wave-divider { display: block; width: 100%; height: clamp(28px, 5vw, 56px); }
.wave-divider path { transition: fill 200ms ease; }

.scallop-strip {
  height: 18px;
  width: 100%;
  background: radial-gradient(circle at 9px 9px, transparent 9px, var(--scallop-color, var(--white)) 9.5px) 0 -9px / 18px 18px repeat-x;
}

/* ---------- Stats / trust band ---------- */
.stats-band {
  background: var(--white-tint);
  border-top: 1px solid rgba(18,41,59,0.07);
  border-bottom: 1px solid rgba(18,41,59,0.07);
  padding-block: clamp(1.75rem, 4vw, 2.75rem);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.6vw, 2.2rem);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.stat-num svg { width: 0.85em; height: 0.85em; color: var(--blue); flex: none; }
.stat-label {
  font-weight: 600;
  color: var(--ink);
  opacity: 0.72;
  font-size: 0.92rem;
}

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
@media (max-width: 820px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(var(--blue-rgb), 0.1);
  color: var(--blue);
  margin-bottom: 1rem;
}
.card-icon.icon-green { background: rgba(var(--green-rgb), 0.13); color: var(--green-dark); }
.card-icon.icon-sand { background: rgba(var(--sand-rgb), 0.22); color: var(--sand-dark); }
.card-icon svg { width: 27px; height: 27px; }

/* ---------- Photo cards / gallery ---------- */
.photo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
  background: var(--ink);
}
.photo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.photo-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.9rem 1rem 0.75rem;
  background: linear-gradient(to top, rgba(18,41,59,0.85), transparent);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-grid .span-2 { grid-column: span 2; }
@media (max-width: 480px) { .gallery-grid .span-2 { grid-column: span 1; } }

/* ---------- Menu board ---------- */
.menu-board {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(18,41,59,0.08);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}
.menu-board + .menu-board { margin-top: 1.75rem; }
.menu-board-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 2px solid rgba(var(--blue-rgb),0.18);
  padding-bottom: 0.6rem;
  margin-bottom: 0.5rem;
}
.menu-board-title h3 { margin: 0; color: var(--blue-dark); }
.menu-board-note { font-size: 0.85rem; opacity: 0.65; }
.menu-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(18,41,59,0.12);
}
.menu-row:last-child { border-bottom: none; }
.menu-row-name { font-weight: 700; flex: 1; }
.menu-row-desc { display: block; font-weight: 400; font-size: 0.85rem; opacity: 0.65; margin-top: 0.15em; }
.menu-row-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(18,41,59,0.2);
  margin-bottom: 0.4em;
  min-width: 1rem;
}
.menu-row-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-dark);
  font-size: 1.02rem;
  white-space: nowrap;
}
.menu-callout {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: rgba(var(--green-rgb),0.12);
  border: 1px solid rgba(var(--green-rgb),0.35);
  color: var(--green-dark);
  padding: 0.6em 1.1em;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* ---------- Placeholder / ADD tags ---------- */
.add-note {
  display: inline-block;
  background: rgba(var(--blue-rgb), 0.1);
  color: var(--blue-dark);
  border: 1px dashed rgba(var(--blue-rgb), 0.45);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25em 0.65em;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

/* ---------- Hygiene badge (custom illustration, not the official FSA scutcheon) ---------- */
.hygiene-badge { width: 100%; height: auto; }

/* ---------- Reviews ---------- */
.review-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.stars { display: flex; gap: 0.2rem; color: var(--sand-dark); margin-bottom: 0.75rem; }
.stars svg { width: 18px; height: 18px; }
.review-quote { font-size: 1.05rem; margin-bottom: 1rem; }
.review-author { font-weight: 700; font-size: 0.9rem; color: var(--blue-dark); }

/* ---------- Find us / hours ---------- */
.find-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 820px) { .find-grid { grid-template-columns: 1fr; } }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(18,41,59,0.1); }
.hours-table td { padding: 0.65rem 0.25rem; }
.hours-table td:first-child { font-weight: 700; }
.hours-table td:last-child { text-align: right; }
.map-placeholder {
  border-radius: var(--radius-md);
  background: var(--white-tint);
  border: 2px dashed rgba(18,41,59,0.2);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--ink);
  text-align: center;
  padding: 1.5rem;
}
.map-placeholder svg { width: 42px; height: 42px; color: var(--blue); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(252,250,245,0.14);
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; margin-bottom: 0.75rem; }
.footer-brand svg { width: 32px; height: 32px; }
.footer-col h4 { font-family: var(--font-body); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sand); margin-bottom: 0.9rem; }
.footer-col a, .footer-col p { display: block; text-decoration: none; color: rgba(252,250,245,0.85); margin-bottom: 0.6rem; font-size: 0.95rem; }
.footer-col a:hover { color: var(--sand); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(252,250,245,0.55);
}
.footer-socials { display: flex; gap: 0.9rem; }
.footer-socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(252,250,245,0.08);
  color: var(--white);
  transition: background 200ms ease, color 200ms ease;
}
.footer-socials a:hover { background: var(--sand); color: var(--ink); }
.footer-socials svg { width: 20px; height: 20px; }

/* ---------- Call FAB (mobile) ---------- */
.call-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  transition: transform 160ms var(--ease), background 200ms ease;
}
.call-fab svg { width: 26px; height: 26px; }
.call-fab:hover { background: var(--blue-dark); }
.call-fab:active { transform: scale(0.94); }
@media (max-width: 720px) {
  .call-fab { display: flex; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(3rem, 7vw, 4.5rem);
  text-align: center;
  position: relative;
}
.page-hero .eyebrow { color: var(--sand); }
.breadcrumb { font-size: 0.85rem; opacity: 0.65; margin-top: 0.5rem; }

/* ---------- Reveal animation system ---------- */
html:not(.js) .reveal { opacity: 1; transform: none; }
.reveal {
  opacity: 0;
  transform: translateY(14px);
}
html.js .reveal {
  transition: opacity var(--dur) ease-out, transform var(--dur) ease-out;
}
html.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

.hero-anim { opacity: 0; transform: translateY(14px); }
html.js .hero-anim {
  animation: heroFade 640ms var(--ease) forwards;
}
html.js .hero-anim.d1 { animation-delay: 80ms; }
html.js .hero-anim.d2 { animation-delay: 180ms; }
html.js .hero-anim.d3 { animation-delay: 280ms; }
html.js .hero-anim.d4 { animation-delay: 380ms; }
@keyframes heroFade {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-anim { opacity: 1; transform: none; animation: none; }
}
html:not(.js) .hero-anim { opacity: 1; transform: none; }

/* Menu row cascade */
html.js .menu-row.reveal { transition-delay: calc(var(--i, 0) * 50ms); }
html.js .reveal[data-reveal-group] { transition-delay: calc(var(--i, 0) * 50ms); }

/* Utility */
.mt-lg { margin-top: clamp(2rem, 5vw, 3.5rem); }
.badge-strip { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Family story strip ---------- */
.story-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (max-width: 900px) { .story-strip { grid-template-columns: 1fr; } }
.story-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.story-photo-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
