/* ==========================================================================
   Meera Sports Arena — A Badminton Academy
   Single responsive landing page. Tokens from the design handoff.
   ========================================================================== */

:root {
  /* Brand */
  --orange:        #F4772A;
  --orange-light:  #F9A66B;
  --orange-dark:   #C4581A;
  --orange-tint:   #FDEEE3;
  --teal-700:      #14514E;
  --teal-900:      #0F3B39;
  --teal-tint:     #E8F0EF;

  /* Neutrals */
  --ink:           #14201F;
  --body:          #5A6867;
  --body-strong:   #3D4A48;
  --muted:         #8A9695;
  --muted-2:       #6B7A78;
  --cream-50:      #FAF9F5;
  --cream-100:     #F6F4ED;
  --hairline:      #EDEBDF;
  --hairline-strong: #DDD9CE;
  --white:         #FFFFFF;

  /* On dark surfaces */
  --on-dark:        rgba(255,255,255,0.86);
  --on-dark-strong: rgba(255,255,255,0.9);
  --on-dark-soft:   rgba(255,255,255,0.72);
  --on-dark-label:  rgba(255,255,255,0.6);
  --rule-dark:      rgba(255,255,255,0.14);
  --rule-dark-2:    rgba(255,255,255,0.18);

  /* Shape */
  --r-card:   12px;
  --r-lg:     16px;
  --r-btn:    12px;
  --r-pill:   999px;

  /* Layout */
  --maxw:     1180px;
  --gutter:   20px;
  --section:  40px;

  /* Motion */
  --ease: 150ms ease;
}

@media (min-width: 1024px) {
  :root { --gutter: 32px; --section: 96px; }
}

/* --------------------------------------------------------------- reset */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* sticky header height + breathing room for anchor targets */
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  background: var(--cream-50);
  color: var(--ink);
  font-family: "Google Sans Flex", "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* room for the mobile sticky action bar */
  padding-bottom: 74px;
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

img { max-width: 100%; display: block; }

h1, h2, h3 { text-wrap: pretty; margin: 0; }
p, ul { margin: 0; }

a { color: var(--teal-700); text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--orange);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--r-btn) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------- layout */

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: var(--section) 0; }

.eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--orange);
  text-transform: uppercase;
}

.h2 {
  margin: 10px 0 0;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: var(--ink);
  max-width: 640px;
}

.lead {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 23px;
  color: var(--body);
  max-width: 560px;
}

@media (min-width: 1024px) {
  .eyebrow { font-size: 11px; }
  .h2      { margin-top: 14px; font-size: 40px; line-height: 1.1; }
  .lead    { margin-top: 16px; font-size: 17px; line-height: 26px; }
}

/* --------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 50px;
  padding: 0 22px;
  border-radius: var(--r-btn);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--ease), box-shadow var(--ease), filter var(--ease);
}

.btn i { font-size: 18px; }

.btn--orange { background: var(--orange); color: #fff; }
.btn--orange:hover { color: #fff; filter: brightness(0.92); }

.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
}
.btn--ghost:hover { background: rgba(255,255,255,0.22); color: #fff; }

.btn--white {
  background: var(--white);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--hairline-strong);
}
.btn--white:hover { background: var(--cream-100); color: var(--ink); }

.btn--teal { background: var(--teal-700); color: #fff; }
.btn--teal:hover { color: #fff; filter: brightness(0.92); }

.btn--sm { height: 40px; padding: 0 16px; font-size: 14px; }
.btn--sm i { font-size: 16px; }

.btn--block { width: 100%; }

@media (min-width: 1024px) {
  .btn { height: 52px; padding: 0 24px; font-size: 16px; }
  .btn--block { width: auto; }
}

/* --------------------------------------------------------------- header */

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250,249,245,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 -1px 0 var(--hairline);
}

.header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }

.brand img {
  width: 36px; height: 36px;
  border-radius: var(--r-pill);
  object-fit: cover;
}

.brand__text { display: flex; flex-direction: column; line-height: 1.15; }

.brand__name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.brand__sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted-2);
}

.nav { display: none; }

.header__call-icon {
  margin-left: auto;
  width: 38px; height: 38px;
  border-radius: var(--r-pill);
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter var(--ease);
}
.header__call-icon:hover { color: #fff; filter: brightness(0.92); }
.header__call-icon i { font-size: 17px; }

.header__call-btn { display: none; }

@media (min-width: 1024px) {
  .header__inner { gap: 24px; }
  .brand { gap: 12px; }
  .brand img { width: 44px; height: 44px; }
  .brand__name { font-size: 15px; }
  .brand__sub  { font-size: 10px; }

  .nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
  }
  .nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--body-strong);
    transition: color var(--ease);
  }
  .nav a:hover { color: var(--orange); }

  .header__call-icon { display: none; }
  .header__call-btn  { display: inline-flex; }
}

/* --------------------------------------------------------------- hero */

.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--teal-900);
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(15,59,57,0.60) 0%,
    rgba(15,59,57,0.55) 35%,
    rgba(15,59,57,0.95) 100%);
}

.hero__content {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px var(--gutter) 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.14);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.24);
  color: #fff;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: background var(--ease);
}
.pill:hover { background: rgba(255,255,255,0.24); color: #fff; }
.pill .ph-map-pin { font-size: 12px; color: var(--orange); }
.pill .ph-arrow-up-right { font-size: 10px; opacity: 0.8; }

.hero h1 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 34px;
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #fff;
}
.hero h1 i { font-size: 32px; flex: 0 0 auto; }

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.hero__strip { display: none; }

@media (min-width: 768px) {
  .hero__ctas { flex-direction: row; flex-wrap: wrap; gap: 12px; }
}

@media (min-width: 1024px) {
  .hero { min-height: 480px; }
  .hero__scrim {
    background: linear-gradient(180deg,
      rgba(15,59,57,0.72) 0%,
      rgba(15,59,57,0.62) 40%,
      rgba(15,59,57,0.94) 100%);
  }
  .hero__content { padding: 64px var(--gutter) 0; gap: 0; }
  .pill { font-size: 11px; letter-spacing: 0.14em; padding: 6px 14px; gap: 8px; }
  .pill .ph-map-pin { font-size: 14px; }
  .pill .ph-arrow-up-right { font-size: 12px; }

  .hero h1 {
    margin: 22px 0 0;
    max-width: 900px;
    font-size: 64px;
    line-height: 1.03;
    gap: 16px;
  }
  .hero h1 i { font-size: 56px; }

  .hero__ctas { margin: 36px 0 0; }

  .hero__strip {
    display: flex;
    flex-wrap: wrap;
    margin: 56px 0 0;
    box-shadow: inset 0 1px 0 var(--rule-dark-2);
  }
  .hero__strip div {
    flex: 1 1 200px;
    padding: 22px 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .hero__strip div:first-child { padding-left: 0; }
  .hero__strip div:last-child  { padding-right: 0; }
  .hero__strip div + div { box-shadow: inset 1px 0 0 var(--rule-dark-2); }
  .hero__strip dt {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--on-dark-label);
  }
  .hero__strip dd {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
  }
}

/* --------------------------------------------------------------- stats */

.stats { background: var(--teal-700); }

.stats__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.stat {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat:nth-child(2n)   { box-shadow: inset 1px 0 0 rgba(255,255,255,0.16); }
.stat:nth-child(n+3)  { box-shadow: inset 0 1px 0 rgba(255,255,255,0.16); }
.stat:nth-child(4)    { box-shadow: inset 1px 0 0 rgba(255,255,255,0.16),
                                    inset 0 1px 0 rgba(255,255,255,0.16); }

.stat__num {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.stat__label { font-size: 12px; color: var(--on-dark-soft); }

@media (min-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .stat { padding: 32px 24px; gap: 6px; }
  .stat:first-child { padding-left: 0; }
  .stat:last-child  { padding-right: 0; }
  .stat, .stat:nth-child(2n), .stat:nth-child(n+3) { box-shadow: none; }
  .stat + .stat { box-shadow: inset 1px 0 0 rgba(255,255,255,0.16); }
  .stat__num   { font-size: 34px; }
  .stat__label { font-size: 13px; font-weight: 500; }
}

/* --------------------------------------------------------------- facilities */

.facilities__grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.fac {
  background: var(--white);
  border-radius: var(--r-card);
  box-shadow: inset 0 0 0 1px var(--hairline);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.chip {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: var(--r-card);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chip i { font-size: 20px; }
.chip--teal   { background: var(--teal-tint);   color: var(--teal-700); }
.chip--orange { background: var(--orange-tint); color: var(--orange-dark); }

.fac__body { display: flex; flex-direction: column; gap: 5px; }
.fac__title { font-size: 16px; font-weight: 600; color: var(--ink); }
.fac__text  { font-size: 14px; line-height: 21px; color: var(--body); }

@media (min-width: 768px) {
  .facilities__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .facilities__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  .fac {
    flex-direction: column;
    gap: 12px;
    padding: 28px;
  }
  .chip { width: 44px; height: 44px; }
  .chip i { font-size: 22px; }
  .fac__title { font-size: 18px; }
  .fac__text  { font-size: 15px; line-height: 23px; }
}

/* --------------------------------------------------------------- ways to play */

.play { background: var(--cream-100); }

.play__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.card-lg {
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-lg--academy { background: var(--teal-900); }
.card-lg--casual  { background: var(--white); box-shadow: inset 0 0 0 1px var(--hairline); }

.card-lg__img {
  width: calc(100% + 48px);
  height: 150px;
  object-fit: cover;
  margin: -24px -24px 2px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  opacity: 0.65;
}

.badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.badge--academy { background: rgba(244,119,42,0.18); color: var(--orange-light); }
.badge--casual  { background: var(--teal-tint); color: var(--teal-700); }

.card-lg__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.card-lg--academy .card-lg__title { color: #fff; }
.card-lg--casual  .card-lg__title { color: var(--ink); }

.card-lg__text { font-size: 15px; line-height: 23px; }
.card-lg--academy .card-lg__text { color: rgba(255,255,255,0.8); }
.card-lg--casual  .card-lg__text { color: var(--body); }

.ticks {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ticks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
}
.ticks i { font-size: 15px; margin-top: 3px; flex: 0 0 auto; }
.card-lg--academy .ticks li { color: var(--on-dark-strong); }
.card-lg--academy .ticks i  { color: var(--orange); }
.card-lg--casual  .ticks li { color: var(--body-strong); }
.card-lg--casual  .ticks i  { color: var(--teal-700); }

.card-lg .btn { margin-top: 10px; align-self: flex-start; }

@media (min-width: 1024px) {
  .play__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
  }
  .card-lg { padding: 40px; gap: 18px; }
  .card-lg__img {
    width: calc(100% + 80px);
    height: 200px;
    margin: -40px -40px 4px;
  }
  .badge { font-size: 11px; padding: 6px 14px; }
  .card-lg__title { font-size: 28px; }
  .card-lg__text  { font-size: 16px; line-height: 25px; }
  .ticks li { font-size: 15px; }
  .ticks i  { font-size: 16px; }
  .card-lg .btn { margin-top: 14px; }
}

/* --------------------------------------------------------------- packages */

.pkg__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.pkg {
  position: relative;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px var(--hairline);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pkg--hi { box-shadow: inset 0 0 0 2px var(--orange); }

.pkg__badge {
  position: absolute;
  top: -11px;
  left: 24px;
  background: var(--orange);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.pkg__title { font-size: 18px; font-weight: 600; color: var(--ink); }
.pkg__text  { font-size: 14px; line-height: 21px; color: var(--body); }

.pkg__foot {
  margin-top: auto;
  padding-top: 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-700);
  box-shadow: inset 0 1px 0 var(--hairline);
}

@media (min-width: 768px) {
  .pkg__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (min-width: 1024px) {
  .pkg__grid { grid-template-columns: repeat(3, 1fr); margin-top: 44px; }
  .pkg { padding: 32px; }
  .pkg__badge { left: 32px; }
  .pkg__title { font-size: 20px; }
  .pkg__text  { font-size: 15px; line-height: 23px; }
  .pkg__foot  { font-size: 13px; }
}

/* --------------------------------------------------------------- timings */

.timings { background: var(--teal-900); }
.timings .eyebrow { color: var(--orange-light); }
.timings .h2 { color: #fff; }
.timings .lead { color: rgba(255,255,255,0.78); max-width: 440px; }

.timings__grid { display: grid; gap: 28px; }

.timings__panel {
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 0 0 1px var(--rule-dark-2);
  border-radius: var(--r-lg);
  padding: 4px 20px;
  margin-top: 4px;
}

.timings__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  box-shadow: inset 0 -1px 0 var(--rule-dark);
}
.timings__row:last-child { box-shadow: none; }

.timings__day {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.timings__val {
  font-size: 15px;
  color: var(--on-dark);
  text-align: right;
}
.timings__val--accent { color: var(--orange-light); }

@media (min-width: 1024px) {
  .timings { padding: 88px 0; }
  .timings__grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .timings .h2 { font-size: 38px; line-height: 1.12; }
  .timings .lead { margin-top: 18px; }
  .timings__panel { padding: 12px 28px; margin-top: 0; }
  .timings__row { padding: 20px 0; gap: 24px; }
  .timings__day, .timings__val { font-size: 16px; }
}

/* --------------------------------------------------------------- contact */

.contact__grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact__col { display: flex; flex-direction: column; gap: 16px; }

.info-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px var(--hairline);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card--reach { gap: 12px; }

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.tel {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color var(--ease);
}
.tel:hover { color: var(--orange); }
.tel i { font-size: 20px; color: var(--teal-700); }

.contact__btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }

.addr {
  font-size: 17px;
  font-weight: 600;
  line-height: 26px;
  color: var(--ink);
}

.addr-note { font-size: 14px; line-height: 22px; color: var(--body); }

.maps-link {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-700);
  transition: color var(--ease);
}
.maps-link:hover { color: var(--orange); }

.map-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 220px;
  display: block;
  background: var(--teal-900);
}
.map-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.map-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,59,57,0) 45%, rgba(15,59,57,0.9) 100%);
}
.map-card__cap {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.map-card__cap b { font-size: 18px; font-weight: 700; color: #fff; }
.map-card__cap span { font-size: 14px; color: rgba(255,255,255,0.82); }

@media (min-width: 1024px) {
  .contact__grid { grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
  .info-card { padding: 32px; gap: 20px; }
  .tel { font-size: 26px; }
  .tel i { font-size: 22px; }
  .addr { font-size: 18px; }
  .addr-note { font-size: 15px; line-height: 23px; }
  .map-card { min-height: 420px; }
  .map-card__cap { left: 32px; right: 32px; bottom: 32px; }
  .map-card__cap b { font-size: 20px; }
  .map-card__cap span { font-size: 15px; }
}

/* --------------------------------------------------------------- footer */

.footer { background: var(--ink); padding: 40px 0 32px; }

.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  box-shadow: inset 0 -1px 0 var(--rule-dark);
}

.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img {
  width: 52px; height: 52px;
  border-radius: var(--r-pill);
  object-fit: cover;
}
.footer__name {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer__name b {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}
.footer__name span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
}

.footer__links { display: flex; flex-wrap: wrap; gap: 12px; }
.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22);
  color: #fff;
  padding: 11px 18px;
  border-radius: var(--r-btn);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--ease);
}
.footer__links a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.footer__links i { font-size: 16px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding-top: 24px;
}
.footer__memory { font-size: 14px; color: rgba(255,255,255,0.6); }
.footer__hours  { font-size: 13px; color: rgba(255,255,255,0.4); }

@media (min-width: 1024px) {
  .footer { padding: 56px 0 40px; }
  .footer__top { gap: 32px; padding-bottom: 32px; }
  .footer__name b { font-size: 16px; }
  .footer__name span { font-size: 11px; }
  .footer__bottom { gap: 20px; padding-top: 28px; }
}

/* --------------------------------------------------------- mobile action bar */

.actionbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: flex;
  gap: 10px;
  padding: 12px var(--gutter);
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: rgba(250,249,245,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 var(--hairline);
}
.actionbar .btn { flex: 1 1 0; }

@media (min-width: 768px) {
  .actionbar { display: none; }
}

/* --------------------------------------------------- shuttlecock (inline SVG)
   Phosphor 2.1.1 has no `shuttlecock` glyph, so the hero mark ships as
   inline SVG. Sized to match the icon sizes in the design spec. */
.shuttle {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  color: #fff;
}

@media (min-width: 1024px) {
  .shuttle { width: 56px; height: 56px; }
}
