/* ==========================================================================
   Golden Gate Schools — inner pages
   Loaded in addition to style.css on about / academics / admissions /
   campus-life / contact. The homepage does not need any of this.
   ========================================================================== */

/* ---------- solid site navigation ---------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--teal);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.site-nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  position: relative;
}
.site-nav .brand-text strong { color: #fff; }
.site-nav .brand-text span { color: var(--gold); }
.site-menu ul {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-menu a {
  font-family: "Fredoka", sans-serif;
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .88);
  padding: .3rem 0;
  position: relative;
  white-space: nowrap;
}
.site-menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  height: 3px; width: 0;
  border-radius: 3px;
  background: var(--gold);
  transition: width .22s ease;
}
.site-menu a:hover { color: #fff; }
.site-menu a:hover::after,
.site-menu a.active::after { width: 100%; }
.site-menu a.active { color: var(--gold); }

@media (max-width: 1080px) {
  .site-menu ul { gap: 18px; }
  .site-menu a { font-size: .88rem; }
}

@media (max-width: 992px) {
  .site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--teal);
    border-radius: 0 0 14px 14px;
    box-shadow: 0 22px 44px rgba(0, 0, 0, .38);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    z-index: 30;
  }
  .site-menu.open { max-height: 430px; }
  .site-menu ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 22px 14px;
  }
  .site-menu li { border-bottom: 1px solid rgba(255, 255, 255, .1); }
  .site-menu li:last-child { border-bottom: 0; }
  .site-menu a { display: block; padding: .85rem 0; font-size: 1rem; }
  .site-nav .nav-cta .btn { display: none; }
}

/* ---------- page hero ---------------------------------------------------- */
.page-hero {
  position: relative;
  background: var(--teal);
  overflow: hidden;
  padding: 92px 0 84px;
  text-align: center;
  color: #fff;
}
/* The background is set with an inline style on .page-hero-bg rather than a
   CSS custom property: a url() inside a custom property resolves relative to
   the stylesheet that consumes it, not the page, which silently 404s. */
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .3;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(7, 58, 59, .76), rgba(7, 58, 59, .9));
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  margin-bottom: .4em;
}
.page-hero p {
  color: rgba(255, 255, 255, .88);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.06rem;
}
.crumbs {
  margin-top: 1.6rem;
  font-size: .88rem;
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.crumbs a:hover { color: var(--gold); }
.crumbs b { color: var(--gold); font-weight: 500; }

@media (max-width: 720px) {
  .page-hero { padding: 62px 0 56px; }
  .page-hero p { font-size: .98rem; }
}

/* ---------- two-column text / media block -------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.split-copy h2 em { font-style: normal; color: var(--gold-dark); }

@media (max-width: 940px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .split-media img { height: 320px; }
}

/* ---------- feature / value cards ---------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--gold-soft);
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.card-icon svg { width: 24px; height: 24px; fill: var(--gold-dark); }
.card h3 { font-size: 1.16rem; margin-bottom: .45rem; }
.card p { font-size: .95rem; margin-bottom: 0; }

@media (max-width: 940px) {
  .cards, .cards.four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .cards, .cards.four { grid-template-columns: 1fr; }
}

/* ---------- numbered process steps --------------------------------------- */
.steps { display: grid; gap: 20px; }
.step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}
.step-n {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--gold);
  display: grid; place-items: center;
  font-family: "Fredoka", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}
.step h3 { font-size: 1.14rem; margin-bottom: .35rem; }
.step p { margin-bottom: 0; font-size: .96rem; }

@media (max-width: 620px) {
  .step { grid-template-columns: 44px 1fr; gap: 16px; padding: 22px 20px; }
  .step-n { width: 44px; height: 44px; font-size: 1.05rem; }
}

/* ---------- class level rows --------------------------------------------- */
.level-row {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 52px;
  align-items: center;
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}
.level-row:last-child { border-bottom: 0; }
.level-row:nth-child(even) .level-row-media { order: 2; }
.level-row-media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.level-row-copy .age {
  display: inline-block;
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  color: var(--teal);
  font-family: "Fredoka", sans-serif;
  font-size: .82rem;
  padding: .3rem 1rem;
  border-radius: 999px;
  margin-bottom: .9rem;
}
.level-row-copy h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); }
.level-row-copy ul {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 1.6rem;
  display: grid;
  gap: .5rem;
}
.level-row-copy li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .96rem;
}
.level-row-copy li svg {
  width: 18px; height: 18px;
  fill: var(--gold);
  flex: none;
  margin-top: .3em;
}

@media (max-width: 940px) {
  .level-row { grid-template-columns: 1fr; gap: 30px; padding: 34px 0; }
  .level-row:nth-child(even) .level-row-media { order: 0; }
  .level-row-media img { height: 280px; }
}

/* ---------- gallery grid + filters --------------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 40px;
}
.filters button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--teal);
  font-family: "Fredoka", sans-serif;
  font-size: .92rem;
  padding: .55rem 1.3rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.filters button:hover { border-color: var(--gold); }
.filters button.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.grid-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  margin: 0;
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.tile:hover img { transform: scale(1.07); }
.tile figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 16px 14px;
  background: linear-gradient(transparent, rgba(7, 58, 59, .88));
  color: #fff;
  font-family: "Fredoka", sans-serif;
  font-size: .92rem;
  opacity: 0;
  transition: opacity .25s ease;
}
.tile:hover figcaption { opacity: 1; }
.tile.hidden { display: none; }

@media (max-width: 940px) { .grid-gallery { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 560px) { .grid-gallery { grid-template-columns: 1fr; } }

/* ---------- lightbox ------------------------------------------------------ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 58, 59, .95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
}
.lightbox-close {
  position: absolute;
  top: 22px; right: 24px;
  width: 46px; height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox-close:hover { background: var(--gold); color: var(--ink); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lightbox-nav:hover { background: var(--gold); }
.lightbox-nav svg { width: 20px; height: 20px; fill: #fff; }
.lightbox-nav:hover svg { fill: var(--ink); }
.lightbox-nav.prev { left: 18px; }
.lightbox-nav.next { right: 18px; }

@media (max-width: 620px) {
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-nav.prev { left: 8px; }
  .lightbox-nav.next { right: 8px; }
}

/* ---------- contact page -------------------------------------------------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.contact-card i {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--teal);
  display: grid; place-items: center;
  margin: 0 auto 1rem;
}
.contact-card i svg { width: 22px; height: 22px; fill: var(--gold); }
.contact-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.contact-card p { font-size: .95rem; margin-bottom: 0; line-height: 1.7; }
.contact-card a:hover { color: var(--gold-dark); }
.map-full {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 440px;
  background: var(--bg-soft);
}
.map-full iframe { width: 100%; height: 100%; min-height: 440px; border: 0; display: block; }

@media (max-width: 940px) { .contact-cards { grid-template-columns: 1fr; } }

/* ---------- staff strip --------------------------------------------------- */
.staff-note {
  margin-top: 1.6rem;
  font-size: .88rem;
  color: #8a9797;
  text-align: center;
}

/* ---------- utilities ----------------------------------------------------- */
.bg-soft { background: var(--bg-soft); }
.text-center { text-align: center; }

/* ---------- dropdown navigation ------------------------------------------ */
.site-menu li.has-sub,
/* ---------- dropdown navigation ------------------------------------------ */
.hero-menu li.has-sub { position: relative; }.site-menu .sub-toggle,
.hero-menu .sub-toggle {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}.site-menu .sub-toggle svg,
.hero-menu .sub-toggle svg {
  width: 11px; height: 11px;
  fill: currentColor;
  transition: transform .25s ease;
}.site-menu li.has-sub:hover > a .sub-toggle svg,
.hero-menu li.has-sub:hover > a .sub-toggle svg,
.site-menu li.has-sub.open > a .sub-toggle svg,
.hero-menu li.has-sub.open > a .sub-toggle svg { transform: rotate(180deg); }/* `.site-menu ul` is a flex row and outranks a bare `.sub-menu`,
/* `.hero-menu ul` is a flex row and outranks a bare `.sub-menu`,
so the reset has to be scoped to win on specificity. */
.site-menu .sub-menu,
so the reset has to be scoped to win on specificity. */
.hero-menu .sub-menu {
  display: block;
  gap: 0;
}.sub-menu {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: calc(100% + 12px);
  left: -14px;
  min-width: 232px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 48px rgba(7, 58, 59, .22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 90;
}.site-menu li.has-sub:hover > .sub-menu,
.hero-menu li.has-sub:hover > .sub-menu,
.site-menu li.has-sub:focus-within > .sub-menu,
.hero-menu li.has-sub:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}.sub-menu::before {
  content: "";
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
}.sub-menu li { border: 0; }.sub-menu a {
  display: block;
  padding: .6rem .9rem;
  border-radius: 9px;
  color: var(--teal);
  font-size: .92rem;
  white-space: nowrap;
}.sub-menu a::after { display: none; }.sub-menu a:hover {
  background: var(--gold-soft);
  color: var(--teal);
}.sub-menu a.active { color: var(--gold-dark); background: var(--gold-soft); }@media (max-width: 992px) {.sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, .18);
    border-radius: 10px;
    margin: 0 0 .6rem;
    padding: 4px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease, padding .28s ease;
  }.site-menu li.has-sub.open > .sub-menu,
.hero-menu li.has-sub.open > .sub-menu { max-height: 320px; padding: 6px; }.sub-menu a { color: rgba(255, 255, 255, .88); padding: .6rem .8rem; }.sub-menu a:hover { background: rgba(255, 255, 255, .1); color: #fff; }.sub-menu a.active { background: rgba(251, 197, 11, .16); color: var(--gold); }
}

/* ---------- blog --------------------------------------------------------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card-img { height: 210px; overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-card-img img { transform: scale(1.06); }
.post-card-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-meta {
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-family: "Fredoka", sans-serif;
  margin-bottom: .5rem;
}
.post-card h3 { font-size: 1.14rem; margin-bottom: .5rem; }
.post-card p { font-size: .94rem; flex: 1; }
.post-card a.read {
  font-family: "Fredoka", sans-serif;
  font-size: .92rem;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.post-card a.read svg { width: 15px; height: 15px; fill: var(--gold-dark); transition: transform .2s ease; }
.post-card a.read:hover svg { transform: translateX(4px); }

@media (max-width: 940px) { .posts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .posts { grid-template-columns: 1fr; } }

/* ---------- article ------------------------------------------------------ */
.article { max-width: 780px; margin: 0 auto; }
.article img.lead {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 2.2rem;
}
.article h2 { font-size: 1.5rem; margin-top: 2rem; }
.article p { font-size: 1.03rem; }
.article .post-meta { margin-bottom: 1rem; }

/* ---------- media tile strip (homepage) ---------------------------------- */
.media-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.media-tile {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-sm);
  background: var(--teal);
}
.media-tile img,
.media-tile video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.media-tile:hover img { transform: scale(1.06); }
.media-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 42%, rgba(7, 58, 59, .92));
}
.media-tile-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 20px 22px;
  color: #fff;
}
.media-tile-label b {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.25;
}
.media-tile-label span { font-size: .88rem; color: rgba(255, 255, 255, .8); }
.media-tile-play {
  position: absolute;
  z-index: 2;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--gold);
  display: grid; place-items: center;
  box-shadow: 0 0 0 10px rgba(251, 197, 11, .22);
}
.media-tile-play svg { width: 20px; height: 20px; fill: var(--ink); margin-left: 3px; }

@media (max-width: 940px) { .media-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .media-strip { grid-template-columns: 1fr; } }

/* ---------- story video (homepage feature player) ------------------------ */
.story-sec { background: var(--teal); }
.story-sec .section-head h2,
.story-sec .section-head p { color: #fff; }
.story-sec .section-head p { opacity: .84; }
.story-sec .eyebrow { color: var(--gold); }

.story-player {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .45);
  border: 4px solid rgba(255, 255, 255, .1);
}
.story-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-play {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: linear-gradient(rgba(7, 58, 59, .18), rgba(7, 58, 59, .62));
  display: grid;
  place-items: center;
  transition: opacity .3s ease;
}
.story-play-btn {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--gold);
  display: grid; place-items: center;
  box-shadow: 0 0 0 14px rgba(251, 197, 11, .2);
  animation: ripple 2.4s infinite;
}
.story-play svg { width: 30px; height: 30px; fill: var(--ink); margin-left: 4px; }
.story-play-label {
  position: absolute;
  bottom: 26px;
  left: 0; right: 0;
  color: #fff;
  font-family: "Fredoka", sans-serif;
  font-size: 1.02rem;
  letter-spacing: .02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}
.story-player.playing .story-play { opacity: 0; pointer-events: none; }

@media (max-width: 620px) {
  .story-play-btn { width: 62px; height: 62px; box-shadow: 0 0 0 10px rgba(251, 197, 11, .2); }
  .story-play svg { width: 22px; height: 22px; }
  .story-play-label { font-size: .88rem; bottom: 16px; padding: 0 16px; }
}

/* ---------- team grid: centre the last row --------------------------------
   The grid version leaves an orphan card whenever the count is not a
   multiple of 3 (4 staff = 3 + 1). Flex-wrap centres any remainder, so it
   stays balanced as staff are added. */
.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.team .member { flex: 0 1 300px; max-width: 340px; }

@media (max-width: 620px) {
  .team .member { flex: 1 1 100%; max-width: none; }
}

/* ---------- legal / prose pages ------------------------------------------ */
.legal { max-width: 820px; margin-inline: auto; }
.legal-updated {
  display: inline-block;
  background: var(--gold-soft);
  border: 1px dashed var(--gold);
  color: var(--teal);
  font-size: .88rem;
  padding: .4rem 1rem;
  border-radius: 999px;
  margin-bottom: 2.4rem;
}
.legal h2 {
  font-size: 1.4rem;
  margin-top: 2.6rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--line);
}
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.08rem; margin-top: 1.6rem; color: var(--teal); }
.legal p, .legal li { font-size: 1.01rem; }
.legal ul { padding-left: 1.2rem; margin: 0 0 1.2rem; }
.legal li { margin-bottom: .5rem; }
.legal a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--teal); }
.legal code {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: .1rem .4rem;
  font-size: .92em;
}
.legal .section-cta { margin-top: 3rem; }

/* ---------- cookie notice ------------------------------------------------- */
.cookie-bar {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 300;
  background: var(--teal);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, .4);
  padding: 20px 24px;
  display: none;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin-inline: auto;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}
.cookie-bar.show { display: flex; transform: none; opacity: 1; }
.cookie-bar-copy { flex: 1 1 420px; min-width: 0; }
.cookie-bar b {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: .25rem;
}
.cookie-bar p {
  margin: 0;
  font-size: .93rem;
  color: rgba(255, 255, 255, .84);
  line-height: 1.55;
}
.cookie-bar a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: .7rem; flex: 0 0 auto; }
.cookie-actions .btn { padding: .7rem 1.5rem; font-size: .93rem; }
.btn-plain {
  background: transparent;
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
}
.btn-plain:hover { background: rgba(255, 255, 255, .12); }

@media (max-width: 720px) {
  .cookie-bar {
    left: 10px; right: 10px; bottom: 10px;
    padding: 18px;
    gap: 14px;
  }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}
