:root {
  --background: #fbf9f9;
  --surface: #ffffff;
  --surface-soft: #f5f3f3;
  --surface-muted: #efeded;
  --text: #1b1c1c;
  --text-muted: #5f5e5e;
  --gold: #c5a059;
  --gold-dark: #775a19;
  --border: #d1c5b4;
  --black: #111111;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 0, 0, .12);
  --container: 1280px;
  --header-height: 80px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: var(--gold); color: var(--white); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}
.narrow { max-width: 760px; }
.section { padding: 96px 0; }
.section-heading { text-align: center; margin-bottom: 56px; }
.section-heading p { max-width: 620px; margin-inline: auto; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .78rem;
  font-weight: 700;
}
h1, h2, h3, blockquote {
  font-family: "Noto Serif", Georgia, serif;
  line-height: 1.12;
}
h1 { margin: 0 0 28px; font-size: clamp(3.2rem, 7vw, 5.8rem); letter-spacing: -.04em; text-transform: uppercase; }
h2 { margin: 0 0 24px; font-size: clamp(2.3rem, 4vw, 4rem); letter-spacing: -.02em; }
h3 { margin: 0 0 14px; font-size: 1.55rem; }
p { margin: 0 0 18px; color: var(--text-muted); }

.material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s, background .25s;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0,0,0,.08); background: rgba(255,255,255,.94); }
.brand {
  font-weight: 800;
  letter-spacing: .22em;
  font-size: 1.45rem;
  color: var(--text);
}
.primary-nav { display: flex; gap: 28px; align-items: center; }
.primary-nav a {
  font-family: "Noto Serif", Georgia, serif;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #68615a;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}
.primary-nav a:hover, .primary-nav a.active { color: var(--gold); border-color: var(--gold); }
.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s, background .25s, color .25s, border-color .25s;
}
.header-cta { background: var(--text); color: var(--gold); }
.btn:hover, .header-cta:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold-dark); color: var(--white); }
.btn-outline { border-color: var(--border); color: var(--text); }
.btn-outline:hover { background: var(--surface-muted); }
.btn-dark { background: var(--text); color: var(--white); width: 100%; }
.btn-light { background: var(--gold); color: var(--black); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; color: var(--text); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); opacity: .48; }
.hero-overlay { background: linear-gradient(90deg, var(--background) 0%, rgba(251,249,249,.86) 45%, rgba(251,249,249,.08) 100%); }
.hero-content { position: relative; z-index: 1; }
.hero-content > * { max-width: 720px; }
.hero-copy { font-size: 1.18rem; max-width: 590px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 44px; }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about { background: var(--surface); }
.framed-image { position: relative; }
.framed-image::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 120px;
  height: 120px;
  border-top: 2px solid var(--gold-dark);
  border-left: 2px solid var(--gold-dark);
}
.framed-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; box-shadow: var(--shadow); }
.section-copy blockquote {
  margin: 32px 0;
  padding: 16px 0 16px 26px;
  border-left: 4px solid var(--gold-dark);
  color: #4e4639;
  font-size: 1.32rem;
  font-style: italic;
}

.videos { background: var(--surface-soft); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.video-card, .service-card {
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, .06);
  transition: transform .25s, box-shadow .25s;
}
.video-card:hover, .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.video-thumb { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.video-card:hover img { transform: scale(1.08); }
.video-thumb::after { content: ""; position: absolute; inset: 0; background: rgba(17,17,17,.25); opacity: 0; transition: opacity .25s; }
.video-card:hover .video-thumb::after { opacity: 1; }
.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  z-index: 2;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(197,160,89,.92);
  color: var(--white);
}
.card-body { padding: 26px; }
.card-body p { margin: 0; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }

.service-card { padding: 40px; }
.service-card > .material-symbols-outlined { color: var(--gold-dark); font-size: 42px; margin-bottom: 24px; }
.service-card a { color: var(--gold-dark); text-transform: uppercase; font-weight: 800; letter-spacing: .1em; font-size: .78rem; }

.podcast { background: var(--black); color: var(--white); }
.podcast p { color: #c8c6c5; }
.podcast h2 { color: var(--gold); font-style: italic; }
.episode-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px;
  margin: 32px 0;
  background: rgba(255,255,255,.06);
  border-left: 2px solid var(--gold);
}
.episode-box .material-symbols-outlined { color: var(--gold); font-size: 34px; }
.episode-box p { margin: 4px 0 0; font-size: .88rem; }
.podcast-image img { width: 100%; height: 430px; object-fit: cover; opacity: .84; }

.contact { background: var(--surface); }
.contact-form { display: grid; gap: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
label span {
  display: block;
  margin-bottom: 9px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  color: var(--text-muted);
  font-weight: 700;
}
input, textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #cfc7bc;
  background: transparent;
  padding: 10px 0 14px;
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus { border-color: var(--text); }
textarea { resize: vertical; }
.honeypot { display: none; }
.form-status { min-height: 24px; text-align: center; margin: 0; }
.form-status.success { color: #2f6b35; }
.form-status.error { color: #93000a; }

.site-footer {
  padding: 56px 24px;
  text-align: center;
  background: #f4f2f1;
  border-top: 1px solid rgba(0, 0, 0, .08);
}
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; margin: 24px 0; }
.site-footer nav a { color: var(--text-muted); font-family: "Noto Serif", Georgia, serif; font-style: italic; }
.site-footer p { margin: 0; font-family: "Noto Serif", Georgia, serif; font-style: italic; font-size: .9rem; }

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

@media (max-width: 980px) {
  .site-header { padding-inline: 18px; }
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid rgba(0,0,0,.08);
    transform: translateY(-120%);
    transition: transform .28s;
    padding: 12px 24px 24px;
  }
  .primary-nav.is-open { transform: translateY(0); }
  .primary-nav a { padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,.07); }
  .header-cta { display: none; }
  .split-grid, .card-grid, .form-row { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .hero { min-height: auto; display: block; padding-top: var(--header-height); }
  .hero-media { position: relative; height: min(70vh, 560px); }
  .hero-overlay { display: none; }
  .hero-content { padding: 44px 0 64px; }
  h1 { font-size: clamp(3rem, 14vw, 4.2rem); }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 32px, var(--container)); }
  .brand { font-size: 1.25rem; }
  .section-heading { text-align: left; }
  .hero-media { height: 54vh; }
  .service-card { padding: 28px; }
  .podcast-image img { height: 280px; }
}

.section-action {
  margin-top: 36px;
  text-align: center;
}

.text-link {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.feed-empty {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, .08);
  padding: 24px;
}

.podcast-image iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 360px;
  border: 0;
  background: #000;
  box-shadow: var(--shadow);
}

@media (max-width: 560px) {
  .podcast-image iframe {
    min-height: 220px;
  }
}

/* Hero live update */
.site-header {
  background: rgba(0, 0, 0, .18);
  border-bottom-color: rgba(255, 255, 255, .08);
  box-shadow: none;
}
.site-header .brand,
.site-header .primary-nav a,
.site-header .nav-toggle {
  color: var(--white);
}
.site-header .primary-nav a:hover,
.site-header .primary-nav a.active {
  color: var(--gold);
  border-color: var(--gold);
}
.site-header .header-cta {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  border-bottom-color: rgba(0, 0, 0, .06);
}
.site-header.is-scrolled .brand,
.site-header.is-scrolled .primary-nav a,
.site-header.is-scrolled .nav-toggle {
  color: var(--text);
}
.site-header.is-scrolled .primary-nav a:hover,
.site-header.is-scrolled .primary-nav a.active {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}
.site-header.is-scrolled .header-cta {
  background: var(--text);
  border-color: var(--text);
  color: var(--gold);
}

.hero-live {
  color: var(--white);
  background: #030303;
}
.hero-live .hero-media img {
  filter: none;
  opacity: .94;
  object-position: 62% center;
}
.hero-live .hero-overlay {
  background:
    radial-gradient(circle at 68% 40%, rgba(197, 160, 89, .08) 0%, rgba(0, 0, 0, 0) 28%),
    linear-gradient(90deg, rgba(0, 0, 0, .95) 0%, rgba(0, 0, 0, .78) 34%, rgba(0, 0, 0, .24) 62%, rgba(0, 0, 0, .34) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .36) 0%, rgba(0, 0, 0, .2) 48%, rgba(0, 0, 0, .78) 100%);
}
.hero-live .hero-content {
  padding-top: 38px;
}
.hero-live .eyebrow {
  position: relative;
  display: inline-block;
  margin-bottom: 52px;
  color: var(--gold);
  letter-spacing: .32em;
}
.hero-live .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -24px;
  width: 170px;
  height: 1px;
  background: var(--gold);
}
.hero-live h1 {
  max-width: 760px;
  color: var(--white);
  text-transform: none;
  font-size: clamp(3.5rem, 6.2vw, 5.7rem);
  letter-spacing: -.055em;
  text-shadow: 0 18px 48px rgba(0, 0, 0, .55);
}
.hero-live .hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.08rem;
}
.hero-live .btn-primary {
  gap: 12px;
  background: linear-gradient(135deg, #d1a55c, #9a6b24);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
}
.hero-live .btn-outline {
  gap: 16px;
  border-color: var(--gold);
  color: var(--white);
  background: rgba(0, 0, 0, .2);
}
.hero-live .btn-outline:hover {
  background: rgba(197, 160, 89, .12);
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 10px;
  translate: -50% 0;
  color: rgba(255, 255, 255, .82);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-family: "Noto Serif", Georgia, serif;
  font-size: .72rem;
}
.scroll-line {
  width: 1px;
  height: 34px;
  background: var(--gold);
  position: relative;
}
.scroll-line::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: translateX(-50%) rotate(45deg);
}

@media (max-width: 980px) {
  .site-header .primary-nav {
    background: rgba(0, 0, 0, .96);
  }
  .site-header.is-scrolled .primary-nav {
    background: rgba(255,255,255,.98);
  }
  .hero-live {
    min-height: 100svh;
    display: grid;
    align-items: end;
    padding-top: var(--header-height);
  }
  .hero-live .hero-media {
    position: absolute;
    inset: 0;
    height: auto;
  }
  .hero-live .hero-media img {
    object-position: 58% center;
  }
  .hero-live .hero-overlay {
    display: block;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .22) 34%, rgba(0, 0, 0, .95) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .1));
  }
  .hero-live .hero-content {
    padding: 52vh 0 90px;
  }
  .hero-live h1 {
    font-size: clamp(3rem, 12vw, 4.4rem);
  }
  .hero-live .hero-actions {
    flex-direction: column;
  }
  .scroll-cue {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero-live .hero-content {
    padding-top: 48vh;
  }
  .hero-live .eyebrow {
    margin-bottom: 38px;
    font-size: .68rem;
  }
  .hero-live .eyebrow::after {
    bottom: -18px;
    width: 120px;
  }
  .hero-live h1 {
    font-size: clamp(2.7rem, 13vw, 3.55rem);
  }
}

/* Extra animations + GDPR checkbox */

:root {
  --ease-out-soft: cubic-bezier(.16, 1, .3, 1);
}

body {
  overflow-x: hidden;
}

.site-header {
  animation: headerDrop .85s var(--ease-out-soft) both;
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-live .hero-media img {
  animation: heroZoom 8s var(--ease-out-soft) both;
  will-change: transform;
}

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

.hero-live .eyebrow,
.hero-live h1,
.hero-live .hero-copy,
.hero-live .hero-actions {
  opacity: 0;
  transform: translateY(28px);
  animation: heroTextIn .95s var(--ease-out-soft) forwards;
}

.hero-live .eyebrow {
  animation-delay: .25s;
}

.hero-live h1 {
  animation-delay: .42s;
}

.hero-live .hero-copy {
  animation-delay: .58s;
}

.hero-live .hero-actions {
  animation-delay: .76s;
}

@keyframes heroTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn,
.header-cta,
.text-link,
.service-card a {
  position: relative;
  overflow: hidden;
}

.btn::after,
.header-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.32), transparent);
  transform: translateX(-120%);
  transition: transform .7s var(--ease-out-soft);
}

.btn:hover::after,
.header-cta:hover::after {
  transform: translateX(120%);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-3px) scale(1.015);
}

.btn:active,
.header-cta:active {
  transform: translateY(0) scale(.98);
}

.video-card,
.service-card,
.episode-box,
.podcast-image,
.framed-image {
  will-change: transform;
}

.video-card:hover,
.service-card:hover {
  transform: translateY(-10px) scale(1.015);
}

.video-card:hover .play-button {
  animation: pulsePlay 1.2s ease-in-out infinite;
}

@keyframes pulsePlay {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(197,160,89,0);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(197,160,89,.16);
  }
}

.play-button {
  transition: transform .35s var(--ease-out-soft), box-shadow .35s var(--ease-out-soft);
}

.service-card > .material-symbols-outlined {
  transition: transform .35s var(--ease-out-soft), color .35s;
}

.service-card:hover > .material-symbols-outlined {
  transform: translateY(-5px) rotate(-4deg) scale(1.08);
  color: var(--gold);
}

.framed-image img {
  transition: transform .9s var(--ease-out-soft), filter .9s var(--ease-out-soft);
}

.framed-image:hover img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.04);
}

.framed-image::before {
  transition: transform .7s var(--ease-out-soft);
}

.framed-image:hover::before {
  transform: translate(-8px, -8px);
}

.episode-box {
  transition: transform .35s var(--ease-out-soft), background .35s;
}

.episode-box:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,.1);
}

.podcast-image iframe,
.podcast-image img {
  transition: transform .8s var(--ease-out-soft), opacity .35s;
}

.podcast-image:hover iframe,
.podcast-image:hover img {
  transform: scale(1.025);
  opacity: 1;
}

.scroll-cue {
  animation: scrollCueFloat 1.8s ease-in-out infinite;
}

@keyframes scrollCueFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(36px) scale(.985);
  filter: blur(6px);
  transition:
    opacity .85s var(--ease-out-soft),
    transform .85s var(--ease-out-soft),
    filter .85s var(--ease-out-soft);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.video-grid .reveal:nth-child(2),
.service-grid .reveal:nth-child(2) {
  transition-delay: .12s;
}

.video-grid .reveal:nth-child(3),
.service-grid .reveal:nth-child(3) {
  transition-delay: .24s;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--gold-dark);
  flex: 0 0 auto;
}

.privacy-check span {
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--text-muted);
  font-weight: 500;
}

.privacy-check a {
  color: var(--gold-dark);
  border-bottom: 1px solid currentColor;
}

.contact-form.shake {
  animation: formShake .35s ease;
}

@keyframes formShake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-8px);
  }
  50% {
    transform: translateX(8px);
  }
  75% {
    transform: translateX(-4px);
  }
}

input,
textarea {
  transition: border-color .25s, background .25s, padding-left .25s;
}

input:focus,
textarea:focus {
  padding-left: 8px;
  background: rgba(197, 160, 89, .04);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.inline-policy-link,
.site-footer nav button {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--gold-dark);
  font: inherit;
  cursor: pointer;
  border-bottom: 1px solid currentColor;
}

.site-footer nav button {
  color: var(--text-muted);
  font-family: "Noto Serif", Georgia, serif;
  font-style: italic;
  border-bottom: 0;
}

.site-footer nav button:hover {
  color: var(--gold-dark);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .68);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  position: relative;
  width: min(100%, 760px);
  max-height: min(82vh, 760px);
  overflow: auto;
  background: var(--surface);
  color: var(--text);
  padding: 48px;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
  transform: translateY(24px) scale(.96);
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.modal-backdrop.is-open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0,0,0,.1);
  background: var(--surface-soft);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.modal-close:hover {
  background: var(--gold);
  color: var(--white);
}

.modal-content {
  margin-top: 24px;
}

.modal-content h3 {
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.modal-content p {
  margin-bottom: 16px;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .modal-dialog {
    padding: 36px 24px;
    max-height: 86vh;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: min(100% - 32px, 640px);
  background: rgba(17, 17, 17, 0.95);
  color: #fff;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  z-index: 9999;
  transition: all .5s ease;
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,.85);
}

.cookie-content a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-content .btn {
  min-width: 140px;
}