/* Visit Museum Egypt — Premium Design System */

:root {
  --ink: #0a0e17;
  --ink-soft: #151b28;
  --ink-muted: #4a5568;
  --ivory: #faf7f2;
  --parchment: #f0ebe3;
  --line: #ddd5c8;
  --brass: #9a7229;
  --brass-light: #c4a265;
  --terracotta: #7c3d2e;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

.font-display { font-family: 'Playfair Display', Georgia, serif; }

.grain::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.header-solid {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(10, 14, 23, 0.04);
}

.site-header.header-dark:not(.is-scrolled) .nav-link { color: rgba(255,255,255,0.85); }
.site-header.header-dark:not(.is-scrolled) .nav-link:hover,
.site-header.header-dark:not(.is-scrolled) .nav-link.active { color: var(--white); }
.site-header.header-dark:not(.is-scrolled) .nav-link.active { font-weight: 600; }
.site-header.header-dark:not(.is-scrolled) .logo-sub { color: var(--brass-light); }
.site-header.header-dark:not(.is-scrolled) .logo-main { color: var(--white); }
.site-header.header-dark:not(.is-scrolled) .menu-btn { color: var(--white); }

.site-header.is-scrolled .logo-main,
.site-header.header-solid .logo-main { color: var(--ink); }
.site-header.is-scrolled .nav-link,
.site-header.header-solid .nav-link { color: var(--ink-muted); }

.nav-link {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); transform-origin: left; }

.nav-link.active { color: var(--ink); font-weight: 600; }

.site-header.is-scrolled .nav-link.active,
.site-header.header-solid .nav-link.active { color: var(--ink) !important; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.875rem 1.75rem;
  border: 1px solid var(--ink);
  transition: all 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

.btn-primary:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.875rem 1.75rem;
  border: 1px solid currentColor;
  opacity: 0.9;
  transition: all 0.35s ease;
}

.btn-ghost:hover { opacity: 1; background: rgba(255,255,255,0.1); }

.btn-brass {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--white);
}

.btn-brass:hover {
  background: var(--brass-light);
  border-color: var(--brass-light);
}

.eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.hero-home {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.hero-home__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom { to { transform: scale(1); } }

.hero-home__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,23,0.92) 0%, rgba(10,14,23,0.4) 45%, rgba(10,14,23,0.25) 100%);
}

.hero-home__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 8rem 0 5rem;
}

.page-hero {
  position: relative;
  padding: 8rem 0 4.5rem;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  min-height: 36vh;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 10rem 0 6.5rem;
    min-height: 42vh;
  }
}

.page-hero--image { background-size: cover; background-position: center; }

.page-hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,23,0.88) 0%, rgba(10,14,23,0.65) 100%);
}

.page-hero__inner { position: relative; z-index: 1; }

.page-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.bento { display: grid; gap: 1.25rem; }

@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(180px, auto);
  }
  .bento-item--lg { grid-column: span 7; grid-row: span 2; }
  .bento-item--md { grid-column: span 5; }
  .bento-item--sm { grid-column: span 5; }
}

.museum-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  height: 100%;
  min-height: 280px;
  transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.museum-card:hover {
  border-color: var(--brass-light);
  transform: translateY(-4px);
}

.museum-card__img-wrap { position: absolute; inset: 0; }

.museum-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.museum-card:hover .museum-card__img { transform: scale(1.06); }

.museum-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,23,0.85) 0%, rgba(10,14,23,0.2) 55%, transparent 100%);
}

.museum-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  color: var(--white);
  z-index: 2;
}

.museum-card__tag {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 0.5rem;
}

.museum-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.museum-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brass-light);
  margin-top: 0.75rem;
  transition: gap 0.3s ease;
}

.museum-card:hover .museum-card__link { gap: 0.65rem; }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 768px) { .stat-strip { grid-template-columns: repeat(4, 1fr); } }

.stat-strip__item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat-strip__item:last-child { border-right: none; }

.stat-strip__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.stat-strip__label {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

.prose-block p {
  font-size: 1.1875rem;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

.prose-block h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 3rem 0 1.25rem;
  letter-spacing: -0.02em;
}

.prose-block a {
  color: var(--brass);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.editorial-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.editorial-card:hover {
  border-color: var(--brass-light);
  box-shadow: 0 20px 40px -20px rgba(10, 14, 23, 0.12);
}

.faq-item { border-bottom: 1px solid var(--line); }

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 0;
  text-align: left;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.25s ease;
}

.faq-btn:hover { color: var(--brass); }
.faq-btn i { flex-shrink: 0; color: var(--brass); transition: transform 0.35s ease; }
.faq-btn[aria-expanded="true"] i { transform: rotate(180deg); }

.faq-panel { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.faq-panel.is-open { max-height: 800px; }

.faq-panel p {
  padding-bottom: 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-muted);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.testimonial-card:hover { transform: translateY(-3px); border-color: var(--brass-light); }
.testimonial-stars { color: var(--brass); font-size: 0.75rem; letter-spacing: 0.15em; margin-bottom: 1.25rem; }

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  font-size: 1.0625rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(154, 114, 41, 0.12);
}

.form-input[aria-invalid="true"] {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: 6rem 0 2.5rem;
}

.site-footer a { transition: color 0.25s ease; }
.site-footer a:hover { color: var(--white); }

.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.ornament span {
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-drawer.is-open { pointer-events: auto; opacity: 1; }

.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,14,23,0.6);
  backdrop-filter: blur(4px);
}

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--ivory);
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }

.mobile-drawer__link {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.mobile-drawer__link.active { color: var(--brass); font-weight: 600; }

.data-table { width: 100%; border-collapse: collapse; font-size: 1rem; }

.data-table th {
  text-align: left;
  padding: 1.125rem 1.25rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 2px solid var(--line);
  background: var(--parchment);
}

.data-table td {
  padding: 1.125rem 1.25rem;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--line);
}

.pull-quote {
  border-left: 3px solid var(--brass);
  padding: 1.5rem 0 1.5rem 2rem;
  margin: 2.5rem 0;
}

.pull-quote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.625rem;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
}

.map-placeholder {
  background: var(--parchment);
  border: 1px solid var(--line);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
}

/* Site logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.site-logo:hover { opacity: 0.88; }

.site-logo__mark {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-logo:hover .site-logo__mark { transform: scale(1.05) rotate(-2deg); }

.site-logo__text { line-height: 1.15; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo__mark { width: 2.25rem; height: 2.25rem; flex-shrink: 0; opacity: 0.95; }

/* Google Ads trust notice */
.trust-notice {
  background: var(--parchment);
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.trust-notice strong { color: var(--ink); font-weight: 600; }
.trust-notice i { color: var(--brass); }

.page-with-fixed-header .trust-notice { margin-top: 5.25rem; }

.page-home .trust-notice { margin-top: 0; }

/* Homepage — larger hero & sections */
.page-home .hero-home {
  min-height: 100vh;
  min-height: 100dvh;
}

@media (min-width: 768px) {
  .page-home .hero-home {
    min-height: 105vh;
    min-height: 105dvh;
  }
}

.page-home .hero-home__content {
  padding: 9rem 0 6rem;
}

@media (min-width: 768px) {
  .page-home .hero-home__content {
    padding: 11rem 0 8rem;
  }
}

.page-home .bento { gap: 1.5rem; }

@media (min-width: 768px) {
  .page-home .bento {
    grid-auto-rows: minmax(220px, auto);
  }
}

.page-home .museum-card { min-height: 320px; }

.page-home .bento-item--lg.museum-card { min-height: 520px; }

.page-home .museum-card__title { font-size: 1.75rem; }

.page-home .bento-item--lg .museum-card__title { font-size: 2.25rem; }

.page-home .stat-strip__item { padding: 2.5rem 1.75rem; }

.page-home .stat-strip__num { font-size: 3.25rem; }

.page-home .stat-strip__label { font-size: 0.8125rem; }

/* Inner pages — enlarged layout */
.page-with-fixed-header .page-hero__inner > p:not(.eyebrow) {
  font-size: 1.25rem;
  line-height: 1.65;
  max-width: 44rem;
}

@media (min-width: 768px) {
  .page-with-fixed-header .page-hero__inner > p:not(.eyebrow) {
    font-size: 1.375rem;
  }
}

.page-with-fixed-header main > section:not(.page-hero) {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

@media (min-width: 768px) {
  .page-with-fixed-header main > section:not(.page-hero) {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
}

.page-with-fixed-header .max-w-3xl { max-width: 56rem; }
.page-with-fixed-header .max-w-6xl { max-width: 80rem; }

.page-with-fixed-header .trust-notice {
  font-size: 0.875rem;
  padding: 1rem 0;
}

.page-with-fixed-header .site-logo__mark {
  width: 50px;
  height: 50px;
}

.page-with-fixed-header .logo-main {
  font-size: 1.375rem !important;
}

.page-with-fixed-header .btn-primary {
  font-size: 1rem;
  padding: 1rem 2rem;
}

.page-with-fixed-header .disclaimer-box {
  font-size: 1rem;
  padding: 1.25rem 1.5rem;
}

.page-with-fixed-header .editorial-card img.h-64 {
  min-height: 18rem;
}

.page-with-fixed-header .map-placeholder {
  min-height: 360px;
}

.page-with-fixed-header .testimonial-card {
  padding: 2.5rem;
}

.page-with-fixed-header label.block.font-semibold {
  font-size: 1rem;
  margin-bottom: 0.875rem;
}

.page-with-fixed-header [data-planner-days],
.page-with-fixed-header [data-planner-style] {
  padding: 0.75rem 1.375rem !important;
  font-size: 1rem !important;
}

.page-with-fixed-header .space-y-8 > * + * {
  margin-top: 2.25rem !important;
}

.page-with-fixed-header .gap-12 {
  gap: 3.5rem !important;
}

.page-with-fixed-header h2.font-display {
  font-size: 2.25rem;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .page-with-fixed-header h2.font-display.text-3xl {
    font-size: 2.5rem;
  }

  .page-with-fixed-header h2.font-display.text-4xl {
    font-size: 2.75rem;
  }
}

.page-inner-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .page-inner-title { font-size: 2.5rem; }
}

.disclaimer-box {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.disclaimer-box strong { color: var(--ink); }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 200;
  padding: 0 1rem 1rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__panel {
  max-width: 56rem;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 -8px 40px rgba(10, 14, 23, 0.12), 0 2px 8px rgba(10, 14, 23, 0.06);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .cookie-banner__panel { padding: 1.75rem 2rem; }
}

.cookie-banner__top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cookie-banner__icon {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--parchment);
  border: 1px solid var(--line);
  color: var(--brass);
  font-size: 1.125rem;
}

.cookie-banner__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.375rem;
}

.cookie-banner__text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.cookie-banner__text a {
  color: var(--brass);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__prefs {
  display: none;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  margin-bottom: 1.25rem;
  gap: 0.75rem;
}

.cookie-banner__prefs.is-open { display: grid; }

.cookie-pref {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1rem;
  background: var(--ivory);
  border: 1px solid var(--line);
}

.cookie-pref__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.cookie-pref__desc {
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

.cookie-pref__badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brass);
  margin-top: 0.375rem;
}

.cookie-toggle {
  position: relative;
  width: 2.75rem;
  height: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle__track {
  position: absolute;
  inset: 0;
  background: var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.cookie-toggle__track::after {
  content: '';
  position: absolute;
  width: 1.125rem;
  height: 1.125rem;
  left: 0.1875rem;
  top: 0.1875rem;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.25s ease;
  box-shadow: 0 1px 3px rgba(10, 14, 23, 0.15);
}

.cookie-toggle input:checked + .cookie-toggle__track {
  background: var(--brass);
}

.cookie-toggle input:checked + .cookie-toggle__track::after {
  transform: translateX(1.25rem);
}

.cookie-toggle input:disabled + .cookie-toggle__track {
  opacity: 0.55;
  cursor: not-allowed;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  align-items: center;
}

.cookie-banner__actions .btn-primary,
.cookie-banner__actions .btn-secondary,
.cookie-banner__actions .btn-text {
  font-size: 0.8125rem;
  padding: 0.625rem 1.125rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--brass);
  color: var(--brass);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-muted);
  background: none;
  border: none;
  padding: 0.625rem 0.75rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-text:hover { color: var(--brass); }

body.cookie-banner-open { padding-bottom: var(--cookie-banner-offset, 0px); }

.prose-block ul.cookie-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.prose-block ul.cookie-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-muted);
}

.prose-block ul.cookie-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.375rem;
  height: 0.375rem;
  background: var(--brass);
  border-radius: 50%;
}

.prose-block code {
  font-size: 0.875em;
  background: var(--parchment);
  border: 1px solid var(--line);
  padding: 0.125rem 0.375rem;
  color: var(--ink);
}
