:root{
  --charcoal:#1e1e1e;
  --charcoal2:#2a2a2a;
  --white:#ffffff;
  --paper:#fffaf1;
  --gold:#d4b15a;
  --gold2:#b7923f;

  --ink:#101010;
  --mutedText:#3f3f3f;
  --borderDark: rgba(30,30,30,.14);

  --shadow: 0 14px 45px rgba(0,0,0,.22);
  --radius: 18px;
  --radius2: 28px;

  --max: 1040px;
  --pad: 18px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --serif: Georgia, "Times New Roman", Times, serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 12% 8%, rgba(212,177,90,.10), transparent 60%),
    radial-gradient(900px 600px at 85% 18%, rgba(30,30,30,.08), transparent 55%),
    linear-gradient(180deg, #fffdf8, var(--paper));
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }
button{ font-family:inherit; }

.wrap{
  width:min(var(--max), calc(100% - (var(--pad) * 2)));
  margin:0 auto;
}

.mono{ font-family: var(--mono); }

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:var(--charcoal);
  color:var(--white);
  border-radius:12px;
  z-index:9999;
}

/* ===== HEADER ===== */
.flyer-header{
  background: linear-gradient(180deg, var(--charcoal), var(--charcoal2));
  color: var(--white);
  padding: 18px 0 18px;
  position: relative;
  overflow:hidden;
}

/* printed edge */
.flyer-header::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-16px;
  height:32px;
  background:
    radial-gradient(16px 10px at 12px 10px, rgba(0,0,0,.0) 45%, rgba(255,255,255,.12) 46% 60%, rgba(0,0,0,.0) 61%) repeat-x;
  background-size: 46px 28px;
  opacity:.9;
  pointer-events:none;
}

.brand-row{
  display:flex;
  flex-direction:column;
  gap: 12px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 14px;
  min-width:0;
}

.logo{
  width:54px;
  height:54px;
  border-radius: 16px;
  border: 2px solid rgba(212,177,90,.70);
  display:grid;
  place-items:center;
  font-weight:900;
  letter-spacing:.12em;
  color: var(--gold);
  background: rgba(255,255,255,.04);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  flex: 0 0 auto;
}

.brand-text{
  min-width:0;
}

.brand-text h1{
  margin:0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 1.2rem + 1.6vw, 2.15rem);
  line-height: 1.0;
  letter-spacing:.02em;
}

.tagline{
  margin: 6px 0 0;
  opacity:.88;
  line-height:1.25;
  font-size: .98rem;
}

/* action bar lives UNDER brand on mobile (fixes iPhone SE squeeze) */
.action-bar{
  display:flex;
  gap: 10px;
  align-items:center;
}

.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.95);
  cursor:pointer;
  white-space: nowrap;
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
}
.pill-call .pill-strong{
  padding-left: 10px;
  border-left: 1px solid rgba(255,255,255,.25);
}

.pill-call{
  display: inline-flex;
  align-items: center;
  gap: 12px;                 /* controls spacing between Call + number */
  padding: 12px 16px;
  min-width: max-content;    /* stops weird stretching */
}

.pill-call .pill-label{
  opacity: .9;
  font-weight: 700;
}

.pill-call .pill-strong{
  font-family: var(--mono);
  letter-spacing: .04em;
}

.pill-menu{ flex: 0 0 auto; min-width: 84px; }

.pill-strong{ letter-spacing:.06em; }
.pill-menu{
  background: rgba(212,177,90,.14);
  border-color: rgba(212,177,90,.38);
  font-weight: 900;
}

/* mini nav */
.mini-nav{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin: 14px 0 0;
  padding: 10px 10px;
  border-top: 1px dashed rgba(255,255,255,.20);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
}

.mini-nav a{
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.90);
}
.mini-nav a:hover{
  text-decoration:none;
  background: rgba(255,255,255,.06);
}

/* nav hidden on small screens, toggled by JS */
@media (max-width: 640px){
  .mini-nav{ display:none; }
  .mini-nav.open{ display:flex; }
}

/* ===== ORDER PANEL (primary purpose) ===== */
.order-panel{
  margin-top: 14px;
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(212,177,90,.18), transparent 60%),
    rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}

.kicker{
  margin:0;
  letter-spacing:.10em;
  text-transform: uppercase;
  font-size: .82rem;
  color: rgba(212,177,90,.95);
}

.order-panel h2{
  margin: 8px 0 10px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 1.25rem + 1.4vw, 2.3rem);
  line-height:1.05;
}

.lead{
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height:1.45;
}

.status{
  margin-top: 12px;
  display:flex;
  align-items:center;
  gap:10px;
  color: rgba(255,255,255,.90);
}

.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: rgba(255,255,255,.35);
  box-shadow: 0 0 0 4px rgba(255,255,255,.10);
}

.order-buttons{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}

.big-btn{
  display:flex;
  flex-direction:column;
  gap: 6px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 2px solid transparent;
  text-decoration:none;
  cursor:pointer;
  font-weight: 900;
  line-height:1.1;
}

.big-btn-title{ font-size: 1.05rem; }
.big-btn-sub{
  font-weight: 650;
  opacity:.92;
  font-size: .92rem;
}

.big-btn-gold{
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  color: #1b1b1b;
  border-color: rgba(0,0,0,.18);
}
.big-btn-gold:hover{ text-decoration:none; filter: brightness(1.02); }

.big-btn-ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.22);
  color: var(--white);
}
.big-btn-ghost:hover{ text-decoration:none; background: rgba(255,255,255,.08); }

.big-btn-ink{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.96);
}
.big-btn-ink:hover{ text-decoration:none; background: rgba(255,255,255,.12); }

.fineprint{
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,.18);
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  line-height:1.35;
}

/* ===== SECTIONS ===== */
.section{
  padding: 34px 0;
}

.section.alt{
  background:
    radial-gradient(1200px 700px at 12% 20%, rgba(212,177,90,.08), transparent 60%),
    linear-gradient(180deg, #fffdf8, #fff7e8);
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.section-head h2{
  margin:0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.2rem + .8vw, 1.95rem);
  letter-spacing:.01em;
}
.section-head p{
  margin: 8px 0 0;
  color: var(--mutedText);
  line-height:1.45;
}

/* ===== MENU (not “cards”, more like flyer sheets) ===== */
.menu-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.menu-sheet{
  padding: 14px 14px 12px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--borderDark);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  position:relative;
}

.menu-sheet::after{
  content:"";
  position:absolute;
  inset: 8px;
  border: 1px dashed rgba(30,30,30,.12);
  border-radius: calc(var(--radius) - 10px);
  pointer-events:none;
}

.menu-sheet h3{
  margin:0;
  font-size: 1.1rem;
  letter-spacing:.02em;
}

.menu-list{
  list-style:none;
  padding:0;
  margin: 10px 0 0;
}
.menu-list li{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dotted rgba(30,30,30,.16);
}
.menu-list li:last-child{ border-bottom:0; }

.item{ font-weight: 800; }
.price{ font-family: var(--mono); opacity:.85; }

.note{
  margin: 10px 0 0;
  color: #444;
  font-size: .92rem;
}

/* ===== MENU TABS + SEARCH + ACCORDION ===== */
.menu-controls{
  display:flex;
  gap:10px;
  align-items:center;
  margin-top: 14px;
  flex-wrap: wrap;
}

.menu-search{
  flex: 1 1 240px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(30,30,30,.16);
  background: rgba(255,255,255,.88);
  font-weight: 700;
  outline: none;
}
.menu-search:focus{
  box-shadow: 0 0 0 4px rgba(212,177,90,.22);
  border-color: rgba(183,146,63,.45);
}

.menu-tabs{
  margin-top: 12px;
  display:flex;
  gap:10px;
  flex-wrap: wrap;
}

/* Mobile: scrollable tabs */
@media (max-width: 780px){
  .menu-tabs{
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }
  .menu-tabs::-webkit-scrollbar{ display:none; }
}

.menu-tab{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(30,30,30,.16);
  background: rgba(255,255,255,.82);
  font-weight: 900;
  cursor:pointer;
  white-space: nowrap;
}
.menu-tab.is-active{
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  border-color: rgba(0,0,0,.18);
  color:#1b1b1b;
}

.menu-render{
  margin-top: 14px;
  display:grid;
  gap: 12px;
}

/* Accordion “sheets” (flyer vibe) */
.menu-acc{
  background: rgba(255,255,255,.78);
  border: 1px solid var(--borderDark);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  overflow:hidden;
}

.menu-acc summary{
  list-style:none;
  cursor:pointer;
  padding: 14px 14px;
  font-weight: 900;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.menu-acc summary::-webkit-details-marker{ display:none; }

.menu-acc .acc-meta{
  font-weight: 800;
  opacity:.75;
  font-size:.92rem;
}

.menu-acc .acc-body{
  padding: 0 14px 12px;
}

.menu-items{
  list-style:none;
  padding:0;
  margin: 0;
}

.menu-items li{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(30,30,30,.16);
}
.menu-items li:last-child{ border-bottom:0; }

.mi-name{ font-weight: 900; }
.mi-desc{ font-weight: 650; opacity:.75; font-size:.92rem; margin-top: 3px; }
.mi-left{ max-width: 72%; }
.mi-price{ font-family: var(--mono); font-weight: 900; opacity:.85; white-space:nowrap; }

.menu-note{
  margin: 10px 0 0;
  color:#444;
  font-size:.92rem;
}

/* imagery */
.photo-row{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.photo{
  margin:0;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(30,30,30,.12);
  background: rgba(255,255,255,.75);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}
.photo img{
  width:100%;
  height: 210px;
  object-fit: cover;
}
.photo figcaption{
  padding: 10px 12px 12px;
  color: #444;
  font-size:.92rem;
}

.section-cta{
  margin-top: 16px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
}

.small-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(30,30,30,.16);
  background: rgba(255,255,255,.85);
  font-weight: 900;
}
.small-btn:hover{ text-decoration:none; filter: brightness(1.01); }

.small-btn.dark{
  background: rgba(30,30,30,.92);
  color: rgba(255,255,255,.94);
  border-color: rgba(255,255,255,.12);
}

.mutedline{ color:#555; font-size:.92rem; }

/* ===== TRUST ===== */
.trust-lines{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.trust-line{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--borderDark);
  background: rgba(255,255,255,.72);
}

.trust-badge{
  width:38px;
  height:38px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(212,177,90,.22);
  border: 1px solid rgba(183,146,63,.35);
  flex: 0 0 auto;
}

.trust-line h3{ margin:0; }
.trust-line p{ margin: 6px 0 0; color:#444; line-height:1.4; }

.quote{
  margin-top: 16px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--borderDark);
  background: rgba(255,255,255,.82);
  position: relative;
}

.quote::before{
  content:"★";
  position:absolute;
  top:-12px;
  left: 14px;
  font-size: 1.4rem;
  color: rgba(212,177,90,.85);
  background: #fff;
  padding: 2px 6px;
  border-radius: 999px;
}

.quote-text{
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.45;
}

.quote-by{
  margin: 0 0 10px;
  font-size: .92rem;
  color: #555;
}

.quote-sep{
  border: 0;
  border-top: 1px dashed rgba(30,30,30,.18);
  margin: 12px 0;
}

/* ===== HOURS ===== */
.hours{
  margin-top: 18px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--borderDark);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

.hours-row{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(30,30,30,.16);
}
.hours-row:last-of-type{ border-bottom:0; }

.hours-note{
  margin: 12px 0 0;
  color:#444;
  line-height:1.45;
  font-size:.92rem;
}

/* ===== FIND US ===== */
.find-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.address{
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--borderDark);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

.addr-title{ margin:0 0 8px; font-weight: 900; }
.addr-lines{ margin:0; }
.addr-note{ margin: 10px 0 0; color:#444; font-size:.92rem; }

.addr-actions{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

/* ===== MAP PREVIEW (intentional, lightweight) ===== */
/* ===== REAL EMBED MAP (fits your flyer style) ===== */
.mapbox{
  height: 220px;
  border-radius: 22px;
  overflow: hidden; /* important: rounds the iframe */
  border: 1px dashed rgba(30,30,30,.22);
  background: rgba(255,255,255,.65);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.map-embed{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Desktop: give it more presence */
@media (min-width: 780px){
  .mapbox{ height: 100%; min-height: 260px; }
}



/* ===== STICKY BAR ===== */
.sticky{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display:flex;
  gap: 10px;
  justify-content:space-between;
  z-index: 50;

  padding: 10px;
  border-radius: 999px;
  background: rgba(30,30,30,.92);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 16px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}

.sticky-btn{
  flex: 1 1 0;
  text-align:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  text-decoration:none;
}
.sticky-btn:hover{ text-decoration:none; }

.sticky-btn.gold{
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  color:#1b1b1b;
  border-color: rgba(0,0,0,.18);
}

/* ===== FOOTER ===== */
.footer{
  margin-top: 24px;
  background: linear-gradient(180deg, var(--charcoal2), var(--charcoal));
  color: var(--white);
  padding: 26px 0 18px;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.footer-title{
  margin:0 0 8px;
  font-weight: 900;
}
.footer-link{ margin:0 0 6px; }
.footer-muted{ margin:0; opacity:.82; }

.footer-bottom{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,.18);
}

/* ===== DESKTOP ===== */
@media (min-width: 780px){
  .brand-row{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }

  .action-bar{
    justify-content:flex-end;
    min-width: 340px;
  }

  .order-buttons{ grid-template-columns: 1fr 1fr 1fr; }
  .menu-grid{ grid-template-columns: 1fr 1fr; }
  .photo-row{ grid-template-columns: 1fr 1fr 1fr; }
  .trust-lines{ grid-template-columns: 1fr 1fr 1fr; }
  .find-grid{ grid-template-columns: 1.1fr .9fr; align-items:stretch; }
  .mapbox{ height: 100%; min-height: 220px; }
  .footer-grid{ grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

/* =========================
   AWARDS / GALLERY / PEOPLE (OPTION A)
   ========================= */

.media-card{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

/* ===== SPHINX BANNER (fills, no extra space) ===== */
.banner-strip{
  margin-top: 14px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.18);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
  background: #d4b15a;
}

.banner-strip img{
  width: 100%;
  height: 220px;        /* adjust height here */
  display: block;
  object-fit: cover;    /* fills strip */
  object-position: center;
  padding: 0;           /* IMPORTANT */
  background: none;     /* IMPORTANT */
  border-radius: 0;     /* IMPORTANT */
  object-position: center 41%;
}



/* ===== AWARDS: all same size ===== */
.awards-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
  align-items: stretch;
}

.awards-grid > *{
  height: 260px;              /* one consistent size */
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

.awards-grid img{
  width: 100%;
  height: 100%;
  display:block;
  object-fit: cover;          /* makes them uniform */
  object-position: center;
}

/* MOBILE: awards as proper swipe cards (NOT full screen) */
@media (max-width: 780px){

  .awards-grid{
    display: flex !important;
    gap: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0 16px 10px;          /* 👈 creates the “peek” space */
    scroll-padding: 16px;
  }

  /* if your awards are JUST <img> directly in the grid */
  .awards-grid > img{
    flex: 0 0 auto !important;
    width: clamp(260px, 78vw, 320px) !important; /* 👈 not full screen */
    height: 260px !important;
    scroll-snap-align: center;
    border-radius: 18px;
    object-fit: cover;
    display: block;
  }

  /* if your awards are wrapped (figure/div), this still works */
  .awards-grid > *:not(img){
    flex: 0 0 auto !important;
    width: clamp(260px, 78vw, 320px) !important;
    height: 260px !important;
    scroll-snap-align: center;
  }
  .awards-grid > *:not(img) img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display:block;
  }

  .awards-grid::-webkit-scrollbar{ display:none; }
}

/* GALLERY = 5 images, make them wider + consistent */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.gallery-grid .g{ margin:0; }

.gallery-grid img{
  width:100%;
  height: 210px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.14);
  box-shadow: 0 12px 26px rgba(0,0,0,.12);
  background: rgba(0,0,0,.06);
}

.g figcaption{
  margin-top: 8px;
  color: rgba(20,20,20,.78);
  font-weight: 800;
  font-size: 13px;
}

/* PEOPLE + SOLO AWARDS (squares) */
.people-awards{
  display:grid;
  grid-template-columns: 1.2fr .8fr; /* people left, awards right */
  gap: 14px;
  margin-top: 14px;
  align-items: start;
}

/* People image: show heads, avoid dead space */
.pa{ margin:0; }
.pa img{
  width:100%;
  height: 360px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.14);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

/* Solo awards squares = 2x2 grid */
.pa-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.pa-grid img{
  width:100%;
  aspect-ratio: 1 / 1;      /* square */
  height: auto;
  object-fit: cover;        /* square art looks best */
  object-position: center;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.14);
  box-shadow: 0 12px 26px rgba(0,0,0,.12);
  background: rgba(0,0,0,.06);
}

/* Responsive */
@media (max-width: 980px){
  .awards-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .people-awards{ grid-template-columns: 1fr; }
  .pa img{ height: 300px; }
}
@media (max-width: 520px){
  .awards-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: 1fr; }
  .pa-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.footer-credits {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 28px;
  padding-top: 14px;
  text-align: center;
}

.footer-credits p {
  font-size: 12px;
  opacity: 0.65;
  margin: 0;
}

.footer-credits a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-credits a:hover {
  opacity: 1;
}

:root{
  --actionbar-h: 84px; /* adjust if your bar is taller */
}

main{
  padding-bottom: calc(var(--actionbar-h));
}

/* If you don't have a <main>, use body instead */
body{
  padding-bottom: calc(var(--actionbar-h));
}
