/* ============================================================
   Christy Kohnle Music — shared styles
   Palette:  navy #1F3A5C · gold #B8965A · dusty blue #6D8CB0
             cream #FAF7F1 · ink #24303D
   Type:     Display  — 'Playfair Display' italic (song-card voice)
             Body     — 'Cormorant Garamond' (warm, hymnal reading)
             Utility  — 'Jost' tracked caps (nav / labels / logo voice)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600;1,700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@400;500;600&display=swap');

:root {
  --navy: #1F3A5C;
  --navy-deep: #16293F;
  --gold: #B8965A;
  --gold-soft: #D9C6A3;
  --blue: #6D8CB0;
  --cream: #FAF7F1;
  --white: #FFFFFF;
  --ink: #24303D;
  --ink-soft: #556271;
  --border: rgba(31, 58, 92, 0.16);

  --display: 'Playfair Display', Georgia, serif;
  --body: 'Cormorant Garamond', Georgia, serif;
  --utility: 'Jost', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.wrap-wide {
  max-width: 1440px;
}

/* ---------- Utility type (nav, eyebrows, labels) ---------- */
.eyebrow {
  font-family: var(--utility);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  padding-bottom: 26px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
}

.brand-text-only {
  gap: 0;
}

.brand-name {
  font-family: var(--utility);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.3;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .brand-name { font-size: 14px; letter-spacing: 0.12em; }
}

nav.main-nav {
  display: flex;
  gap: 36px;
}

nav.main-nav a {
  font-family: var(--utility);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--gold);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--navy);
  cursor: pointer;
}

@media (max-width: 720px) {
  nav.main-nav {
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    z-index: 60;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
  }
  nav.main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0s;
  }
  .nav-toggle { display: block; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--utility);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 2px;
  border: 1px solid var(--navy);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-solid {
  background: var(--navy);
  color: var(--white);
}
.btn-solid:hover { background: var(--navy-deep); }

.btn-outline {
  background: transparent;
  color: var(--navy);
}

.download-btn {
  width: 340px;
  text-align: center;
  white-space: nowrap;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: #a3814a; border-color: #a3814a; }

.btn-gold-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-gold-outline:hover { background: var(--gold); color: var(--white); }

.btn-navy-gold-ring {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  font-weight: 600;
  outline: 1px solid var(--gold);
  outline-offset: 6px;
}
.btn-navy-gold-ring:hover { background: var(--navy-deep); border-color: var(--navy-deep); }

/* ---------- Hero (Home) ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 72px;
  color: var(--white);
  overflow: hidden;
  padding: 158px 0 72px;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,41,63,0.55) 0%, rgba(22,41,63,0.72) 55%, rgba(22,41,63,0.88) 100%);
}

.hero-headline {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-headline h1 {
  font-family: var(--display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(40px, 8vw, 58px);
  line-height: 1.15;
  letter-spacing: 0.015em;
  color: var(--white);
  margin: 0;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 625px;
  margin-left: auto;
  margin-right: 10px;
}

@media (max-width: 1600px) {
  .hero-content { max-width: 100%; margin-left: 0; margin-right: 0; }
}

.hero .eyebrow { color: var(--gold-soft); }

.hero p.lede {
  font-size: 21px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin: 14px 0 24px;
}

.hero-search {
  display: flex;
  gap: 0;
  margin-bottom: 26px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
  width: 610px;
  max-width: 100%;
}

.hero-search input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: var(--body);
  font-weight: 500;
  font-size: 18px;
  padding: 16px 18px;
}

.hero-search input::placeholder { color: var(--navy); opacity: 0.75; }
.hero-search input:focus { outline: none; }

.hero-search button {
  background: var(--gold);
  border: none;
  color: var(--white);
  padding: 0 22px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.hero-search button:hover { background: #a3814a; }

.hero .btn-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  width: 610px;
  max-width: 100%;
}

.hero .btn-row .btn {
  flex: 1 1 0;
  text-align: center;
  min-width: 160px;
}

.hero .btn-outline {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.hero .btn-outline:hover { background: var(--white); color: var(--navy); }

/* ---------- Section framing ---------- */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
section.on-navy { background: var(--navy); color: var(--white); }
section.on-cream-alt { background: #E9EBEC; }

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2,
.section-head h1 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 42px);
  color: var(--navy);
  margin: 10px 0 0;
}

section.on-navy .section-head h2,
section.on-navy .section-head h1 { color: var(--white); }

.section-head p {
  font-size: 20px;
  color: var(--ink-soft);
  margin-top: 16px;
}
section.on-navy .section-head p { color: rgba(255,255,255,0.78); }

.divider {
  width: 240px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* ---------- Three-up feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

@media (max-width: 820px) {
  .feature-grid { grid-template-columns: 1fr; }
}

.feature {
  text-align: center;
}

.feature .mark {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  box-sizing: border-box;
}

.mark-num {
  display: inline-block;
  transform: translateY(-2px);
}

/* Each digit's glyph shape sits slightly differently even at the same
   font-size, so they need small individual corrections rather than
   one blanket offset for all three. This moves only the digit itself —
   the circle border stays fixed in place. */
.feature:nth-child(1) .mark-num { transform: translate(0, -4px); }
.feature:nth-child(2) .mark-num { transform: translate(0, -4px); }
.feature:nth-child(3) .mark-num { transform: translate(0, -4px); }

.feature h3 {
  font-family: var(--utility);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 12px;
}

.feature p {
  color: var(--ink-soft);
  font-size: 18px;
}

/* ---------- Search / filter bar ---------- */
.song-toolbar {
  margin: 0 auto 40px;
}

.toolbar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
}

@media (max-width: 640px) {
  .toolbar-grid { grid-template-columns: 1fr; }
}

.song-search {
  position: relative;
}

.song-search input {
  width: 100%;
  font-family: var(--utility);
  font-size: 14px;
  letter-spacing: 0.06em;
  padding: 13px 16px 13px 42px;
  border: 1px solid var(--navy);
  background: var(--white);
}

.song-search input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.song-search::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  border: 2px solid var(--ink-soft);
  border-radius: 50%;
}

.song-search::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  width: 8px;
  height: 2px;
  background: var(--ink-soft);
  transform: translateY(6px) rotate(45deg);
  transform-origin: left center;
}

.sort-select {
  font-family: var(--utility);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 13px 42px 13px 14px;
  border: 1px solid var(--navy);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='6' viewBox='0 0 9 6'%3E%3Cpath d='M1 1l3.5 3.5L8 1' stroke='%231F3A5C' stroke-width='1' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 16px center;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.facet-select {
  font-family: var(--utility);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 13px 42px 13px 14px;
  border: 1px solid var(--navy);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='6' viewBox='0 0 9 6'%3E%3Cpath d='M1 1l3.5 3.5L8 1' stroke='%231F3A5C' stroke-width='1' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 16px center;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.results-meta {
  font-family: var(--utility);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-align: center;
}

.no-results {
  display: none;
  text-align: center;
  padding: 60px 20px;
  font-family: var(--body);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
}
.no-results.show { display: block; }

/* ---------- Song title cards ---------- */
.song-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

@media (max-width: 900px) {
  .song-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .song-grid { grid-template-columns: minmax(0, 1fr); }
}

.song-card {
  border: 1px solid var(--navy);
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.song-card .art {
  border-bottom: 1px solid #D7DCE2;
  overflow: hidden;
}
.song-card .art img { width: 100%; height: 100%; object-fit: cover; }

.song-card .art.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 48px;
  min-height: 146px;
  text-align: center;
  background: var(--white);
}

.song-card .art.placeholder .ph-title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  line-height: 1.25;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 30px;
  color: var(--blue);
}

/* Song title becomes a link to that song's own page, but should read
   exactly as it always has—not like a typical gold site link. */
.song-card .art.placeholder a.ph-title-link,
.song-card .art.placeholder a.ph-title-link:hover,
.song-card .art.placeholder a.ph-title-link:visited {
  color: var(--blue);
  text-decoration: none;
}

.song-card .body {
  padding: 20px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.song-card .credit {
  font-family: var(--body);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
}

.song-card .credit b { font-style: normal; color: var(--ink); }

.song-card .actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 14px;
}

.song-card .watch-link {
  letter-spacing: 0.16em;
  align-self: flex-start;
}

.download-label {
  font-family: var(--utility);
  font-size: 13px;
  font-weight: 450;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 8px 0 8px;
}

.format-note {
  font-family: var(--body);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  margin: -4px 0 0;
  line-height: 1.4;
}

.format-note.hidden { display: none; }

.download-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-toggle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: none;
  color: var(--navy);
  font-family: var(--body);
  font-style: italic;
  font-size: 11px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.info-toggle:hover,
.info-toggle.active {
  background: rgba(184, 150, 90, 0.7);
  border-color: transparent;
  color: var(--white);
  font-weight: bold;
}

.song-card .downloads {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.song-card .actions a {
  font-family: var(--utility);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  align-self: flex-start;
}

.song-card .actions a:hover { color: var(--gold); }

.song-card .share-song {
  margin-top: 2px;
  padding-top: 18px;
  border-top: 1px solid #E5E2DB;
}

.song-card .share-song a {
  font-family: var(--utility);
  font-size: 13px;
  font-weight: 450;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
}

.song-card .share-song a:hover { color: var(--gold); }

/* ---------- Song Story / Song Casting tabs ---------- */
.story-casting {
  margin-top: 18px;
  padding-top: 24px;
  border-top: 1px solid #E5E2DB;
}

.story-casting .tab-buttons {
  display: flex;
  gap: 22px;
  margin-bottom: 6px;
}

.story-casting .tab-btn {
  font-family: var(--utility);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0 0 6px;
  cursor: pointer;
}

.story-casting .tab-btn::after {
  content: "+";
  margin-left: 5px;
  font-family: var(--body);
  font-size: 14px;
}

.story-casting .tab-btn.active::after {
  content: "-";
}

.story-casting .tab-btn.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.story-casting .tab-panel {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.story-casting .tab-panel.hidden { display: none; }

.story-casting .tab-close {
  display: block;
  margin-top: 12px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.story-casting .tab-close:hover { color: var(--navy); }

/* ---------- Download gate (modal) ---------- */
.gate-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(22,41,63,0.55);
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.gate-overlay.open { display: flex; }

.gate {
  position: relative;
  background: var(--white);
  border: 1px solid var(--navy);
  max-width: 560px;
  width: 100%;
  padding: 46px 44px;
  text-align: center;
  max-height: 90vh;
  overflow-y: auto;
  box-sizing: border-box;
}

.gate-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 4px 8px;
}
.gate-close:hover { color: var(--navy); }

.gate .mark-lock {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
}

.gate .mark-lock span {
  display: inline-block;
  transform: translateY(-1px);
}

.gate h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: var(--navy);
  margin: 0 0 10px;
}

.gate p { color: var(--ink-soft); font-size: 18px; margin: 0 0 26px; }

.gate .subscribe-note {
  font-family: var(--body);
  font-style: italic;
  font-size: 15px;
  color: rgba(85, 98, 113, 0.72);
  margin: -10px 0 26px;
}

.gate form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.gate form button[type="submit"] {
  margin-top: 10px;
}

.gate input[type="email"],
.gate input[type="text"] {
  font-family: var(--body);
  font-size: 17px;
  padding: 13px 16px;
  border: 1px solid var(--border);
  background: var(--cream);
  flex: 1 1 240px;
  min-width: 0;
}

.gate input[type="email"]:focus,
.gate input[type="text"]:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.gate .fineprint {
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink-soft);
  margin-top: 16px;
}

.gate .fineprint a { color: var(--navy); text-decoration: underline; }

/* ---------- Video embed ---------- */
.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--navy-deep);
  overflow: hidden;
  border: 1px solid var(--navy);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- About page ---------- */
.about-hero {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 800px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-hero .portrait-frame {
    max-width: 350px;
    margin: 0 auto;
  }
}

.portrait-frame {
  border: 1px solid var(--navy);
  padding: 14px;
  background: var(--white);
}

.portrait-frame .inner {
  background: var(--navy);
  overflow: hidden;
}

.portrait-frame .inner img {
  width: 100%;
  height: auto;
  display: block;
}

.about-hero h1 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 52px);
  color: var(--navy);
  margin: 12px 0 20px;
}

.about-hero p { font-size: 20px; color: var(--ink-soft); }

.pull-quote {
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--navy);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  border-left: none;
}

.timeline {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.timeline .row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
}

@media (max-width: 620px) {
  .timeline .row { grid-template-columns: 1fr; gap: 6px; }
}

.timeline .tag {
  font-family: var(--utility);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 4px;
}

.timeline .txt h4 {
  font-family: var(--display);
  font-style: italic;
  font-size: 21px;
  color: var(--navy);
  margin: 0 0 6px;
}
.timeline .txt p { color: var(--ink-soft); margin: 0; font-size: 18px; }

.fill-me {
  font-style: italic;
  color: var(--gold);
  border-bottom: 1px dashed var(--gold);
  padding-bottom: 1px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
  padding: 110px 0;
}

.cta-band .eyebrow {
  font-size: 16px;
  letter-spacing: 0.25em;
}

.cta-band h2 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 52px);
  margin: 12px 0 30px;
}

/* ---------- Footer ---------- */
/* ---------- Cookie consent banner (prototype) ---------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px rgba(31, 58, 92, 0.12);
  padding: 18px 56px 18px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-close {
  position: absolute;
  top: 10px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: rgba(85, 98, 113, 0.55);
  cursor: pointer;
  padding: 4px 8px;
}
.cookie-banner-close:hover { color: var(--navy); }

.cookie-banner p {
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 620px;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner .btn {
  padding: 10px 22px;
  font-size: 12px;
}

footer {
  background: #0B1622;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
}

footer .footer-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

footer .brand-name {
  font-size: 16px;
  color: rgba(217, 198, 163, 0.65);
}

footer .footer-links-row {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1120px;
}

footer .footer-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

footer .foot-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

footer .foot-links a {
  font-family: var(--utility);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
}
footer .foot-links a:hover { color: var(--gold-soft); }

footer .copyright {
  font-family: var(--utility);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
}

/* ---------- Misc ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
