:root {
  /* ── White marble palette ──────────────────────────── */
  --black:       #0f0d0a;
  --deep-green:  #f2efe7;
  --green:       #e8e4da;
  --gold:        #c9a227;
  --gold-light:  #a87e10;
  --gold-bright: #e8c45a;
  --off-white:   #faf8f4;
  --paper:       #f4f1e9;
  --ink:         #0f0d0a;
  --muted:       #6b6358;
  --dark-line:   rgba(201, 162, 39, .22);
  --paper-line:  rgba(15, 13, 10, .1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--off-white);
  color: var(--ink);
  font-family: Raleway, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

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

.model-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--dark-line);
  background: rgba(250, 248, 244, .96);
  backdrop-filter: blur(20px);
  transition: box-shadow 0.3s ease;
}

.model-header.is-scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.52), 0 1px 0 rgba(201, 162, 39, 0.12);
}

.model-nav {
  width: min(1240px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.model-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-family: Cinzel, Georgia, serif;
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}

.model-brand img {
  width: 42px;
  height: 42px;
  animation: mark-spin 15s linear infinite;
}

.model-brand small {
  display: block;
  color: rgba(15, 13, 10, .58);
  font-family: Raleway, Arial, sans-serif;
  font-size: .62rem;
  font-weight: 600;
}

.model-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.model-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid transparent;
  color: rgba(15, 13, 10, .68);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease;
}

.model-links a:hover,
.model-links a:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  outline: none;
}

.model-links .hub-link {
  margin-left: 10px;
  border: 1px solid var(--dark-line);
  border-color: rgba(201, 162, 39, .3);
  color: rgba(15, 13, 10, .5);
}

.model-menu {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dark-line);
  background: transparent;
  cursor: pointer;
}

.model-menu span {
  position: absolute;
  width: 19px;
  height: 1px;
  background: var(--gold);
  transition: transform .22s ease, opacity .22s ease;
}

.model-menu span:first-child {
  transform: translateY(-6px);
}

.model-menu span:last-child {
  transform: translateY(6px);
}

.model-nav.nav-open .model-menu span:first-child {
  transform: rotate(45deg);
}

.model-nav.nav-open .model-menu span:nth-child(2) {
  opacity: 0;
}

.model-nav.nav-open .model-menu span:last-child {
  transform: rotate(-45deg);
}

.model-hero {
  position: relative;
  min-height: calc(100svh - 122px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.model-hero > img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.model-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 10, 8, .92), rgba(7, 10, 8, .42) 52%, rgba(7, 10, 8, .18)),
    linear-gradient(180deg, transparent 35%, rgba(7, 10, 8, .9));
}

.model-hero-frame {
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(201, 162, 39, .28);
  pointer-events: none;
}

.model-hero-frame::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.model-hero-copy {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 100px 0 78px;
}

.model-kicker {
  margin: 0;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-weight: 600;
  text-transform: uppercase;
}

h1 {
  margin-top: 14px;
  color: var(--off-white);
  font-size: 5.8rem;
  line-height: .9;
  text-shadow: 0 12px 40px rgba(0, 0, 0, .54);
}

.model-hero-copy > p:not(.model-kicker) {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(240, 234, 216, .76);
  font-size: 1.05rem;
}

.model-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 0 20px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease;
}

.model-button:hover,
.model-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(201, 162, 39, .2);
  outline: none;
}

.model-intro {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px max(20px, calc((100% - 1240px) / 2));
  border-bottom: 1px solid var(--dark-line);
  background: var(--paper);
}

.model-intro p,
.model-intro span {
  margin: 0;
  color: rgba(15, 13, 10, .68);
  font-size: .86rem;
}

.model-intro strong {
  color: var(--gold);
  font-family: Cinzel, Georgia, serif;
}

.collections-section {
  padding: 86px max(20px, calc((100% - 1240px) / 2)) 92px;
  background:
    linear-gradient(180deg, rgba(244, 241, 233, .97), rgba(232, 228, 218, .95)),
    url("assets/marble-white.jpg") center / cover no-repeat;
}

.model-section-head {
  max-width: 720px;
  margin-bottom: 38px;
}

h2 {
  margin-top: 8px;
  font-size: 3.4rem;
  line-height: 1;
}

.model-section-head > p:last-child {
  margin: 18px 0 0;
  color: rgba(15, 13, 10, .58);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.collection-card {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--dark-line);
  background: var(--green);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, rgba(15, 13, 10, .92));
}

.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .65;
  transition: transform .45s ease, opacity .3s ease;
}

.collection-card-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 22px;
}

.collection-card span {
  color: var(--gold);
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.collection-card strong {
  display: block;
  margin-top: 6px;
  font-family: Cinzel, Georgia, serif;
  font-size: .98rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.collection-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .7rem;
}

.collection-card:hover,
.collection-card:focus-visible,
.collection-card.is-active {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 39, .52);
  box-shadow: 0 26px 64px rgba(0, 0, 0, .42);
  outline: none;
}

.collection-card:hover img,
.collection-card:focus-visible img,
.collection-card.is-active img {
  transform: scale(1.04);
  opacity: .82;
}

.portfolio-section {
  padding: 86px max(20px, calc((100% - 1240px) / 2)) 100px;
  background: var(--paper);
  color: var(--ink);
}

.portfolio-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 30px;
  align-items: end;
  margin-bottom: 38px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--paper-line);
}

.portfolio-heading h2 {
  color: var(--ink);
}

.portfolio-meta {
  display: flex;
  gap: 8px;
  padding-bottom: 4px;
}

.portfolio-meta span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(122, 98, 14, .28);
  color: rgba(15, 13, 10, .46);
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-heading > p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(15, 13, 10, .62);
  font-size: .9rem;
}

.photo-grid {
  columns: 4 250px;
  column-gap: 12px;
}

.photo-item {
  width: 100%;
  display: block;
  margin: 0 0 12px;
  padding: 0;
  break-inside: avoid;
  border: 0;
  background: #d7d4cc;
  cursor: zoom-in;
  overflow: hidden;
}

.photo-item img {
  width: 100%;
  height: auto;
  transition: transform .38s ease, filter .3s ease;
}

.photo-item:hover img,
.photo-item:focus-visible img {
  transform: scale(1.018);
  filter: contrast(1.03);
}

.photo-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.profile-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 92px max(20px, calc((100% - 1240px) / 2));
  border-top: 1px solid var(--dark-line);
  background:
    linear-gradient(135deg, rgba(244, 241, 233, .98), rgba(232, 228, 218, .96)),
    url("assets/marble-white.jpg") center / cover no-repeat;
}

.profile-copy h2 {
  margin-top: 8px;
}

.profile-copy > p:not(.model-kicker) {
  max-width: 600px;
  margin: 20px 0 0;
  color: rgba(15, 13, 10, .68);
}

.profile-details {
  border-top: 1px solid var(--dark-line);
}

.profile-details div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--dark-line);
}

.profile-details span {
  color: var(--gold);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.profile-details strong {
  font-size: .9rem;
  font-weight: 500;
}

.model-footer {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px max(20px, calc((100% - 1240px) / 2));
  border-top: 1px solid var(--dark-line);
  background: var(--paper);
}

.model-footer > div {
  display: flex;
  gap: 22px;
}

.model-footer > div a {
  color: rgba(15, 13, 10, .52);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.model-footer > div a:hover,
.model-footer > div a:focus-visible {
  color: var(--gold);
  outline: none;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  align-items: center;
  gap: 16px;
  padding: 34px;
  background: rgba(3, 5, 4, .96);
  backdrop-filter: blur(18px);
}

.lightbox figure {
  height: calc(100svh - 68px);
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center;
  gap: 12px;
}

.lightbox figure img {
  max-width: 100%;
  max-height: calc(100svh - 110px);
  align-self: center;
  object-fit: contain;
}

.lightbox figcaption {
  color: rgba(240, 234, 216, .56);
  font-size: .7rem;
  text-align: center;
}

.lightbox button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--dark-line);
  background: rgba(13, 26, 16, .62);
  color: var(--gold-light);
  cursor: pointer;
  font-size: 1.35rem;
}

.lightbox button:hover,
.lightbox button:focus-visible {
  border-color: var(--gold);
  outline: none;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

@keyframes mark-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 1040px) {
  .collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .profile-section {
    gap: 36px;
  }
}

@media (max-width: 780px) {
  .model-nav {
    width: min(100% - 28px, 1240px);
    min-height: 66px;
  }

  .model-menu {
    display: flex;
  }

  .model-links {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 14px 18px;
    border-bottom: 1px solid var(--dark-line);
    background: rgba(250, 248, 244, .98);
  }

  .model-nav.nav-open .model-links {
    display: grid;
  }

  .model-links a {
    min-height: 46px;
    padding: 0 12px;
    border-bottom: 1px solid var(--paper-line);
  }

  .model-links .hub-link {
    margin: 8px 0 0;
  }

  .model-hero {
    min-height: calc(100svh - 108px);
  }

  .model-hero > img {
    object-position: 48% center;
  }

  .model-hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 10, 8, .18), rgba(7, 10, 8, .94) 78%),
      linear-gradient(90deg, rgba(7, 10, 8, .6), transparent);
  }

  .model-hero-frame {
    inset: 18px;
  }

  .model-hero-copy {
    width: min(100% - 32px, 1240px);
    padding: 120px 0 48px;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .model-intro {
    display: grid;
    padding: 22px 16px;
  }

  .collections-section,
  .portfolio-section,
  .profile-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-card {
    min-height: 280px;
  }

  .portfolio-heading {
    grid-template-columns: 1fr;
  }

  .portfolio-meta {
    padding: 0;
  }

  .photo-grid {
    columns: 2 140px;
    column-gap: 8px;
  }

  .photo-item {
    margin-bottom: 8px;
  }

  .profile-section {
    grid-template-columns: 1fr;
  }

  .profile-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .model-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
  }

  .model-footer > div {
    flex-wrap: wrap;
  }

  .lightbox {
    grid-template-columns: 1fr;
    padding: 58px 14px 14px;
  }

  .lightbox-prev,
  .lightbox-next {
    position: absolute;
    bottom: 18px;
  }

  .lightbox-prev {
    left: 18px;
  }

  .lightbox-next {
    right: 18px;
  }

  .lightbox figure {
    height: calc(100svh - 96px);
    padding-bottom: 66px;
  }
}

/* ── Floating Mobile Fab Nav ───────────────────────────────── */
.mod-fab-nav {
  display: none;
  transition: opacity 0.3s ease;
}

.mod-fab-nav.nav-is-scrolling {
  opacity: 0.12;
  pointer-events: none;
}

body.no-scroll .mod-fab-nav {
  display: none;
}

@media (max-width: 780px) {
  .model-menu {
    display: none;
  }

  .mod-fab-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 800;
    gap: 2px;
    background: rgba(8, 8, 6, 0.88);
    border: 1px solid rgba(201, 162, 39, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 10px 6px;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.44);
  }
  .mod-fab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 50px;
    min-height: 50px;
    padding: 8px 4px;
    border-radius: 9px;
    color: rgba(240, 234, 216, 0.55);
    text-decoration: none;
    font-family: Cinzel, Georgia, serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .mod-fab-item svg {
    width: 18px; height: 18px;
    stroke: currentColor; fill: none;
    stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
  }
  .mod-fab-item:hover, .mod-fab-item:focus-visible {
    background: rgba(201, 162, 39, 0.10);
    color: var(--gold-light); outline: none;
  }
  .mod-fab-item--cta {
    color: var(--gold);
    border-top: 1px solid rgba(201, 162, 39, 0.24);
    margin-top: 6px; padding-top: 12px;
  }
  .mod-fab-item--cta:hover, .mod-fab-item--cta:focus-visible {
    background: rgba(201, 162, 39, 0.16);
    color: var(--gold-light);
  }
}

/* ── WhatsApp floating button ──────────────────────────────── */
.wa-btn {
  position: fixed; right: 24px; bottom: 28px; z-index: 790;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--deep-green, #0d1a10);
  border: 1px solid rgba(201, 162, 39, 0.36);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease,
              box-shadow 0.22s ease, opacity 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.42);
}
.wa-btn:hover {
  transform: scale(1.08);
  border-color: rgba(201, 162, 39, 0.7);
  box-shadow: 0 6px 28px rgba(201, 162, 39, 0.22), 0 4px 20px rgba(0, 0, 0, 0.42);
}
.wa-btn svg { width: 26px; height: 26px; fill: var(--gold, #c9a227); }
.wa-btn:hover svg { fill: var(--gold-light, #e8c45a); }
.wa-btn.nav-is-scrolling { opacity: 0.12; pointer-events: none; }

@media (max-width: 780px) {
  .wa-btn { right: auto; left: 16px; bottom: 24px; }
}

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

  .collection-card {
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Timed Sitewide Gold Shimmer */
#site-shimmer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}
.shimmer-streak {
  position: absolute;
  top: -20%;
  left: 0;
  width: 80px;
  height: 160%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.07) 35%,
    rgba(201, 162, 39, 0.22) 50%,
    rgba(255, 255, 255, 0.07) 65%,
    transparent 100%
  );
  transform: translateX(-150vw) rotate(-28deg);
  mix-blend-mode: overlay;
  will-change: transform;
}
.shimmer-streak.is-playing {
  animation: shimmer-sweep 1.4s ease-in-out forwards;
}
@keyframes shimmer-sweep {
  from { transform: translateX(-30vw)  rotate(-28deg); }
  to   { transform: translateX(130vw)  rotate(-28deg); }
}

/* ── Booking inquiry form ──────────────────────────────────── */
.mod-booking-form-wrap { margin-top: 28px; }

.mod-booking-form {
  display: grid; gap: 13px;
}

.mod-booking-form label {
  display: flex; flex-direction: column; gap: 5px;
  font-family: Cinzel, Georgia, serif; font-size: 9px;
  font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(201, 162, 39, 0.68);
}

.mod-booking-form input,
.mod-booking-form select,
.mod-booking-form textarea {
  background: rgba(7, 10, 8, 0.5);
  border: 1px solid var(--dark-line, rgba(201, 162, 39, 0.2));
  color: var(--off-white, #f0ead8);
  font-family: Raleway, Arial, sans-serif; font-size: 14px; font-weight: 300;
  padding: 11px 14px; border-radius: 2px; outline: none;
  transition: border-color 0.2s ease; width: 100%;
}

.mod-booking-form input:focus,
.mod-booking-form select:focus,
.mod-booking-form textarea:focus {
  border-color: rgba(201, 162, 39, 0.5);
}

.mod-booking-form select option { background: #070a08; }
.mod-booking-form textarea { min-height: 100px; resize: vertical; }

.mod-form-result {
  padding: 12px 16px; border-radius: 2px; font-size: 13px;
  line-height: 1.6; display: none;
}
.mod-form-result.is-visible { display: block; }
.mod-form-result--success {
  background: rgba(7, 14, 8, 0.7);
  border: 1px solid rgba(201, 162, 39, 0.36);
  color: var(--gold-light, #e8c45a);
}
.mod-form-result--error {
  background: rgba(60, 10, 10, 0.5);
  border: 1px solid rgba(220, 80, 80, 0.3);
  color: rgba(255, 160, 160, 0.9);
}

/* ─── Cookie Consent Banner ──────────────────────────────── */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8500;
  background: rgba(6, 10, 7, 0.97);
  border-top: 1px solid rgba(201, 162, 39, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
  animation: cookie-attention 3s ease-in-out 0.6s infinite;
}

@media (max-width: 780px) {
  .cookie-banner {
    bottom: auto;
    top: 66px; /* matches modeling mobile nav min-height */
    transform: translateY(-100%);
    border-top: none;
    border-bottom: 1px solid rgba(201, 162, 39, 0.28);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.48);
  }

  .cookie-banner.is-visible {
    transform: translateY(0);
  }
}

.cookie-banner-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text { flex: 1; min-width: 220px; }

.cookie-banner-title {
  font-family: Cinzel, Georgia, serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 5px;
}

.cookie-banner-body {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(240, 234, 216, 0.65);
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: Cinzel, Georgia, serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-btn--accept {
  background: var(--gold);
  color: #070a08;
  border-color: var(--gold);
}

.cookie-btn--accept:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.cookie-btn--essential {
  background: transparent;
  color: rgba(240, 234, 216, 0.68);
  border-color: rgba(201, 162, 39, 0.28);
}

.cookie-btn--essential:hover {
  background: rgba(201, 162, 39, 0.08);
  color: var(--gold-light);
  border-color: rgba(201, 162, 39, 0.52);
}

.cookie-privacy-link {
  font-size: 11px;
  color: rgba(240, 234, 216, 0.38);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.cookie-privacy-link:hover { color: rgba(240, 234, 216, 0.7); }

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
  }
}

@keyframes cookie-attention {
  0%, 100% {
    border-color: rgba(201, 162, 39, 0.28);
    box-shadow: none;
  }
  50% {
    border-color: rgba(201, 162, 39, 0.68);
    box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.1),
                0 0 32px rgba(201, 162, 39, 0.12);
  }
}
