:root {
  --turquoise: #25bec8;
  --turquoise-dark: #169aa4;
  --turquoise-soft: #dff7f8;
  --paper: #f1f1ef;
  --white: #ffffff;
  --ink: #111111;
  --ink-soft: #565d5e;
  --line: rgba(0,0,0,.08);
  --shadow-soft: 0 14px 38px rgba(0,0,0,.08);
  --shadow-card: 0 24px 58px rgba(0,0,0,.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --content: 1280px;
  --cyan: #13d8e9;
  --magenta: #ff22d5;
  --speed: .42s;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Century Gothic", Futura, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 9999;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}
.skip-link:focus { top: 16px; }

.site-shell { position: relative; isolation: isolate; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(241,241,239,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas:
    "left brand right"
    ". nav .";
  align-items: center;
  gap: 10px 24px;
  padding: 14px 0 14px;
}
.brand {
  grid-area: brand;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 220px;
}
.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.desktop-tagline {
  grid-area: left;
  font-size: clamp(16px, 1.3vw, 21px);
  line-height: .92;
  font-weight: 300;
  color: var(--turquoise);
  text-transform: uppercase;
  letter-spacing: -0.04em;
}
.desktop-tagline.right {
  grid-area: right;
  text-align: right;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 999px;
}
.primary-nav {
  grid-area: nav;
  display: inline-flex;
  justify-self: center;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.95);
  box-shadow: 0 10px 24px rgba(0,0,0,.07);
}
.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  transition: transform var(--speed) ease, background var(--speed) ease, color var(--speed) ease, box-shadow var(--speed) ease;
  white-space: nowrap;
}
.primary-nav a:hover { transform: translateY(-2px); }
.primary-nav a[aria-current="page"] { background: var(--turquoise); color: var(--white); }
.primary-nav .reserve { background: var(--white); }
.primary-nav .reserve::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  z-index: -1;
}

.section { position: relative; padding: 64px 0; }
.section-compact { padding: 40px 0; }

.kicker {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--turquoise-dark);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .16em;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.hero-home,
.page-hero,
.story-page { padding-top: 28px; }
.hero-panel,
.surface,
.story-shell {
  position: relative;
  background: rgba(255,255,255,.88);
  border-radius: 38px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.hero-panel {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 54px;
  align-items: center;
  padding: 44px;
}
.hero-panel::before,
.story-shell::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,190,200,.14), rgba(37,190,200,0));
}
.hero-home h1,
.page-title,
.story-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(46px, 6.2vw, 84px);
  line-height: .92;
  letter-spacing: -.06em;
  font-weight: 300;
}
.hero-home p.lead,
.page-lead,
.story-copy p,
.about-copy p,
.section-head p {
  font-size: clamp(18px, 1.6vw, 24px);
  color: var(--ink-soft);
}
.hero-copy p.lead { max-width: 34ch; }
.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.pill-link,
.ghost-link,
.cta-button,
.menu-download,
.contact-actions a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  min-width: 178px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  transition: transform var(--speed) ease, box-shadow var(--speed) ease, background var(--speed) ease, color var(--speed) ease;
}
.pill-link,
.contact-actions a,
.cta-button {
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
}
.pill-link::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  z-index: -1;
}
.ghost-link {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.08);
}
.pill-link:hover,
.ghost-link:hover,
.cta-button:hover,
.contact-actions a:hover,
.menu-download:hover,
.food-card:hover,
.value-card:hover,
.story-card:hover { transform: translateY(-4px); }

.hero-visual { position: relative; }
.visual-card {
  position: relative;
  padding: 16px;
  background: rgba(255,255,255,.9);
  border-radius: 30px;
  box-shadow: var(--shadow-card);
}
.visual-card img {
  width: 100%;
  aspect-ratio: 1.02 / 1;
  object-fit: cover;
  border-radius: 24px;
}
.hero-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  background: rgba(255,255,255,.94);
  color: var(--turquoise-dark);
  padding: 12px 14px;
  border-radius: 18px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  max-width: 168px;
  box-shadow: 0 12px 26px rgba(0,0,0,.12);
}

.wave-band,
.site-footer {
  position: relative;
  background: var(--turquoise);
  color: var(--white);
}
.wave-band {
  margin-top: 46px;
  padding: 128px 0 120px;
}
.wave-band::before,
.site-footer::before {
  content: "";
  position: absolute;
  left: -10vw;
  right: -10vw;
  top: -92px;
  height: 140px;
  background: var(--paper);
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
}
.wave-band::after,
.site-footer::after {
  content: "";
  position: absolute;
  left: -10vw;
  right: -10vw;
  bottom: -92px;
  height: 140px;
  background: var(--paper);
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
}
.about-grid,
.story-hero-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 70px;
  align-items: center;
}
.about-gallery,
.story-photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.image-frame,
.story-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  background: rgba(255,255,255,.14);
}
.image-frame img,
.story-card img {
  width: 100%;
  aspect-ratio: .86 / 1;
  object-fit: cover;
  transition: transform .9s ease;
}
.about-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(40px, 4.7vw, 70px);
  line-height: .93;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: -.05em;
}
.about-copy h2 em,
.story-copy h1 em {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}
.about-copy p { color: rgba(255,255,255,.92); max-width: 26ch; }
.info-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.info-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}

.surface { padding: 38px 42px; }
.page-hero .surface {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}
.page-title { margin: 0; text-transform: uppercase; }
.page-lead { margin: 10px 0 0; max-width: 40ch; }
.mini-stat {
  justify-self: end;
  min-width: 224px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(37,190,200,1), rgba(22,154,164,1));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.mini-stat strong {
  display: block;
  font-size: 38px;
  line-height: .95;
  letter-spacing: -.04em;
  font-weight: 300;
}
.mini-stat span {
  display: block;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 800;
}

.menu-layout { padding-top: 22px; padding-bottom: 18px; }
.menu-group + .menu-group { margin-top: 54px; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: .94;
  text-transform: uppercase;
  letter-spacing: -.05em;
  font-weight: 300;
}
.section-head p { max-width: 38ch; margin: 0; }
.menu-download {
  background: var(--turquoise);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 28px;
}
.card-grid.four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.food-card,
.value-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--speed) ease, box-shadow var(--speed) ease;
}
.food-card {
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.98) 60%, var(--turquoise) 60%, var(--turquoise) 100%);
}
.food-card img {
  width: 100%;
  height: clamp(280px, 32vw, 420px);
  object-fit: cover;
  transition: transform .9s ease;
}
.food-card h3 {
  min-height: 112px;
  margin: 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2vw, 30px);
  text-transform: uppercase;
}
.card-caption {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  min-height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.story-shell { padding: 44px; }

.story-hero-grid {
  grid-template-columns: 1.08fr .92fr;
  gap: 48px;
  align-items: center;
}
.story-photo-stack {
  gap: 22px;
  align-self: stretch;
}
.story-page .story-card,
.story-page .image-frame {
  border-radius: 26px;
}
.story-page .story-card img,
.story-page .image-frame img {
  height: clamp(360px, 35vw, 500px);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}
.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-copy h1 {
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: .94;
}
.story-copy p {
  font-size: clamp(18px, 1.45vw, 22px);
  max-width: 31ch;
}
.story-copy .eyebrow {
  display: inline-block;
  color: var(--turquoise-dark);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 13px;
}
.story-copy h1 { color: var(--ink); margin-bottom: 18px; }
.story-copy h1 em { color: var(--turquoise-dark); }
.story-copy p { max-width: 34ch; }
.values {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.value-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f8fbfb);
}
.value-card b {
  display: block;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -.03em;
}
.value-card span { color: var(--ink-soft); }

.site-footer {
  margin-top: 78px;
  padding: 138px 0 56px;
}
.site-footer::before { top: -98px; height: 146px; }
.site-footer::after { display: none; }
.footer-grid { align-items: start; }
.footer-tagline {
  max-width: 680px;
  font-size: clamp(72px, 8.1vw, 118px);
  line-height: .84;
  letter-spacing: -.06em;
  font-weight: 200;
  text-transform: uppercase;
}
.contact-card { max-width: 540px; justify-self: end; }
.contact-card h2 {
  margin: 0 0 16px;
  font-size: 34px;
  font-weight: 300;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.contact-card p {
  margin: 0 0 14px;
  font-size: 19px;
  color: rgba(255,255,255,.96);
}
.contact-card a:not(.contact-actions a) {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
.social-head {
  display: flex;
  gap: 14px;
  margin: 18px 0 10px;
  color: rgba(255,255,255,.92);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
}
.qr-strip {
  width: min(100%, 470px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0,0,0,.14);
  margin: 0 0 18px;
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  align-items: center;
  margin-top: 12px;
}
.footer-bottom {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.28);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.88);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.squid-cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 34px;
  height: 42px;
  pointer-events: none;
  z-index: 150;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity .25s ease;
  filter: drop-shadow(0 6px 8px rgba(0,0,0,.10));
}
.squid-cursor.visible { opacity: .78; }
.squid-cursor svg { width: 100%; height: 100%; display: block; }

@media (max-width: 1180px) {
  .hero-panel,
  .about-grid,
  .story-hero-grid,
  .footer-grid,
  .page-hero .surface {
    grid-template-columns: 1fr;
  }
  .contact-card,
  .mini-stat { justify-self: start; }
  .about-copy p,
  .story-copy p,
  .page-lead,
  .hero-copy p.lead { max-width: none; }
}

@media (max-width: 940px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "brand . toggle"
      "nav nav nav";
  }
  .desktop-tagline { display: none; }
  .brand { justify-self: start; max-width: 190px; }
  .nav-toggle { display: block; grid-area: toggle; justify-self: end; }
  .primary-nav {
    display: none;
    width: 100%;
    justify-self: stretch;
    border-radius: 24px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 6px;
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { width: 100%; }
  .card-grid.four,
  .values { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 700px) {
  .story-page .story-card img,
  .story-page .image-frame img { height: 280px; }

  .container { width: min(calc(100% - 28px), var(--content)); }
  .header-inner { padding: 12px 0; }
  .brand { max-width: 160px; }
  .hero-panel,
  .surface,
  .story-shell { padding: 24px; border-radius: 28px; }
  .hero-panel { gap: 26px; }
  .hero-home h1,
  .page-title,
  .story-copy h1,
  .about-copy h2 { font-size: clamp(40px, 9vw, 58px); }
  .hero-actions,
  .contact-actions { gap: 10px; }
  .pill-link,
  .ghost-link,
  .cta-button,
  .menu-download,
  .contact-actions a { min-height: 52px; min-width: 150px; font-size: 13px; }
  .wave-band { padding: 102px 0 94px; }
  .wave-band::before,
  .site-footer::before {
    top: -76px;
    height: 118px;
    left: -20vw;
    right: -20vw;
  }
  .wave-band::after {
    bottom: -76px;
    height: 118px;
    left: -20vw;
    right: -20vw;
  }
  .about-gallery,
  .story-photo-stack,
  .card-grid,
  .card-grid.four,
  .values { grid-template-columns: 1fr 1fr; gap: 16px; }
  .food-card img { height: 250px; }
  .food-card h3 { min-height: 86px; font-size: 18px; }
  .section-head { flex-direction: column; align-items: start; }
  .footer-tagline { font-size: clamp(54px, 10vw, 84px); }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 520px) {
  .story-page .story-card img,
  .story-page .image-frame img { height: 320px; }

  .about-gallery,
  .story-photo-stack,
  .card-grid,
  .card-grid.four,
  .values { grid-template-columns: 1fr; }
  .hero-actions .pill-link,
  .hero-actions .ghost-link,
  .menu-download,
  .contact-actions a { width: 100%; }
  .food-card img { height: 300px; }
  .footer-tagline { font-size: 52px; }
  .social-head { flex-wrap: wrap; gap: 8px 14px; }
}

@media (hover: none), (pointer: coarse) {
  .squid-cursor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .squid-cursor { display: none; }
}


/* ================================
   V5 — VISUAL BALANCE CORRECTIONS
   ================================ */

/* Home: give the imagery the same visual authority as the copy. */
.wave-band .about-grid {
  grid-template-columns: minmax(0, 1.42fr) minmax(360px, .78fr);
  gap: clamp(44px, 4vw, 72px);
  align-items: center;
}

.wave-band .about-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 32px);
  align-items: stretch;
}

.wave-band .about-gallery .image-frame {
  width: 100%;
  min-height: clamp(500px, 37vw, 640px);
  border-radius: 30px;
}

.wave-band .about-gallery .image-frame img {
  width: 100%;
  height: 100%;
  min-height: clamp(500px, 37vw, 640px);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.wave-band .about-copy {
  max-width: 470px;
  justify-self: end;
}

.wave-band .about-copy h2 {
  font-size: clamp(42px, 4.25vw, 66px);
}

.wave-band .about-copy p {
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.5;
  max-width: 30ch;
}

/* Buttons on colored backgrounds must never inherit white text. */
.wave-band .contact-actions a,
.site-footer .contact-actions a,
.contact-actions a {
  color: var(--ink) !important;
  background: var(--white);
}

/* About page: larger editorial image block, balanced against copy height. */
.story-page .story-hero-grid {
  grid-template-columns: minmax(0, 1.30fr) minmax(380px, .70fr);
  gap: clamp(42px, 4vw, 64px);
  align-items: center;
}

.story-page .story-photo-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 30px);
  align-items: stretch;
}

.story-page .story-card,
.story-page .image-frame {
  min-height: clamp(500px, 36vw, 620px);
}

.story-page .story-card img,
.story-page .image-frame img {
  width: 100%;
  height: 100%;
  min-height: clamp(500px, 36vw, 620px);
  object-fit: cover;
  object-position: center;
}

.story-page .story-copy {
  max-width: 500px;
  justify-self: end;
}

.story-page .story-copy h1 {
  font-size: clamp(42px, 4.8vw, 72px);
}

.story-page .story-copy p {
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.55;
  max-width: 32ch;
}

/* Mid-size desktops/tablets: preserve large imagery before stacking. */
@media (max-width: 1180px) and (min-width: 821px) {
  .wave-band .about-grid,
  .story-page .story-hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
    gap: 38px;
  }

  .wave-band .about-gallery .image-frame,
  .wave-band .about-gallery .image-frame img,
  .story-page .story-card,
  .story-page .image-frame,
  .story-page .story-card img,
  .story-page .image-frame img {
    min-height: 470px;
  }
}

/* Tablet/mobile: stack copy but keep imagery generously sized. */
@media (max-width: 820px) {
  .wave-band .about-grid,
  .story-page .story-hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .wave-band .about-copy,
  .story-page .story-copy {
    max-width: none;
    justify-self: stretch;
  }

  .wave-band .about-copy p,
  .story-page .story-copy p {
    max-width: none;
  }

  .wave-band .about-gallery .image-frame,
  .wave-band .about-gallery .image-frame img,
  .story-page .story-card,
  .story-page .image-frame,
  .story-page .story-card img,
  .story-page .image-frame img {
    min-height: 430px;
  }
}

@media (max-width: 560px) {
  .wave-band .about-gallery,
  .story-page .story-photo-stack {
    grid-template-columns: 1fr;
  }

  .wave-band .about-gallery .image-frame,
  .wave-band .about-gallery .image-frame img,
  .story-page .story-card,
  .story-page .image-frame,
  .story-page .story-card img,
  .story-page .image-frame img {
    min-height: 440px;
  }
}
